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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 8296 - 8325 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8296
Sep 4 HotBasic 4.3g now allows use of MEMORY properties and methods for array objects. E.g., A.position = 12, where A is an array (ping Don). New HotStuff...
doctor electron
globalservices1
Offline Send Email
Sep 5, 2005
5:35 am
8297
... I should add that HotStuff takes a command-line parameter -- the extension of the source files (default is "bas"). So with HotStuff c you would be finding...
doctor electron
globalservices1
Offline Send Email
Sep 5, 2005
5:46 am
8298
... Fixed a few bugs in HotStuff and the new download has hotstuff.bas source code and the title bar indicates version "1.0". Cheers, j...
doctor electron
globalservices1
Offline Send Email
Sep 5, 2005
7:01 am
8299
... GEE NOW I CAN DISCARD MY BLDALL.BAT FILE . I MAY MODIFY HOTSTUFF TO APPEND HB'S TMP.OUT TO A BLDALL.ERR IF ERRORLEVEL NOT 0 ..SO I CAN SEE/RETAIN ALL ERROR...
jketch43
Offline Send Email
Sep 5, 2005
5:53 pm
8300
Dear Jack, ... Thanks to your ideas and the need to test releases, HotStuff was born to automate this. Previously, I would test compile many programs -- but...
doctor electron
globalservices1
Offline Send Email
Sep 5, 2005
7:32 pm
8301
I need to move a UDT to a string. type myudt one as string * 2 = "A" two as string * 2 = "B" three as string * 2 = "C" end myudt dim myvar as myudt In many...
giorgiobertazzo
Offline Send Email
Sep 8, 2005
1:02 pm
8302
Sep 8 HotBasic 4.3h corrects a bug occurring only when constructor syntax is used for a UDT STRING item and the default string length is greater than or equal...
doctor electron
globalservices1
Offline Send Email
Sep 8, 2005
2:11 pm
8303
... This works: =====writeudt.bas $APPTYPE CONSOLE type myudt one as string * 2 = "A " two as string * 2 = "B " three as string * 2 = "C " end myudt dim...
doctor electron
globalservices1
Offline Send Email
Sep 8, 2005
2:16 pm
8304
... Thanks a lot! Giorgio...
giorgiobertazzo
Offline Send Email
Sep 8, 2005
7:26 pm
8305
HotIDE 2.6f conforms better to recent HotBasic compiler versions. Specifically, the keyboard "hot keys" to compile (F4 and F5) now work properly with the...
doctor electron
globalservices1
Offline Send Email
Sep 9, 2005
12:58 pm
8306
Hi, this to report yet another cause of error producing obj, this time with SELECT CASE, when there is no CASE statement in the SELECT E....
emmazle
Offline Send Email
Sep 11, 2005
2:43 pm
8307
Hi Jim, the following code should display two forms, but only one form is displayed. After activating 'Center' in the second form, this form comes up too. ...
-Alex-
fconx_aho
Offline Send Email
Sep 11, 2005
5:58 pm
8308
... The second form is displayed on my box (800 x 600) at screen top -- a little of the bottom is shown. For .Center, you may comment out the .Left and .Top...
doctor electron
globalservices1
Offline Send Email
Sep 11, 2005
6:23 pm
8309
On my monitor (1024x768) I have to set Left = 280 Top = 250 With this values the second form appears at the upper left corner. -Alex-...
-Alex-
fconx_aho
Offline Send Email
Sep 11, 2005
6:38 pm
8310
... Clarification: I meant, if you use .Center, Left=0 Top=0 or simply remove the statements completely. Cheers, Jim...
doctor electron
globalservices1
Offline Send Email
Sep 11, 2005
6:45 pm
8311
New Version of the HotPad IDE. From the Changelog: ================================================================================ 09/11/05 Version 0.8.5 *...
AIR
airrsongs
Offline Send Email
Sep 12, 2005
12:59 am
8312
Does anyone know of a way to open up a webpage in the users default web browser without using the Shell "cmd /c start /b http://www.hotbasic.org" way ? This...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 13, 2005
9:45 am
8313
Hi Fredrik, I'm using the following code to get the default browser from the registry, and then opening the webpage with the RUN command. PS: Don't know if...
-Alex-
fconx_aho
Offline Send Email
Sep 13, 2005
11:38 am
8314
... Using api calls: ============================ $apptype gui:$typecheck on declare function ShellExecuteA lib "shell32" _ (hwnd as dword, _ lpoperation as...
AIR
airrsongs
Offline Send Email
Sep 13, 2005
12:43 pm
8315
I am writing a subroutine that requires a pointer to a string. It then fills the string with text. I dont know ahead of time how long the text is, so how can...
tcslonaker
Offline Send Email
Sep 14, 2005
1:21 pm
8316
... This is an interesting post. I would be happy to know how this might be done in any programming language, if it is possible. My first take is that it is...
doctor electron
globalservices1
Offline Send Email
Sep 14, 2005
1:45 pm
8317
... ...in which case, the calling code could get the string with Result$=varptr$(MyProc) where MyProc is a FUNCTION ... As LONG and MyProc returns a ram ...
doctor electron
globalservices1
Offline Send Email
Sep 14, 2005
1:56 pm
8318
... Oops, I goofed. Looking at DirTree.inc (again), I see it just declares the FUNCTION ... As STRING. What could be easier? It just returns the string of...
doctor electron
globalservices1
Offline Send Email
Sep 14, 2005
1:57 pm
8319
Thanks, I will make it simple and declare the function to return a string. Tom ... __________________________________ Yahoo! Mail - PC Magazine Editors' Choice...
Tom Slonaker
tcslonaker
Offline Send Email
Sep 14, 2005
2:26 pm
8320
Hi, I'm running into a problem with RICHEDIT2. It seems that something in HB prevents it from handling international characters properly. The symptoms: if I...
emmazle
Offline Send Email
Sep 15, 2005
11:47 am
8321
... How about comparing the two (HB native and your ad hoc CreateWindowEx call): Exstyle, Style, Class, -- the works! Apparently, you have some difference...
doctor electron
globalservices1
Offline Send Email
Sep 15, 2005
12:38 pm
8322
... from ... Hello, I have a French keyboard and no problemo for accented characters...
MANY PIERRE
pierrotstudio
Offline Send Email
Sep 16, 2005
5:18 am
8323
... Well, there is a difference. On a French keyboard, somne accented characters (é, è, à, ù) are keys on the keyboard. On a Spanish keyboard, accents are...
emmazle
Offline Send Email
Sep 16, 2005
6:38 am
8324
... As for Exstyle, Style, Class, they're identical. That's the 1st thing I checked. EDIT don't support accents either. As for DefWndProc and .Recreate, I'll...
emmazle
Offline Send Email
Sep 16, 2005
6:42 am
8325
... No, pressing alt+ascii code this work in hotbasic richedit2 ex: alt+0226 = â ex: alt+0228 = ä but with standards keys this no work in hotbasic richedit2 ...
MANY PIERRE
pierrotstudio
Offline Send Email
Sep 16, 2005
11:21 am
Messages 8296 - 8325 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