Hello Zoomkat The website is geocaching.com and the listbox does not become apparent until veiwnig the maps. Thanks again Nomps To:...
38133
rod_bird001
May 3, 2009 8:15 am
... You need to delete previously flushed segments to stop Liberty redrawing them all on restore. The only way to "import" the bitmap into Liberty's drawing...
38130
fritz_oppliger
May 3, 2009 12:01 am
It seems like if I DRAW in mDC the "picture" exists only as a stack of commands and not a bitmap. Simply BitBltting the mDC into gDC doesn't show anything. How...
38129
fritz_oppliger
May 2, 2009 11:27 pm
I am making a graph in memory using memory device context w/ bitmap compatible with graphbox. I draw on it using various gdi32 calls "SelectObject" - pen ...
38128
rod_bird001
May 2, 2009 9:43 pm
Closing down games seems a bit, "hackerish" if that is a word. I suspect few readers will want to help. Your own intentions may be quite above board but few...
38127
alexbozinovic
May 2, 2009 7:21 pm
... OH MYYYYY..... There is another problem after i type this: [code] nomainwin run "explorer.exe "; chr$(34); "C:\Documents and Settings\Alex and...
38126
alexbozinovic
May 2, 2009 7:04 pm
... I want to close Counter Strike 1.6 (game). Now, i found a way. I found something about pskill on internet, and now, I created shortcut, on it`s location i...
38125
rod_bird001
May 2, 2009 6:02 pm
I think that you might get better help if you explained more clearly what it is you are trying to do. What exact application are you trying to close and why?...
38124
alexbozinovic
May 2, 2009 5:24 pm
Where can I find everything about Liberty Basic? I`ve found something, but i must pay for it. Is there some free e book about liberty basic? (expecially about...
38123
alexbozinovic
May 2, 2009 4:19 pm
... I think that I found something interesting. Some code for cmd, and that will quit application. Now, there is one problem instead of this: How to run...
38122
alexbozinovic
May 2, 2009 3:22 pm
... Come on, I am looking for solution more then one month. Please, help me....
38121
Stefan Pendl
pendl2megabit
May 2, 2009 12:43 pm
... You are correct in your assumptions, so I am just getting into detail with the following. 1) handles should always be unique 2) there is no sub-extension ...
38120
Marc Rossi
mrossi8888
May 2, 2009 11:37 am
Tina I think this will work but again I used my junk1 dir. Don't forget to use the dir on your computer. Marc open "c:\junk1\names.txt" for output as #1 ...
38119
Marc Rossi
mrossi8888
May 2, 2009 10:44 am
Tina, Don't forget to use c:\temp. I used c:\junk1 for the directory just because it was already made on my computer and was rushing to work. Marc ... From:...
38118
zoomkat
May 1, 2009 9:42 pm
... Perhaps you can provide a link to the listbox page you are referencing, or another one that contains the type of list box that you are interested in. Need...
38117
David Speck
dspeck13021
May 1, 2009 8:55 pm
Norm, If the data is not on the HD, then it is in a structure somewhere in RAM memory. It may be accessible only to the dynamic web page Java code that...
38116
Norman Eskriett
grampsnomps
May 1, 2009 8:29 pm
Hello again Thanks for the replies to this subject. Sorry for not getting back earlier but Yahoo does not seem to accept my "reply". After fully scrolling...
38115
Bill Lopez
maxxhuggs2006
May 1, 2009 7:00 pm
Carl's logic was even better... it doesn't behave like a IF/THEN GOTO. Instead it does not accept numeric values less than 1 or greater than 20. CHR$(10) is a...
38114
tinantaz2
May 1, 2009 6:00 pm
Write a program that asks the user for two inputs, their first name and last name. Write the first name and last name to a text file, on the same line,...
38113
tinantaz2
May 1, 2009 5:37 pm
Thanks, works perfect (how fun). 10 was just an example. I think I need to do any number >1. Also, what is nr,k,CHR. I'm not familiar with those prompts yet....
38112
carlbothabp
May 1, 2009 5:17 pm
do INPUT "How many stars do you want to see? (1 to 10) "; nr loop while nr < 1 or nr > 20 FOR k=1 to nr star$=star$+ "*" NEXT k PRINT CHR$(10); star$;...
38111
Bill Lopez
maxxhuggs2006
May 1, 2009 4:52 pm
No spaces and no GOTO (although the IF/THEN behaves as THEN GOTO) [redo] INPUT "How many stars do you want to see? (1 to 10) "; nr IF nr<1 OR nr>10 THEN [redo]...
38110
tinantaz2
May 1, 2009 4:30 pm
I've got to write a program using only one print statement, no negetive number allowed and no GOTO statement, with no space between stars. print "How many...
38109
productdevelop
May 1, 2009 3:53 pm
you have no idea how long I have looked at this. I have about 6 test programs written narrowing it down (and they all worked!). I'm feeling stupid now... Not...
38108
Fritz Oppliger
fritz_oppliger
May 1, 2009 3:12 pm
On Fri, 01 May 2009 07:53:56 -0700, productdevelop <productdevelop@...> wrote: ReadData1$ vs. ReadData$ -- Fritz Oppliger...
38107
productdevelop
May 1, 2009 2:54 pm
I am getting a string from a serial port #Serial1. As each character come in I concatenate it into a string called ReadData$. When a CR is received the...
38106
tinantaz2
May 1, 2009 2:01 pm
Thank you Marc. I'll try it to see if it runs. I am slowly catching on....
38105
alexbozinovic
May 1, 2009 11:28 am
... Ok. Say me then, what kind of informations I need for closing that window? From whole this text, i conclude that closing some application is not same as...
38104
Stefan Pendl
pendl2megabit
May 1, 2009 10:24 am
... Since I do not have CS installed, I can not run it, so I can not get the handle of the main window of CS and I can not send the window the instruction to...
38103
Marc Rossi
mrossi8888
May 1, 2009 8:40 am
... From: tinantaz2 <tina2260@...>' 'I wrote this in about 5 mins because I am heading for work I am new myself ' but I hope this can help ...