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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 16259 - 16291 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16259
grow your business online Powerful tools to help you grow your business online from Microsoft® Corporation Join Now FREE : http://easylnk.com/?7587...
sikoboob4@...
sikoboob4
Offline Send Email
Jan 6, 2009
7:19 pm
16260
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...
rkstuart57
Offline Send Email
Jan 6, 2009
10:51 pm
16261
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...
Donald Darden
pc_doer
Offline Send Email
Jan 7, 2009
3:50 pm
16262
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:...
sikoboob4@...
sikoboob4
Offline Send Email
Jan 7, 2009
4:14 pm
16263
2 GB of 100% free space. Get 2 GB absolutely free! No setup fee, no credit cards, no expiration, no hassle. Learn More : http://easylnk.com/?7593...
sikoboob4@...
sikoboob4
Offline Send Email
Jan 7, 2009
4:37 pm
16264
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...
rkstuart57
Offline Send Email
Jan 7, 2009
5:27 pm
16268
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...
marcb_nh
Online Now Send Email
Jan 12, 2009
4:32 pm
16269
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...
doctor electron
globalservices1
Offline Send Email
Jan 12, 2009
6:17 pm
16270
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...
giorgiobertazzo
Offline Send Email
Jan 12, 2009
6:52 pm
16271
... 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...
doctor electron
globalservices1
Offline Send Email
Jan 12, 2009
9:04 pm
16272
... it ... Hello Marc and welcome, 'TestCursor.bas $apptype gui $typecheck on declare sub SetCursor lib "user32" (hCursor as long) $define IDC_WAIT 32514 ...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 13, 2009
1:50 pm
16273
... MyObj.Cursor = handle_cursor Please see working example in splitter.inc (among others). Hotfind "cursor" for details. ... I have not observed this...
doctor electron
globalservices1
Offline Send Email
Jan 13, 2009
3:32 pm
16274
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?...
giorgiobertazzo
Offline Send Email
Jan 13, 2009
11:18 pm
16275
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...
marcb_nh
Online Now Send Email
Jan 14, 2009
7:50 pm
16276
or you can try this just change cursor= with the values below grCor ' mouse cursor $DEFINE IDC_ARROW 32512 $DEFINE IDC_IBEAM 32513 $DEFINE IDC_WAIT...
chordnl
Offline Send Email
Jan 14, 2009
11:02 pm
16277
... 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 ...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 15, 2009
6:32 am
16278
... 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:...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 15, 2009
6:41 am
16279
... 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...
doctor electron
globalservices1
Offline Send Email
Jan 15, 2009
6:43 am
16280
... Hello Jim, The SetCursor is NOT in HotBasic.lib, The .cursor property change only the class cursor. Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 15, 2009
7:56 am
16281
Hi Pierrot: Please pardon my few (many) questions: Why are you doing: funccall LoadCursorA,zero,32514 deflng hourglass=retfunc Isn't "LoadCursorA" a winapi...
marcb_nh
Online Now Send Email
Jan 15, 2009
1:06 pm
16282
... 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...
doctor electron
globalservices1
Offline Send Email
Jan 15, 2009
1:57 pm
16283
... Yes, all API in hotbasic.lib can be called with funccall, ex: funccall MyHotAPI,arg1,ar2,...,argn List of API in Hotbasic.lib (version 5.8) ...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 15, 2009
2:20 pm
16284
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...
marcb_nh
Online Now Send Email
Jan 15, 2009
6:13 pm
16285
... 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...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 16, 2009
6:30 am
16286
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...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 16, 2009
9:09 am
16287
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...
marcb_nh
Online Now Send Email
Jan 16, 2009
2:33 pm
16288
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...
chordnl
Offline Send Email
Jan 16, 2009
10:49 pm
16289
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...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 19, 2009
3:30 pm
16290
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...
marcb_nh
Online Now Send Email
Jan 20, 2009
7:28 pm
16291
... 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...
MANY PIERRE
pierrotstudio
Offline Send Email
Jan 21, 2009
6:26 am
Messages 16259 - 16291 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