I recently moved to Vista 64 and am having the same issues. I have a backup .exe of a file that works fine, but if I load the source and attempt to compile it...
Yeah, Vista. I can certainly do without it. The problem is to find the
best way to surmount it. My solution is Windows 2000 Pro standalone, or a
combination...
Free Online Jobs Website If you are looking for a new job, be it in California, New York or somewhere in between, make Fresho.com your first stop. Jon Now:...
I have considered a dual-boot setup because of a couple of applications that Vista just doesn't like, but that really won't address the problem. So far I've...
I'm new to Hotbasic and I need your help with: 1) How do I change the mousepointer/icon? What is the equivalent to VB6's "screen.mousepointer=vbhourglass" ? I...
Jan 12 HotBasic 5.8 with VAL() fixes released. For newcomers, here's the story with background. Two conversion functions -- floating to string (STR$) and...
What is this? New file in the compiler, no reference in the notes. Tried it, it's console but no hints executing it, other than the expected paramer is a .bas...
... Oops! Thanks for feedback. In my haste to post this 5.8 update during the day here where lots of other tasks awaited (I usually update at night where...
... it ... Hello Marc and welcome, 'TestCursor.bas $apptype gui $typecheck on declare sub SetCursor lib "user32" (hCursor as long) $define IDC_WAIT 32514 ...
... MyObj.Cursor = handle_cursor Please see working example in splitter.inc (among others). Hotfind "cursor" for details. ... I have not observed this...
My hbsetup.inf file is attached at the bottom of this message. Some links are obsolete, perhaps some good ones are missing. Any suggestion on how to update it?...
THANKS Pierrot! It works perfectly, it's just want I wanted, except... now I have to figure out how it works. I think your using callbacks or something which...
... Hello Marc, My code use only one API (SetCursor). The rest of code use only HotBasic standard code: With the onmessage proc, you can handle all messages ...
... Hello Cor, Your method is good .... only for the form cusor With the onmessage you can handle the Application cursor without changing the class cursor. ex:...
... HB's FORM objects have a .Cursor property which *is* the SetCursor API. They are one and the same, except with the API you have to DECLARE it (slightly...
Hi Pierrot: Please pardon my few (many) questions: Why are you doing: funccall LoadCursorA,zero,32514 deflng hourglass=retfunc Isn't "LoadCursorA" a winapi...
... Thanks. I stand corrected ... and your fine SetCursor demos suggest an area which might benefit with some sort of native cursor-related HB upgrade! ;) j...
Thanks Pierrot, I'm still trying to understand the onmessage event sub "fmsg". How is the uMsg type WM_SETCURSOR set? I can understand for example, a...
... Hello Marc, WM_SETCURSOR is sent by the OS. You should read win32.hlp for a detailed explanation of every message and the effect of the answers on the...
Hello Jim, When I call a menu with the popup function, I can click a menu with the right button, normally one should not be able to make that ? Maybe the...
Dear HB Friends, Please Help: I have a form with a list box. Dbl-clicking on a listbox item calls an event subroutine. If the subroutine declares a LOCAL...
it looks like showmessage is the problem when changing sLocalVar first then it is showing both values HB 5.7D grCor print "sGlobalVar: ";sGlobalVar 'ok print...
Hello Marc, in your sub add this: begin runonce 'before dim sLocalVar as string end runonce 'after The result: your string is dimmed only once Pierrot...
Thanks Pierrot: Your suggestion worked ok, but I'm don't understand why. If the problem was with the string variable then I would expect that COR's suggestion...
... Hello Marc, I have never had this problem because I use the following syntax: defstr ... Your modified sub: SUB myListBox_click i=myListBox.itemindex IF...