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@...
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...
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 ...
After loading: mystring.loadfromfile("myhtml.html") mystring.additems "test" "test" will start at first line and overwriting the other lines I thought that...
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. ...
... Correct. mystring.position will equal zero after .LoadFromFile; .LoadFromFile is a generic file-to-ram_stream method, and sets stream .Position to 0. ... ...
... Yes, the .ExtractRes method sets template.Position = tamplate.Length, as required for LIST methods, just like this statement: template=a$ The "usual"...
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...
... 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...
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...
... 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...
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...
... 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...
... 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...
... 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...
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...
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...
... 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...
... Right. prt.Execute creates a PRINTER.DC and fills the DevMode- Structure with the printer default settings. (In my case - Orientation = 1 'Portrait) After...
... 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...
Hi Jim, following a smal Tracer-programm where you can see different problems '-----Begin of code----- $APPTYPE CONSOLE $TYPECHECK ON $INCLUDE "PrintDev.inc" ...
... 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,...
... 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...
... [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...