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 8977 - 9006 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8977
... Yes, you should no longer use the savebmp I posted some time ago. That was before savebmp existed in hotinc. I'll delete the ancestor from the Files...
emmazle
Offline Send Email
Dec 1, 2005
10:41 am
8978
... Three cheers for MS! This runs! =====hotusb.bas $APPTYPE CONSOLE dim f as file f.open("usb0",2) 'read/write mode 'test for error in .open above: print...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
1:56 pm
8979
... Oops, just noticed the program created a file named "usb0" [SOUND: air deflating from balloon]. :{ j OK, if someone has a printer on a usb port, maybe...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
2:07 pm
8980
... In version 4.3h I still able to use a function as argument in CALLFUNC calls. But in current version, it will produce a non-working executable which is...
Don
don67geo
Offline Send Email
Dec 1, 2005
9:51 pm
8981
I really need helps to substitute the UNION structure within UDT. for e.g. TYPE MyType data1 as long UNION udata1 as long udata2 as word udata3 as byte END...
Don
don67geo
Offline Send Email
Dec 1, 2005
9:57 pm
8982
... Don, maybe we need an example of this trouble. The above works fine for me: =====callfunc2.bas $APPTYPE CONSOLE defstr s$ = "HotBasic: The Movie" declare...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
10:15 pm
8983
... In HB, it is easy: substitute for the UNION above "udata1 as long". You can do this because HB does magic re conversions of numeric types as above. dim t...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
10:27 pm
8984
... <snip> ... Doc, The following example only working if it compile with HB v4.3h and below. I didn't have v4.4 to v4.5, so couldn't tell if it working or...
Don
don67geo
Offline Send Email
Dec 1, 2005
10:37 pm
8985
... Thanks Doc. Do we have LoByte keyword in HB? ;) ... I saw in most of assembler, c/cpp and other basic compilers example. - Don....
Don
don67geo
Offline Send Email
Dec 1, 2005
10:59 pm
8986
... With this (v4.4 up), you need defint AMA = codeptr(AppendMenuA) callfunc AMA, 0, 0, MF_SEPARATOR, sMenu just like is done to use callfunc with any declared...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
11:31 pm
8987
... No, and it's not needed ... really. MyByte = MyLong 'or MyWord; gets LoByte ... Gee, efgee is right, HB *is* different from other compilers. How is it...
doctor electron
globalservices1
Offline Send Email
Dec 1, 2005
11:31 pm
8988
... Thanks again Doc. It looks very familiar when I was reading RQ documentation back then. The combination is similar like BINDing. e.g. -- Code start -- ...
Don
don67geo
Offline Send Email
Dec 2, 2005
12:17 am
8989
Don, Example crashes on my PC grCor ... <doctorelectron@c...> ... e.g....
chordnl
Offline Send Email
Dec 2, 2005
6:14 am
8990
... STD ... and ... Hi, posting again, since thread seems to be sleeping E....
emmazle
Offline Send Email
Dec 2, 2005
9:16 am
8991
... Cor, Did you compile with the latest HB v4.6h? -Don....
Don
don67geo
Offline Send Email
Dec 2, 2005
12:09 pm
8992
... It's a nice idea for symmetry, has been noted. Status: now yet implemented. Thanks, jim...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2005
12:18 pm
8993
Local Variables ~~~~~~~~~~~~~~~ Any qualified type dimensioned in a SUB or FUNCTION is "local". The same user symbols may be dimensioned in different...
-Alex-
fconx_aho
Offline Send Email
Dec 2, 2005
12:38 pm
8994
No, just did and no crashes, thank you grCor...
chordnl
Offline Send Email
Dec 2, 2005
12:49 pm
8995
... Good clarification. Actually, the statement above combines two statements in one: DEFLING var var = 0 'initialize var value as desired Your demo of...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2005
1:02 pm
8996
... Emmazle, In version 4.6h, string can be passed to STD sub in OBJ file. But, after a few test, I found any string copying activity to another string...
Don
don67geo
Offline Send Email
Dec 2, 2005
2:13 pm
8997
... this is not yet supported (directly). This is: $apptype obj declare sub mysub STD (lps as dword) 'lps = "long pointer string" defstr s$ = byref$(lps)...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2005
3:31 pm
8998
HBassistant v1.22 has now been posted for download. The 'assistant' has been updated with the following: If a search is made for a non-existent keyword (not in...
Philip Bister
philip.bister@...
Send Email
Dec 2, 2005
5:17 pm
8999
Please excuse my ignorance, but when I display a BITMAP the size is always ~100 x 100 pixel. Is this Normal? I thought if I do this: CREATE myBMP AS BITMAP ...
efgee2003
Offline Send Email
Dec 2, 2005
9:15 pm
9000
... Well, I think 64x64 is the normal default size. If you change certain parameters listed in Manual > Objects > BITMAP, you have to use the .Recreate...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2005
10:00 pm
9001
... OK maybe it's 64x64, but I can't change the size... Maybe it's my fault, because I thought I could display any bmp on the fly, but as I figured out in...
efgee2003
Offline Send Email
Dec 2, 2005
11:15 pm
9002
... Yeah, it was my fault. Just found, Xsize and Ysize property of BITMAP. Always changed the Width and Height, instead of Xsize and Ysize. Width and Height...
efgee2003
Offline Send Email
Dec 2, 2005
11:25 pm
9003
... Right, untouched, as can be verified by read/display of the property. ... Yes, to show the whole thing, set Xsize = Width and Ysize = Height. The idea of...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2005
11:46 pm
9004
... efgee, here is a quote from nviewlib.bas, recently cited here: CREATE myImage AS bitmap bmp=Load_GIF("baby.GIF",False) END CREATE where bmp is set equal to...
doctor electron
globalservices1
Offline Send Email
Dec 3, 2005
12:38 am
9005
... ' client sizer $define ".clientwidth=" .width=(myform.width-myform.clientwidth)+ $define ".clientheight=" .height=(myform.height-myform.clientheight)+ ...
Don
don67geo
Offline Send Email
Dec 4, 2005
9:34 pm
9006
... Hi, Don. Interesting. You want a client size of 200x300, for example, and since different windows versions may have different title-bar size, etc, you...
doctor electron
globalservices1
Offline Send Email
Dec 4, 2005
10:16 pm
Messages 8977 - 9006 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