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 10499 - 10529 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10499
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@...
Send Email
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 ...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 3, 2006
7:31 am
10501
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 3, 2006
2:36 pm
10502
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...
-Alex-
fconx_aho
Offline Send Email
Sep 4, 2006
10:17 am
10504
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...
egor_georgy2
Offline Send Email
Sep 4, 2006
4:14 pm
10505
... I think the author removed that file, perhaps because the ActiveX functionality is included in his ComHelper download. Maybe the author will comment on...
doctor electron
globalservices1
Offline Send Email
Sep 4, 2006
4:41 pm
10506
... 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. ...
emmazle
Offline Send Email
Sep 5, 2006
9:15 am
10507
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...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 5, 2006
7:29 pm
10508
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 5, 2006
9:40 pm
10509
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...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 6, 2006
7:20 am
10510
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) ...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 6, 2006
7:32 am
10511
... Hello Fredrik, In onpaint routine you can use the useful hbDC internal variable instead w.GetDC ;) Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Sep 6, 2006
11:17 am
10512
... 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 =...
MANY PIERRE
pierrotstudio
Offline Send Email
Sep 6, 2006
11:25 am
10513
Is there any special diffrens if I skip the declaration of objects that are in the HB.lib file, or just number of code lines? /Fredrik...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 6, 2006
2:40 pm
10514
... 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....
doctor electron
globalservices1
Offline Send Email
Sep 6, 2006
3:03 pm
10515
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). ...
emmazle
Offline Send Email
Sep 8, 2006
2:10 pm
10516
An integrated source code level debugger would be nice too...
tuitafuna
Offline Send Email
Sep 8, 2006
5:30 pm
10517
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...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 8, 2006
5:38 pm
10518
... 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...
tuitafuna
Offline Send Email
Sep 8, 2006
6:57 pm
10519
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...
Cygnus22_98
Offline Send Email
Sep 9, 2006
2:41 pm
10520
Does anyone know how to get the mac adress of the network adapter in the system?...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 9, 2006
9:50 pm
10521
Win XP: From a DOS Window type IPCONFIG /ALL...
low_beer_light
Offline Send Email
Sep 9, 2006
10:09 pm
10522
... 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 ...
AIR
airrsongs
Offline Send Email
Sep 10, 2006
1:25 am
10523
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 ... ...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 10, 2006
6:23 pm
10524
... Here's one way (be wary of wordwrapping/mangling): ********************* ' ------------------------------------------------------ ' ** Redirect.inc v. 001 ...
AIR
airrsongs
Offline Send Email
Sep 11, 2006
6:04 pm
10525
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....
Send Email
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...
-Alex-
fconx_aho
Offline Send Email
Sep 11, 2006
6:54 pm
10527
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...
fredriknorling2003
fredriknorli...
Offline Send Email
Sep 12, 2006
7:00 am
10528
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----- ...
-Alex-
fconx_aho
Offline Send Email
Sep 12, 2006
12:37 pm
10529
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 12, 2006
1:36 pm
Messages 10499 - 10529 of 17146   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