HotBasic 6.7 now supports .ani files (animated cursor) as $RESOURCES. Here is a test program: =====ani_res.bas $APPTYPE CONSOLE: $TYPECHECK ON $resource...
18334
doctor electron
globalservices1
Oct 5, 2011 2:54 am
... OK, the intended fix in HB 6.7 re CDECL function decoration did not work. Could you email me a copy of MyC.Lib so I can test a better fix? Thanks, Jim...
18335
doctor electron
globalservices1
Oct 5, 2011 3:22 am
... If I understand, it is the Windows OS which is calling your callback function (external module written in C). Can we assume that Windows will determine...
18336
doctor electron
globalservices1
Oct 5, 2011 3:41 am
... isvisible and node are your arguments and are long, integer variables, which can be verified by inspection of the Symbol Table in the Results window of...
18337
doctor electron
globalservices1
Oct 5, 2011 3:56 am
... Addendum: In short, there are two distinct issues. 1. calling convention == declare or cdecl which refers to who is responsible for cleaning up the stack. ...
18338
Peter Chapman
sue_tess
Oct 5, 2011 1:43 pm
Oct 5, 2011 Hello all, Just wondered if someone has a command line program that will open a file and email the contents out to whom ever. If you can share, it...
18339
doctor electron
globalservices1
Oct 5, 2011 8:22 pm
... Yes, download mail.zip from my Net Census site: http://www.angelfire.com/space/netcensus/ is the URL, I think. The source code was written in RQ but can no...
18340
drroger77
Oct 6, 2011 4:18 pm
help ! i cant download the new version with hotsauce and my password. something as changed ?...
18341
doctor electron
globalservices1
Oct 6, 2011 4:29 pm
... Hello, Dr. Roger! Well, there have been successful downloads today so we're up and running. Suggest using hbsetup with Compiler checked noting that...
18342
doctor electron
globalservices1
Oct 6, 2011 4:37 pm
... Ho, Ho. I just saw the problem. In the local Gypsy server log, your IP address had been blocked. Gypsy might be one of the few or perhaps the ONLY server...
18343
drroger77
Oct 7, 2011 12:56 pm
Download error : on win xp : the download begin, and on the end, hotsauce quit without write any file. On win 7 : download begin and on the end windows error...
18344
doctor electron
globalservices1
Oct 7, 2011 5:12 pm
... The 4th line above is normally the name of the downloaded .zip file used by hbsetup to unpack it. You don't show that above. Look in your HB directory for...
18345
doctor electron
globalservices1
Oct 7, 2011 5:15 pm
... Correction: DoS (for denial of service)....
18346
pierrotstudio
Oct 7, 2011 7:44 pm
Hello Jim, First: thank you for ani file support ;) ... I thought the cdecl calling convention using the stack to pass arguments. The library used, requires a...
18347
pierrotstudio
Oct 7, 2011 7:57 pm
Hello jim, Thank you for your perseverance. ... The lib MyC.Lib with all its dependencies weighs 18 MB !!! (thank you c++ !!!) Pierrot...
18348
doctor electron
globalservices1
Oct 7, 2011 7:59 pm
... Whether DECLARE or CDECL is used, if the LIB keyword is used with an .obj or .lib file, the stack _must_ be used and is always used. BTW, request #2: could...
18349
pierrotstudio
Oct 7, 2011 8:25 pm
... In FILES\USERS92;PIERROT a simple code test with GLFW.lib (some opengl stuff) Pierrot...
18350
doctor electron
globalservices1
Oct 7, 2011 9:07 pm
... Thanks. I'll work with that to be sure it and others like it can be easily linked with HB programs. Regards, J...
18351
doctor electron
globalservices1
Oct 8, 2011 8:53 pm
... OK, I've analyzed this .lib and your test code. My preliminary conclusions: 1. Each function name item (e.g., glfwInit) appears to be a location in the...
18352
fnoware
Oct 9, 2011 6:38 am
Perhaps this guide will help someone to compile a HelloWorld http://www.algolist.net/Cpp/First_string_in_cpp...
18353
hotbasic@yahoogroups....
Oct 10, 2011 6:47 am
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 :...
18354
pierrotstudio
Oct 10, 2011 6:49 am
Hello Jim, In file section a new Ctest with source print a simple hello world in console HB code in release subdirectory Pierrot...
18355
pierrotstudio
Oct 10, 2011 8:24 am
Same code compiled with PellesC (non-bloated...)...
18356
doctor electron
globalservices1
Oct 11, 2011 9:24 am
... Thank you, Pierrot, for the MSVC and PellesC .notlib files. I say ".notlib" because it appears that both of these are not inter-language compatible or...
18357
doctor electron
globalservices1
Oct 11, 2011 9:36 am
Given that the MS Visual C (MSVC) libraries posted by Pierrot or not true or conventional .lib files which may be directly statically linked to modules written...
18358
emmazle
Oct 12, 2011 8:32 am
Dear Jim, When is hbHnd valid? I have encountered some linking errors, including with the bare-bones: $typecheck on defint h=hbHnd --> error LNK2001:...
18359
doctor electron
globalservices1
Oct 12, 2011 10:14 am
... hbObj, hbHnd, hbArgs and hbThis are internal variables created (dimensioned in an app) when the TYPE or OBJECT keywords are used, typically to create a UDT...
18360
emmazle
Oct 12, 2011 4:04 pm
Thanks Jim, it makes sense. Is there a way to know at compile-time if hbHnd/hbObj are valid, e.g. by checking an $ifdef?...
18361
doctor electron
globalservices1
Oct 12, 2011 4:52 pm
... If "at compile-time" means just before compile, search source for "type " and/or "object " (note trailing spaces in search text). If found, those internal...
18363
arcmail@...
portable_code
Oct 13, 2011 3:24 pm
Doc, any progress on incorporating "fatal error trapping" into Hot Basic? This would me most useful to me and Im sure to others. Can I bribe you to hurry? :) ...