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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 10450 - 10480 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10450
Hello Following Cor's report about not being to unzip HBassistant170.zip I have now re-tested the file, and uploaded again. Hopefully, all will now be OK. ...
Philip Bister
philip.bister@...
Send Email
Aug 1, 2006
12:17 pm
10451
Was wondering, is there a way to get LBOUND, UBOUND to work with array/object pointers? Eg. I am attempting to pass an array to a Function. Then I wish to loop...
enpsuedo
Offline Send Email
Aug 2, 2006
10:17 am
10452
... Yes, please try the following which may be used anywhere (main program -- not necessary -- or in a procedure): defint lb,ub 'lower/upper bound ...
doctor electron
globalservices1
Offline Send Email
Aug 2, 2006
2:21 pm
10453
Needed instr and other functions which acts on the file position e.g. name.loadfromfile(..) mypointer=instr(name,"check") now nice would be if you set ...
chordnl
Offline Send Email
Aug 4, 2006
7:35 pm
10454
... If the start point is omitted from instr(), it is assigned the value of 1. Position cursor at "instr" and press F1 for details. cheers, j...
doctor electron
globalservices1
Offline Send Email
Aug 4, 2006
7:51 pm
10455
oops, had to RTFM grCor ... the...
chordnl
Offline Send Email
Aug 4, 2006
8:10 pm
10456
Is it possible to add a html file as a resource and then load it programmatically in a string grCor...
chordnl
Offline Send Email
Aug 5, 2006
12:02 pm
10457
After loading: mystring.loadfromfile("myhtml.html") mystring.additems "test" "test" will start at first line and overwriting the other lines I thought that...
chordnl
Offline Send Email
Aug 5, 2006
1:31 pm
10458
Found it: $resource "tplate" as "template.html" template.ExtractRes "tplate" grCor...
chordnl
Offline Send Email
Aug 5, 2006
1:36 pm
10459
If I use : $resource "tplate" as "template.html" template.ExtractRes "tplate" then template.additems is working well seems to be a problem with the pointer. ...
chordnl
Offline Send Email
Aug 5, 2006
1:40 pm
10460
... Correct. mystring.position will equal zero after .LoadFromFile; .LoadFromFile is a generic file-to-ram_stream method, and sets stream .Position to 0. ... ...
doctor electron
globalservices1
Offline Send Email
Aug 5, 2006
2:06 pm
10461
... Yes, the .ExtractRes method sets template.Position = tamplate.Length, as required for LIST methods, just like this statement: template=a$ The "usual"...
doctor electron
globalservices1
Offline Send Email
Aug 5, 2006
3:02 pm
10462
Tried everything to get shell1 to work, but it didn't work correctly Used instead API shellexecute, and it works ok. Declare Function ShellExecute Lib...
chordnl
Offline Send Email
Aug 6, 2006
12:40 am
10463
... SHELL1 runs a program at higher priority and should be used sparingly, and probably not at all for programs that have windowed displays. I use SHELL1 for...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2006
1:14 am
10464
Hi guys, need some help from printing experts. I want to print a list in "landscape", but don't get it to work. Programm is working, but print-output is in...
-Alex-
fconx_aho
Offline Send Email
Aug 7, 2006
8:19 am
10465
Does anyone know if it's possible to add a file level to the treeview object, it only shows folders today (hottree.bas in hottoys)? /Fredrik...
fredriknorling2003
fredriknorli...
Offline Send Email
Aug 9, 2006
7:57 pm
10466
... Hi, Fredrik. hottree.bas shows that any item can be child of any other item -- forming, as you know, a ... tree. Under a directory item, therefore, you...
doctor electron
globalservices1
Offline Send Email
Aug 9, 2006
10:19 pm
10468
if I have a type type xyz High as long Low as long end type and I want to use XYZ in another type like this type yzx start as xyz end as long end type Then I...
fredriknorling2003
fredriknorli...
Offline Send Email
Aug 11, 2006
9:42 pm
10469
... Enumerate it: type yzx 'type xyz High as long Low as long 'end xyz end as long end type Other examples: 1. The type in RichEd2.inc contains the following...
doctor electron
globalservices1
Offline Send Email
Aug 11, 2006
10:15 pm
10470
... I think prt.Execute creates a PRINTER device context which is used in the printing; which suggest your statements are out of order [changing .Orientation...
doctor electron
globalservices1
Offline Send Email
Aug 11, 2006
11:58 pm
10471
... Sorry, HB internal variable (which can be used in code) for the PRINTER Object is hbPrinter. Think of hbDC more as a scratch variable which is used at the...
doctor electron
globalservices1
Offline Send Email
Aug 12, 2006
12:43 am
10472
I am writing a program that uses the Ghostscript DLL. With Ghostscript the install directory where the DLL is located is different for each version of...
tcslonaker
Offline Send Email
Aug 12, 2006
1:24 am
10473
Great, but if the type holds an array of another type? Type LUID LowPart As Long HighPart As Long End Type Type LUID_AND_ATTRIBUTES pLuid As LUID Attributes As...
fredriknorling2003
fredriknorli...
Offline Send Email
Aug 12, 2006
4:34 am
10474
... That sounds fun! Let's do it. May I assume you will use the address of a TOKEN_PRIVILEGES structure for an API call to either get or set the data and you...
doctor electron
globalservices1
Offline Send Email
Aug 12, 2006
5:49 am
10475
... Right. prt.Execute creates a PRINTER.DC and fills the DevMode- Structure with the printer default settings. (In my case - Orientation = 1 'Portrait) After...
-Alex-
fconx_aho
Offline Send Email
Aug 12, 2006
9:52 am
10476
... This is the problem -- cart before horse. Similar to a FONT object, (1) set properties and (2) create handle. You have the order reversed above. I think...
doctor electron
globalservices1
Offline Send Email
Aug 13, 2006
1:32 am
10477
Hi Jim, following a smal Tracer-programm where you can see different problems '-----Begin of code----- $APPTYPE CONSOLE $TYPECHECK ON $INCLUDE "PrintDev.inc" ...
-Alex-
fconx_aho
Offline Send Email
Aug 13, 2006
10:42 am
10478
... Right, my bad! HB's good: even with .DevMode = 0, we have no crash and the PRINTDLG data remains zero (uninitialized). A small victory for HB. Now,...
doctor electron
globalservices1
Offline Send Email
Aug 14, 2006
1:47 am
10479
... Another idea is to see if Ghostscript has any registry entry by running regedit > edit > find > "ghostscript". This may net you the directory from which...
doctor electron
globalservices1
Offline Send Email
Aug 14, 2006
3:51 am
10480
... [DECLARE statements are hard-wired with given .dll pathnames at compile-time; so at present the only solution is to be sure your app finds the .dll at...
doctor electron
globalservices1
Offline Send Email
Aug 14, 2006
4:05 am
Messages 10450 - 10480 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