if you'd like a reference book, try "TURBO PASCAL 7" i think you can get it from amazon.com if you want an online one, i'm not sure of the addy, but it's on my...
you mean BMP displaying unit?<br>if yes, then I can send you one, but its can show<br>only 16 colour pics...<br><br>If you are interested, send an email ...
Does anyone know how to dynamically add fields to a client dataset at runtime using code? I have always defined these in the design time IDE. But I'm sure it...
Hey avdio,<br>I'm not the best person to be helping. I haven't used blockread/write as often as I should.<br>But I like helping so here goes nothing.<br>If...
I am currently on schedual to finish a minor assignment, I have written a program to act like the lottery machines, on lucky dip, when enter is pressed it...
You ever forget how to use a command? I've been using pointers for y graphic lib. for a while, but I forgot how to use them "normaly"<br>Like, say I have a ...
Hey Ozzy<br>If it helps I know ABSOLUTLY NOTHING about pointers.<br>but we will have a go ne way<br><br>TYPE<br>any = RECORD<br>x:byte; {just for the hell of ...
ass far as i know:<br><br>type panything=^anything;<br>type anything=record<br> truefalse:boolean;<br> end;<br><br>var mypointer:PAnything;<br><br>procedure ...
hy<br>I heve a simple question: How I move the icon from an application from the taskbar to the trybar, using Delphi.<br><br>That's all.<br>See u<br>Peter....
hello, <br><br>i would like to assign a bmp or any other picture file in pascal. <br><br>Does anyone has a simple procedure, or unit on how i can show bmp,...
Hey All,<br>Why can't I read the previous three messages?<br>This is actually more of a test because my last post was no. 579 and I wanna see where this...
Hey Peter<br>at Coder's Knowledge Base at <a href=http://www.netalive.org/ckb/ target=new>http://www.netalive.org/ckb/</a><br>got to ckb/delphi/window...
I have Turbo Pascal for windows, which has never run very well on either my Win98 or Win2000 machines, The main thing that i havent been able to get to work is...
I have programmed in Pascal for about 3 years before starting (practically) all at once with VB, C++ and assembly. I want to learn Delphi also - I heard ...
Hey Moebius2day<br>Since I have nothing better to do and you are also south african I'll tell you what I know.<br>It will be a short post.<br><br>As far as I...
Hi all,<br><br>I am looking for a way to pass the address of a member of a record type to a function. I have an array of char in a record and I would like to ...
Make sure that your array starts with 0.<br><br>For example:<br><br>MyRec = Record<br> MyArrayOfChar: Array[0..20] Of Char<br> End;<br><br>If your array is...
I didn't know that one, I'll try it. BTW, I have found another function that returns the address of its parameter. As an example, Addr( MyRecord.MyMember) will...
Hi All,<br>I was looking at Delphi today.<br>I had a Timage box and I was loading images from a file.<br>Now either I did something wrong or it doesn't load ...
Craig, you need to manually add the jpeg component into Delphi and to the uses field. Borland supplied this component but did not install it.<br><br>Allen....