Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 13645 - 13674 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13645
This is not what I meant. start hotide code1.bas and then hotide code2.bas will start 2x hotide code2.bas must load into the first started hotide I cannot do...
chordnl
Offline Send Email
Oct 1, 2007
7:24 am
13646
hotide must find out if it is already started if it has a file as argument , load only the file in the already started hotide. grCor...
chordnl
Offline Send Email
Oct 1, 2007
7:27 am
13647
Hi Jim, is it able to change the xxxx.ID from readonly to read/write ? If you create a form, HB autonumbers the id's from 0 to n. Need this for HB created...
-Alex-
fconx_aho
Offline Send Email
Oct 1, 2007
7:28 am
13648
could these switches also be integrated to one switch. saves a lot of string space and needed to compile grCor...
chordnl
Offline Send Email
Oct 1, 2007
9:53 am
13649
... always ... able ... Hello Alex, You can set the window ID yourself... ex: FuncCall SetWindowlongA,MyWin,GWL_ID,MyID Pierrot ;)...
MANY PIERRE
pierrotstudio
Offline Send Email
Oct 1, 2007
11:32 am
13650
... You will have only one instance if the code1 instance is terminated before the code2 instance. j...
doctor electron
globalservices1
Offline Send Email
Oct 1, 2007
12:38 pm
13651
... I don't think so, writing to .ID might break GUI apps since this value is used as a lookup index. ... Consider making two offscreen (or invisible) LABEL...
doctor electron
globalservices1
Offline Send Email
Oct 1, 2007
12:43 pm
13652
and ... If you want to reserve winID=1 and winID=2 You can write this: create f as form create DummyOKButton as button 'ID=1 visible=false end create create...
MANY PIERRE
pierrotstudio
Offline Send Email
Oct 1, 2007
12:43 pm
13653
... Dear Alex, As MANY and I suggested, creating dummy FORM objects with those .ID values may do the trick if you define their .OnClick routine. Why? I think...
doctor electron
globalservices1
Offline Send Email
Oct 1, 2007
3:43 pm
13654
... You could always try doing like other compilers, and create environment variables pointing to your include and resource folders. Then use those in -I...
Airr
airrsongs
Offline Send Email
Oct 1, 2007
4:15 pm
13655
... The ID's in the window callback is hardcoded. So the ID's can only be changed at compile time. If you need to have different ID's than you have to create...
efgee2003
Offline Send Email
Oct 1, 2007
4:33 pm
13656
... ... are hardcoded... ...ID's then you have to... Sorry for the typos all over the place ;)...
efgee2003
Offline Send Email
Oct 1, 2007
4:37 pm
13657
If I run console app from GUI, it does not show the console output Is there a way to fix that? grCor if fileexists curdir$+"\_null.exe" then run...
chordnl
Offline Send Email
Oct 2, 2007
6:24 am
13658
Hereis some code s$=compilerpath$ + compilercommand$ + " -I" + dirname$ + "\" + " -R" + dirname$ + "\ " + tmpfile$ 'set up your command string here ...
chordnl
Offline Send Email
Oct 2, 2007
7:14 am
13659
Point is: If compile and run a console program, then I have no output of the compiler output grCor ... R" ... is ... + "<"...
chordnl
Offline Send Email
Oct 2, 2007
8:19 am
13660
Looked at hotide, There it goes ok. Maybe some code from Jim from hotide wil help grCor ... + " - ... linenumber ... output...
chordnl
Offline Send Email
Oct 2, 2007
11:27 am
13661
... This works: =====null.bas $APPTYPE CONSOLE print "hello" PAUSE END =====null.bas =====runnull.bas create f As FORM end create run "null.exe" f.showmodal ...
doctor electron
globalservices1
Offline Send Email
Oct 2, 2007
12:58 pm
13662
But I want to capture the compiler output first! It's not possible with the code below, or.... grCor...
chordnl
Offline Send Email
Oct 2, 2007
1:26 pm
13663
... I see, well after the compiler run, if you have saved its piped output to a file, you can then run a console to show that file's contents. Any number of...
doctor electron
globalservices1
Offline Send Email
Oct 2, 2007
2:05 pm
13664
Well the problem is that the compiler output and the console app output writes to the same console grCor...
chordnl
Offline Send Email
Oct 2, 2007
2:22 pm
13665
This will do the trick run "cmd.exe /c start " + curdir$+"\_null.exe" grCor ... output...
chordnl
Offline Send Email
Oct 2, 2007
2:27 pm
13666
If Win1 is a richedit2 text window and the code statements are: Win1.Clear Win1.Focus Q1) do either of these statements require a subsequent DOEVENTS as...
low_beer_light
Offline Send Email
Oct 2, 2007
9:40 pm
13667
... Usually, yes, if you note that action did not occur without it. ... Don noted a few instances where DOEVENTS after several file IO statements in a previous...
doctor electron
globalservices1
Offline Send Email
Oct 2, 2007
9:57 pm
13668
... Does this mean rather than using TWO DOEVENTS in the example above, one would suffice as in: Win1.Clear Win1.Focus DOEVENTS ?? TIA, lBl...
low_beer_light
Offline Send Email
Oct 3, 2007
11:06 am
13669
... Hi. You know if the your program runs properly -- which is the operational criteria to answers all such questions. j...
doctor electron
globalservices1
Offline Send Email
Oct 3, 2007
11:56 am
13670
... Remember that the way you run your program is one thing; the way that others run it is another. E.g., if one constantly moves the mouse around you can...
doctor electron
globalservices1
Offline Send Email
Oct 3, 2007
12:03 pm
13671
... Hi Jim, As always I appreciate your fast replys. Based on your detailed explanations, I think I have my brain wrapped around what DOEVENTS does. However,...
low_beer_light
Offline Send Email
Oct 3, 2007
12:39 pm
13672
... I don't know about those languages, but maybe they have a "DOEVENTS nanny", inserting DOEVENTS calls. ... I don't know what they do, but you don't process...
doctor electron
globalservices1
Offline Send Email
Oct 3, 2007
12:51 pm
13673
... Clearly, the languages you list are not as good as HotBasic and therefore do no require DOEVENTS. [The folk-lore re VB is that Mr. Gates wanted HotBasic,...
doctor electron
globalservices1
Offline Send Email
Oct 3, 2007
1:06 pm
13674
... VB: http://www.pgacon.com/visualbasic.htm#Do%20You%20DoEvents TP/Delphi: Application.ProcessMessages Same thing applies to all languages; if you have an...
Airr
airrsongs
Offline Send Email
Oct 3, 2007
2:36 pm
Messages 13645 - 13674 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help