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...
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...
... 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...
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...
... 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...
... You could always try doing like other compilers, and create environment variables pointing to your include and resource folders. Then use those in -I...
... 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...
... 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 ...
... 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...
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...
... 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...
... 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...
... 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,...
... 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...
... 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,...
... VB: http://www.pgacon.com/visualbasic.htm#Do%20You%20DoEvents TP/Delphi: Application.ProcessMessages Same thing applies to all languages; if you have an...