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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 7276 - 7305 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7276
I've encountered a problem writing the IDE (called Eduardo) that I've posted on the Files section. Eduardo uses a batch file (using SHELL as a function) to...
taplang
Offline Send Email
Jun 1, 2005
9:08 am
7277
... Try direct call to CreateProcessA with flags = 1 which "hides" the console window (see ShellEx.inc in HotInclude and hide.bas in HotThing). :) Jim...
doctor electron
globalservices1
Offline Send Email
Jun 1, 2005
12:31 pm
7278
Thanks Doc! BTW, here's another solution (this one's from Andrew Shelkovenko from the Rapid-Q forum): id = SHELL("command.com /c " + batchfile$,0) I'll upload...
taplang
Offline Send Email
Jun 1, 2005
3:47 pm
7279
... I'm curious: couldn't you eliminate the need for the batch file by piping the compiler output to a file, and then parsing it directly from code? Something...
AIR
airrsongs
Offline Send Email
Jun 1, 2005
4:25 pm
7280
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File :...
hotbasic@yahoogroups....
Send Email
Jun 1, 2005
6:49 pm
7281
... You're absolutely right, and that's exactly what I did. id = SHELL("command.com /c " + batchfile$,0) was Andrew's suggestion, (in the original it was...
taplang
Offline Send Email
Jun 1, 2005
7:12 pm
7282
Hi Jim, all my attempts to get a running application with the new .dlg resource failed. If I include a dialog script (E.g. $RESOURCE TEST as "dialogtest.dlg)...
-Alex-
fconx_aho
Offline Send Email
Jun 2, 2005
9:24 am
7283
Hi, I'm trying to use $IFDEF to selectively compile blocks of code and I can't get it to work. It looks as if the $DEFINE didn't get recognized. Ex: $typecheck...
emmazle
Offline Send Email
Jun 2, 2005
2:18 pm
7284
... Right. At present, user symbols in the $DEFINE list used for either $IFDEF or $IFNDEF need to be uppercase. This would apply to user symbols defined with...
doctor electron
globalservices1
Offline Send Email
Jun 2, 2005
2:48 pm
7285
... Thanks for info, Alex! With that input, I tested this with the "new GUI" in HotIDE. Turns out that both .mnu and .dlg resources have to be handled...
doctor electron
globalservices1
Offline Send Email
Jun 2, 2005
3:06 pm
7286
... Thank for the good news. ... Here is my first primitive dialog program which uses the sample dlg- file I posted here. '-----Start of code----- $apptype gui...
-Alex-
fconx_aho
Offline Send Email
Jun 2, 2005
3:28 pm
7287
June 2 HotBasic 4.1i adds POPUPMENU (alias for MAINMENU) as a qualified type. Also, several recent issue reports (Alex, E.) were resolved. Cheers, Jim...
doctor electron
globalservices1
Offline Send Email
Jun 3, 2005
2:13 am
7288
Is it possible to put the Tray code also in the HB lib? Thanks in advance grCor...
chordnl
Offline Send Email
Jun 3, 2005
4:16 am
7289
... The new updates are working fine. -Alex-...
-Alex-
fconx_aho
Offline Send Email
Jun 3, 2005
9:02 am
7290
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File :...
hotbasic@yahoogroups....
Send Email
Jun 3, 2005
10:25 am
7291
Sorry, I feel this is trivial but - I saw this example in the help file for getting a list of files in a directory (in a console app) - seemed pretty ugly: r$...
michaelsydenham
Offline Send Email
Jun 3, 2005
11:00 am
7292
... $apptype console dim firstfile as string dim nextfile as string dim mypath as string ' the files are in another directory mypath = command$(1) + "\*.txt" ...
michaelsydenham
Offline Send Email
Jun 3, 2005
11:40 am
7293
Hi Jim I have found a problem with menu grayed. After I DIM the menu and menu items, I gray an item: mn21.grayed=true It works if I do that immediately after...
Philip Bister
philip.bister@...
Send Email
Jun 3, 2005
5:25 pm
7294
Hey there Michael, Serve yourself, I hope this helps... its what you asked for!!! '``````````````````````````````````````````````` ' Demo ' Here by...
jose_d32792
Offline Send Email
Jun 3, 2005
8:09 pm
7295
... Hey, Michael: The code above works, except that the very first file that is "found" is never displayed on the screen. I took the above, and rewrote it like...
AIR
airrsongs
Offline Send Email
Jun 3, 2005
9:01 pm
7296
... In addition to the suggestions already posted, please see DirTree.inc in HotInclude and the .Directory method in FORM Methods which could be used with an...
doctor electron
globalservices1
Offline Send Email
Jun 3, 2005
9:39 pm
7297
... I have a question regarding the .Directory method. After setting up a Combobox and a Listbox: ListBox1.directory("C:\",&H4000) <-- Populates the listbox...
airrsongs
Offline Send Email
Jun 4, 2005
12:51 am
7298
... Nevermind, I had "sorted=false" in the combobox create statement(using HotVisual), which looks like it was blocking any additions. -- "Programming is like...
AIR
airrsongs
Offline Send Email
Jun 4, 2005
1:15 am
7299
Thanks Jose very much for your kind help. Thanks also to AIR & Jim's answer. I've written a couple of personal utilities so far in HB and have been pleased...
michaelsydenham
Offline Send Email
Jun 4, 2005
1:24 am
7300
... CB.Directory("c:\*.*",&H37) 'works in hotwin.bas Never used the &H4000 flag for "drives", but using the path of "C:\" doesn't seem to make intuitive sense...
doctor electron
globalservices1
Offline Send Email
Jun 4, 2005
1:27 am
7301
... Thanks, Philip. I'm looking at this and have a partial fix. Meanwhile, I found after a .grayed statement, one can reassign the .caption (this sucks), and...
doctor electron
globalservices1
Offline Send Email
Jun 4, 2005
1:31 am
7302
... ComboBox1.directory("*.*",&H4000) <--- returns the complete file listing in the application directory, in addition to the Drive letters, Jim. ...
AIR
airrsongs
Offline Send Email
Jun 4, 2005
2:42 am
7303
... Hi, AIR, depends on where you put it. Use of the sorted method will remove any contents of the listbox or combobox; therefore, it is usually the first...
doctor electron
globalservices1
Offline Send Email
Jun 4, 2005
3:01 am
7304
... Hmmm... So....if I specify the sort method during the create code of the cb, at which point does it get destroyed? Prior to showing the form, or after? ...
AIR
airrsongs
Offline Send Email
Jun 4, 2005
3:27 am
7305
... Again, suggest putting "sorted=false" first, after the create statement and for icing on cake add "ComboBox1.itemindex=0" after the .directory statement so...
doctor electron
globalservices1
Offline Send Email
Jun 4, 2005
4:20 am
Messages 7276 - 7305 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