Forum: Pascal and Delphi May 23rd, 2006 |
| Replies: 0 Views: 2,183 Hey everyone
I'm just making an advanced version of notepad.
When you come accross a file that you haven't got a program assigned to that particular file extension, you can right click on the... |
Forum: Pascal and Delphi May 13th, 2006 |
| Replies: 4 Views: 30,744 |
Forum: Pascal and Delphi May 13th, 2006 |
| Replies: 4 Views: 30,744 To be more precise, I'm wanting a program that I can type some text into a textbox or memo, and then it displays that text in binary in another textbox/memo. |
Forum: Pascal and Delphi May 6th, 2006 |
| Replies: 2 Views: 4,117 I ment to ask hot to block all internet activity via delphi code - just like a lot of filewalls can. |
Forum: Pascal and Delphi May 3rd, 2006 |
| Replies: 2 Views: 4,117 Hi all,
Is it possible to block all internet traffic/activity like a firewall? If so how, could someone please help me?
Katrix36 |
Forum: Pascal and Delphi Apr 24th, 2006 |
| Replies: 1 Views: 6,812 Hey,
Heres some code to change the system time and date:
With the procedure SetDateTime you can set the date and time of the operating system, from within your Delphi application.
In the... |
Forum: Pascal and Delphi Apr 24th, 2006 |
| Replies: 4 Views: 30,744 Hey all,
Would anyone be able to help me out with some code to convert text into binary / binary into text?
Your help would be much appriated.
Katrix36 |
Forum: Pascal and Delphi Mar 31st, 2006 |
| Replies: 1 Views: 4,907 Hi all,
I have a listbox that displays a list records from a file. The records contain details about a film - title, certificate, genre, whether or not its rented out or in.
At the moment,... |
Forum: Pascal and Delphi Mar 3rd, 2006 |
| Replies: 2 Views: 10,369 Hey all,
Would anyone be able to help me out with some code to count how many characters there are in a string e.g.
A label disaplys the number of characters that the user has typed into a... |
Forum: Pascal and Delphi Feb 2nd, 2006 |
| Replies: 2 Views: 8,714 I have found a way on how to do above using the following code:
var
V: Variant;
begin
V := GetActiveOleObject('Word.Basic');
V.AppShow;
V.Insert('K');
Would anyone know how I would... |
Forum: Pascal and Delphi Jan 16th, 2006 |
| Replies: 0 Views: 3,141 Hey all,
I've built a database in delphi to store all the films that I own. I've added the ability to print the list out. At the moment when I print the list out it prints the list right up to... |
Forum: Pascal and Delphi Jan 15th, 2006 |
| Replies: 2 Views: 8,714 Hi all,
I'm trying to create an onscreen keyboard for Microsoft word. At the moment, my onscreen keyboard can send any keystroke to microsoft word as long as the document is called "Document1". ... |
Forum: Pascal and Delphi Jan 10th, 2006 |
| Replies: 5 Views: 7,607 Thank you for all your help |
Forum: Pascal and Delphi Jan 8th, 2006 |
| Replies: 1 Views: 4,576 Hi all,
I'm making a on-screen keyboard, for a group of disabled students. I've managed to complete the keyboard but i'm wanting to have an option to set the level of transparentcy. At the... |
Forum: Pascal and Delphi Jan 8th, 2006 |
| Replies: 5 Views: 7,607 Thank you for the code, but I have already tryed that. I'm wanting to on-screen keyboard to send a keystroke to a non-active window, just like the one built into windows xp. |
Forum: Pascal and Delphi Jan 7th, 2006 |
| Replies: 5 Views: 7,607 Hey,
I'm trying to create a on-screen keyboard for a group of disabled students at a school. So far i've managed to create the program to type out each letter/number that the user clicks on. ... |