microsoft.public.vb.general.discussion
  Home FAQ Contact Sign in
microsoft.public.vb.general.discussion only
 
Advanced search
June 2010
mo tu we th fr sa su w
 123456 22
78910111213 23
14151617181920 24
21222324252627 25
282930     26
2010
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2010 2008 2007 2006
total
microsoft ... discussion Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  macro for post editing: can't close loop         


Author: rubendelafuente
Date: Jun 8, 2010 11:11

I am trying to write a macro to post-process machine translated files.
One of the issues with translation from EN to ES is that "please"+
command normally is translated without please, just the command. It
would be a tedious task for post editors to delete every occurrence of
"please" translation and the upper case the next sentence.
no comments
  macro for post editing: can't close loop         


Author: rubendelafuente
Date: Jun 8, 2010 11:11

I am trying to write a macro to post-process machine translated files.
One of the issues with translation from EN to ES is that "please"+
command normally is translated without please, just the command. It
would be a tedious task for post editors to delete every occurrence of
"please" translation and the upper case the next sentence.
2 Comments
  Re: Eternal September Rocks!         


Author:
Date: Jun 8, 2010 10:23

"Karl E. Peterson" exmvps.org> skrev i meddelelsen
news:%%23phdWsmBLHA.5464@TK2MSFTNGP05.phx.gbl...
> Tony Toews [MVP] wrote:
>> "Henning" coldmail.com> wrote:
>>
>>> Ha, I'll hold you responsible for an hour of lost work by them links;)
>>> Just couldn't stop reading...
>>
>> Hehehehe Well said.
>
> Well, Microsoft made my point for me! I've been saying all along that
> this entire move is due to their desire for *TOTAL CONTROL* over the
> message. I crawled and inched my way right up to the edge, before pushing
> them over. Turns out that when I mentioned I had been kicked out of
> the MVP program by an Executive of higher rank than had ever kicked anyone
> else out of the MVP program, they *locked* the thread!
>
> It was this post, that sealed the deal:
>
> http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/thread/ba2234f8-cc2f-41c8...#8f1ad7a7-be6f-4c73-b46b-f3c3f5a201ef ...
Show full article (3.54Kb)
no comments
  Re: Terminating an endless loop         


Author: Dee Earley
Date: Jun 8, 2010 10:16

On 07/06/2010 17:37, Bob Butler wrote:
>
> "Dee Earley" icode.co.uk> wrote in message
> news:O9f7dFlBLHA.4584@TK2MSFTNGP06.phx.gbl...
>> On 07/06/2010 14:43, NadCixelsyd wrote:
>>> I've been hitting break to no avail. It never occurred to me to hit
>>> ctrl-break. Merci beaucoup and a hat-tip for the education.
>>
>> Also note that the Stop button does the same, but requires a DoEvents
>> in the loop to process the click event.
>
> No, the Pause button is the same as ctrl-break. The Stop button is the
> same as "END" and is generally best avoided.

Oh yes, oops (it was a busy day :)
I'm aware of the evil of End.

--
Dee Earley (dee.earley@icode.co.uk)
i-Catcher Development Team

iCode Systems
Show full article (0.80Kb)
no comments
  Re: Moving from This Newsgroup         


Author: Abhishek
Date: Jun 8, 2010 05:35

becuase MS is shuting down this NG. :(
no comments
  Bug or feature?         


Author:
Date: Jun 8, 2010 03:18

I discovered a hell of a thing:

I have this is a standard module:

Public Property Get LoadPercent() As Long

mlLoadPercent = mlLoadPercent + 6

LoadPercent = mlLoadPercent

End Property

mlLoadPercent is a module level variable.

When I call LoadPercent from anywhere within my code, break the code on the
line that calls LoadPercent and mouseover the LoadPercent, which displays
it's current value, the value displayed in the tooltip incrases with each
mouseover. How's that for messed up!

BEGIN:VCARD
VERSION:2.1
N:;kevin@tpasoft.com
FN:kevin@tpasoft.com
EMAIL;PREF;INTERNET:kevin@tpasoft.com
REV:20100608T011817Z
END:VCARD
1 Comment
  Re: Eternal September Rocks!         


Author: Mayayana
Date: Jun 7, 2010 22:53

--
|
| But eternal september doesn't appear to be one of the servers mirroring
| mpvbgd, right?
| I dont' see it in their list of ngs

You have to sign up, open an account, then
configure your newsreader to connect to their
server. Once you've set up an ES account in
your newsreader you should be able to download
the list of newsgroups. As far as I can see
that includes all of the MS groups plus alt,
comp, etc.
2 Comments
  Selber Button erstellen         


Author: Sascha Peter
Date: Jun 7, 2010 22:48

DE

Hallo,

ich benötige dringend hilfe bei Visual Basic 2008.
Ich möchte mir nämlich selber einen Button mit einer Grafik erstellen
aber ich weiß nicht ob und wenn ja wie das bei VB geht. Ich habe es auch
schon mit dem Program "ButtonStudio.NET" versucht aber das hängt sich
bei mir immer auf. Ich höffe jemand kann mir helfe ich hätte nämlich
gerne ein bisschen Animation in meinen Buttons.

Danke für Antworten.
5 Comments
  Re: vba line input not recognizing end of line         


Author: David Kaye
Date: Jun 7, 2010 22:01

"Henning" coldmail.com> wrote:
>Just read here or there that someone deliberately saved files in that
>format. For me it's a big why?? to save some CR's? Or is it to ease for
>mac'ers to read the files?

The CRLF format is peculiar to DOS and Windows. In the rest of the world it's
just CR.
5 Comments
  Re: vba line input not recognizing end of line         


Author: Jim Mack
Date: Jun 7, 2010 21:44

Beancounter wrote:
> I had this problem, and saw others had it as well; I just wanted to
> post my solution which turned out to be simple (in code).
>
> For years I've been parsing a csv download file using the standard
> vba line input function. Well, the download file is still a csv,
> but longer has CRLF, just LF. As a result, the line input
> function now reads the entire file at once, instead of line by
> line. To solve it, I just used the replace function:
>
> sub mproFileLineInput.
>
> Open "c:\NeededFile.csv" For Input As #1 'Open download file
>
> Line Input #1, txtline 'read line input, which reads entire file
> because no CR Chr(13), just LF Chr(10)
> NewText=Replace(txtline, Chr(10), vbCrLf) 'Find all Chr(10) LF and
> replace with CRLR
>
> Close #1 ...
Show full article (2.08Kb)
no comments
1 2 3 4 5 6 7 8 9