Hello Everyone. HBassistant version 2.00 has been released with text formatting (in addition to the code being shown in colour), and RTF printing! May be...
Philip Bister
philip.bister@...
Sep 1, 2006 12:47 pm
10500
Has anyone built a routine to stamp file creation or modified dates ? I'm trying to do this but isn't getting anywhere, these types again ;-) Type FILETIME ...
... It may be of interest that lines 22-26 of hotdate.bas (in HotTrial.zip download) shows how to assign values to a DATE object and save that to a filetime...
Hi Fredrik, From WIN32: The FILETIME structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601. This can be done...
Hello, i canot download ActiveX.inc. This link paced on the start page of the hotbasic site. This file ActiveX.zip is epsent into Emmazle directory, where i...
... I think the author removed that file, perhaps because the ActiveX functionality is included in his ComHelper download. Maybe the author will comment on...
... You're right, Jim, ComHelper contains everything now. The file comes with examples of how to use COM and ActiveX objects in a Hotbasic program. ...
Is there any possibility to change font and size of the text written with .textout on canvas or form? I've tried to dim a font object and set that using the...
... Alex has shown that for a FORM, font changes (e.g., size), work only in an .OnPaint routine (which is probably where you are doing your .textout...
I found out that if I do a SelectObject in the onpaint routine I can Change the font size. Is this the way to do it ? Can anyone tell me if this will get any...
I saw that I needed to do a redesign of the onpaint routine, so we don't get a memory leak in a font object. deflng r,r2 r=SelectObject(w.GetDC,MyFont.handle) ...
... before ... I have changed your code to: dim MyFont as font:MyFont.Name = "Arial" MyFont.Height = 36:MyFont.Italic=1 dim MyFont2 as font:MyFont2.Name =...
... If you use FUNCCALL (or CALLFUNC) instead of DECLARE ... LIB for such a procedure, generated code is shorter and faster, but there is less error-checking....
Hello, I've been thinking lately on the kind of IDE I'd like in order to develop my programs (I use Hotbasic, and I've been using RapidQ for larger projects). ...
I actually have a third step debugging. I don't know about everybody else but my first versions of a program often contains alot of showmessage to see that...
... Sure, everyone who needs to debug does something like that, but wouldn't it be great to be able to single step execute through a program, view or change...
If I remember correctly the RapidQ IDE never was very functional. Many of the controls were not implemented. I program much like you -- making up my mind as I...
... If you're doing it from the command line under XP, you can also do: getmac /v /fo list To get it in CSV format (if you want to shell and then parse it ...
How do I get the result from GetMac back to my hb program? I know that I can pipe it to a file is there another way to get it directly to my program ? /F ... ...
... Here's one way (be wary of wordwrapping/mangling): ********************* ' ------------------------------------------------------ ' ** Redirect.inc v. 001 ...
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 : /Code...
hotbasic@yahoogroups....
Sep 11, 2006 6:35 pm
10526
... in ... Hi Fredrik, have uploaded a small program to get the MAC-Address, with API-Function "GetAdaptersInfo". Hope its usefully. -Alex- PS: With some...
Thank you all for the help with the get macadress problem. Serveral solutions where published and they where all very good. The cmd output streamer, very nice...
Hi Jim, the following example shows you, that TABCONTROL.Item(n) does not return full name of tab. Pleas can you check that ? -Alex- ' -----Begin of code----- ...
... AIR's code is good example of coding excellence. To be terribly pedantic (sorry), I might add: 1. ShellEx.inc does most of the declares and types in one...