Delphi
Delphi is a software development package created by Borland.
Application
Computer Science
Remove
Platform
Any
License
Any
I have username and password of another pc and I want to connect to that pc from my pc. How can I do this by programming c# or vb.net or Delphi
What do you mean exactly?
if i understood correctly, you can use WM as well.
there is also E_Book about it. i have it. call me know if u want.
7007.saeed@Gmail.com
You assign the method you want to fire to the event handler that you want to trigger it. example.
MyButton1.OnClick := HandleButton1OnClick;
I need book about Delphi programing, thanks!
Greetings
I've used your code. Thank you.
But when I want to throw in the database gives the error.
If may help.
with dbf do
begin
TableName:=path + 'myfile.dbf';
Open;...
This happens when there is a problem communicating with the server, most likely the server is in-accessible. Unfortunately, that popup error message is nearly permanent, the error event doesn't catch...
I got it right by using a TComponentList. Relatively easy.
if (Sender is TManyShape) then
begin
pointer := ComponentList1.IndexOf(ManyShape);
ManyShape:= TManyShape(ComponentList1);...
Help File). Can any one give me an idea as to how to link my help file to my application.
I've fixed my own problem. I had declared DEV_BROADCAST_HANDLE in an incorrect way.
This is the correct declaration:
PDEV_BROADCAST_HANDLE = ^DEV_BROADCAST_HANDLE;
_DEV_BROADCAST_HANDLE =...
This code for determining the maximum value of array of integers
seems like, it's just counting the sum of the Input array in a complicated way... x always 0, y = length(input)-1, z = sum(input)...
I don't know what the purpose of this code...
Hi all,
I have a string grid component in my code. I want the string grid cells to be copied to clip board. I select a cell and when i press 'CTRL+A' all the cells of the string grid should be...
Hi,
So i have a texfile which is just full of random stuff and i need to change a few things in it. But, the tricky part is i want to create a program to do it and to use two variables (two things i...
Quite good directory treeview tool called print directory not a freeware but affortable.
Hi,
Would any one know how I can create a .torrent file from Delphi.
Thanks in advance
Kyle
i have thread in my program , it is running continuously for infinite
time . but it needs to be free when application is closed.
but when i am freeing the thread on form close event ,it is giving...