2,103 Topics
![]() | |
First of all please visit [url]www.flightemotion.com/prod01.html[/url] to know what we are speaking. We have finishe to develop the system BUT our software partner fail because health problems. We have now only manual software to move the motors. We have also some work done until now in Delphi and c++. We … | |
I’m trying to find out if either VB6 or Delphi could be used to make a simple dialer for Windows XP. A dialer my friend made in VB5 works on NT, but not on XP. By a simple dialer, I mean one that I can use to read a single … | |
Hi, simple question but maybe with an advanced answer: [B]How do I get Dev-Pascal to read other files?[/B] [B][U]Example[/U][/B] I've tried to make a variable and make it as a text for example ([B]var[/B] test:text;) and then assign(text,'textfile.txt'); but then I want pascal to read it and open it in … | |
how to change RGB to grayscale image processing with delphi?? please give me a source code with delphi programming. thanks :) | |
i have to do a seven segemtn display for 2 numbers but at the moment it looks like this:- [url]http://i28.tinypic.com/a176ep.jpg[/url] but i want the 1 and 3 to be next to each other but i cannot seen to do this here is my pascal:- [CODE]Program sevensegmentdigit; Uses Wincrt; Var x,y,n1,n2 … | |
well i have been told to write a 7 segmet display so when i type in a number the numbers 'convert' and output to a seven segment display basically from 8 to this:- _ |_| |_| like in petrol stations does anyone know how i could do this, i have … | |
![]() | Hi, I am using this function: [CODE] function GetInetFile (const fileURL, FileName: String): boolean; const BufferSize = 1024; var hSession, hURL: HInternet; Buffer: array[1..BufferSize] of Byte; BufferLen: DWORD; f: File; sAppName: string; begin result := false; sAppName := ExtractFileName(Application.ExeName) ; hSession := InternetOpen(PChar(sAppName), INTERNET_OPEN_TYPE_PRECONFIG, nil, nil, 0) ; try hURL … ![]() |
hi, i have indy 10 installed on Delphi 7 personal, and am trying to load a simple text file on server using ftp here's my code [code] if ftp.Connected then ftp_Kitten.Disconnect; ftp.Host:='xxx'; ftp.Username:='xxx'; ftp.Password:='xxx'; ftp.Port := 21; ftp.Connect; ftp.Put('c:\ida.txt', 'ida.txt', true); ftp.Disconnect; [/code] and when i run my app, i … | |
Dear Sir/Madam, I’m author of a video game called “Poppy And Rose”. I have made this game in the program language Delphi6, the game belongs in the “puzzle” tip and it is with logical elements. I think that my game with a little adjustment it can attract bigger attention, but … ![]() | |
I have a petrol pump simulator system and the Price Per Litre is entered through an Edit box and then the Images for each digit is displayed in an Imagebox. That part works fine, but however eachtime the application is closed the Price per litre is reset and It has … | |
hey guys... here's my question i have to read a text file and find some key words in it .... i know i cannot have a set of strings, and i know everytime i find a word i can check the word with a linklist or an array of strings.......... … | |
![]() | Hi, I've got really strange problem. I am using this function [CODE] function Download.GetInetFile(const fURL, FileName: String):boolean; const BufferSize = 1024; var hSession, hURL: HInternet; Buffer: array[1..BufferSize] of Byte; BufferLen: DWORD; f: File; sAppName: string; r:boolean; begin r:=false; if Agent = '' then Agent := 'Server Status Controller, Matej Tomcik … |
Hello folks, just introducing myself. I'm Rob. I'm 35. I am the network administrator of a Fencing Company in Maryland. I amalso the go to guy for anything tech related at the company. I have a little bit of a background in programming (VB, Pascal, BASIC). I know a little … | |
hey guys does anybody know how to use the unit graph if youre using windows vista? because when you do any error comes up saying that the system can not go fulscreen. | |
Hi there I'm currently using delphi 7 and I need to query a database and based on the database results I need to create a PDF file and email it through using delphi code but the problem is that I want to create the file(PDF) programmatically. How can I do … | |
I wrote a program to hash logon id as a hash value is required to logon. The problem am having is that the hash value am getting is wrong for some reason. (Confirmed the correct hash value on a sha1 hashing website. This logs me on fine). Please have a … | |
Dear Sir/Madam, I’m author of a video game called “Poppy And Rose”. I have made this game in the program language Delphi6, the game belongs in the “puzzle” tip and it is with logical elements. I think that my game with a little adjustment it can attract bigger attention, but … | |
I am working on a petrol pump display, I have read the sticky on homework help and therefore understand and will appreciate all the help that is given to me. Basically when the Nozzle button is pressed I want it to start dispencing the petrol so the litres dispensed will … | |
hey, im really struggling displaying the maximum value in this array, i have managed to get the average and etc but getting it to display the maximum and minimum value in the array is proving to be hard can anyone help? heres what i have so far Program arrayz; uses … | |
![]() | Hi, I need to resolve this problem: Is there any way, how to replace currently runned application with a new version? Like through uninstallation, when uninstall.exe is removed by itself. I have dialog with AutoUpdate in my application. It's small application so I don't want to make another autoupdate.exe file. … ![]() |
Dear All I want to Drag and Drop sum objects at Run time. For example I have som buttons, Edits, ... On a form and I want that (after runing the program) I can to Changing their Position By Drag and Drop opration. Please Help me Thanks alot. H.Fayyaz | |
Can anyone help here? I need to create a PDF file in delphi(Programmatically) without using a third party software so i don't know where that is that possible or what if not wish component can I use for this? | |
Hey guys, I study computer science (1st year) and I have an exam after tomorrow but there's one exercise with the linked lists that is impossible for me. [COLOR="Green"][B]Supposing that we have 2 created linked lists, let's create a third one that has the elements of the previous 2, but … | |
I have designed the next program. It is the catalogue of a library. The problem is that if I want to find the book "the new world war" the program also finds other books (being the tiltle completely diferent). I want to modificate the code so that if I introduce … | |
Please you clever guys. I have an old Delphi and get "Code segment too large" when I try to run my program. I don´t even know how I can use "Code segments". After using built in help I tried to insert {$S 50000} in the source code, but with same … | |
Well, if I introduce the date 29/01/2008 in the next code, a window appears with the message "Proyect project1.exe raised exception class EconvertError with message “2008/01/29’ is not a valid date’. Process stopped . Use Step or Run to continue." [ICODE]repeat writeln(' Introduce the day'); readln(day1); until(day1>'0')and(day1<'32'); repeat writeln(' Introduce … | |
![]() | Hi, I have some problem with my application and I've tried anything possible that is possible for me. This is the code: [CODE] type DownloadCategory = class(TThread) private LibHandle: Thandle; protected //none public URL: string; procedure Start; procedure Stop; end; implementation procedure DownloadCategory.Start; var GetHTTPResponse: function (url: PChar; var resp: … |
I have a set of scores (3), where i have found the average of each. I am not sure how tu turn this score into a percentage. example Child 1 scores: 3 out of 10 on test one 7 out of 10 on test two 8 out of 10 on … | |
I am able to call masm assembler object from delphi. ( 1995 version). On compillation (with delphi) I try to call object code generated by ms-pascal 3.31, and get compiler error #51 Invalid PUBLIC Definition. I use the line {$L filename.obj} in the delphi code. How do I maake the … | |
Hello! I'm new to the DaniWeb, so I'm not sure what I'm allowed to ask, and I don't have enough time to search for all rules right now. I have to write a program for tomorrow, otherwise I won't be able to pass the year. It's a bit difficult to … | |
I store in an image in a RES file. Because it is so large, I first convert it from a BMP to a JPG. Then I load the JPG from the RES file, convert it to a BMP, and can now manipulate the image on a pixel by pixel basis. … | |
Hi everyone :o) I have one LITTLE problem. I install two set of components in Delphi7 IDE, Zeos and Apro component (Zeos for InterBase/FireBird, and Apro for ComPort communication). And everything was looking fine. But where I try to compile my project with CrossKylix compiler integrated in Delphi7, i have … | |
I'm using Turbo Delphi 2006. I want to write a program for a data projector. I saw another program (something really different that I want to write) that let you choose what you want to show through the data projector. In other words what you see on the pc screen, … | |
Hi all Its a while i have been searching net for some information about supporting Bluetooth in Delphi application,but i have not found much. Is there anyone who can help me with that? I would verry much appreciate that .:) | |
Curently I'm searching gxoutlook package for delphi 5. anybody have this? | |
ok so basically I am writing a small program that does a few different things in Delphi 2007. I am very new to coding and so I hope that my terminology will be up to par. If not, please forgive me. I am loading text files into a ListView... I … | |
Using Delphi 6. Have a program that I have been working on for some weeks. It has one Unit. Recently, I made a modification (code change - what, I don't remember) and now I get the "The Disassembly pane", titled "CPU" to pop up. Lots of hex values, machine code, … | |
Hi. My Delphi 2007 Pro is closing by itself with no error message or any other sign. [B]Apparently [/B] it started after I installed Quickreport but I can't affirm it. The last time it closed in a project with no Quickreport forms. I'm using Win XP SP2 with 1GB. Has … | |
Hello, I'm looking for the about using USB port with a Microchip microcontroller, and I don't know what to do. I already did something similar with the RS232 serial port and worked. | |
Hello DaniWeb. I'm new to this site and will just have to say some words before asking my question. I'm Loyen and I am 14 years old and lives in Sweden. I've just started on an upper secondary school about IT and there I'm going one class that's called "programming" … | |
hi, after some search with google, i can't seem to find a proper tutorial on how to create help files in delphi applications. I have no prior experience in creating help files in any client based applications, i was wondering if delphi ide itself has these components for me to … | |
The question frequently comes up on how to manipulate dates and time using Delphi. Delphi 2.0 and later supply the [B]TDateTime[/B] format, which is actually a floating point number (stored as a IEEE double) containing the number of days that have passed since 12 December 1899. (Delphi 1.0 calculated the … | |
Hi If I am asking the name and identification number like [TEX] write(' Introduce your name: '); readln(name); write(' Introduce your identification number: '); readln(ident);[/TEX] being name:string ident:integeer and a dull user comes and introduces as a name a number (or a string as identification number) the program stops. How … | |
i'm not sure if i'm getting this right, but i still remember java allowing me to cast an object to another type as long as their ancestors are the same? I can't seem to do this in delphi, the compiler doesn't seem to understand the methods and attributes of each … | |
This is a 3DS max loader in Delphi6. The program always end with an access violation in memory, somwhere in the T3DObject.Create section, when it is called from an another class. (first occur in TChunk.Load3Data when AddObject is called) Why? How can it be solved? [ICODE]unit Unit3DS_11; interface uses Windows, … | |
Hi I want to read a pascal file a find a certain word in that file. Thanks | |
hi, i want to write a pascal program. the program will input two roman numbers and an arithmetic operation and print out the result of the operation ,also as a roman number. thanks. | |
Firstly to tell that im glad to find your site. Thanks i've starting a new program and i need to backup my tables. so i tried the command [CODE]copyfile[/CODE] and [CODE]send to[/CODE] but it doesent work. so please help me. i need to save my db tables to another location … | |
The upper-left corner cell of a stringgrid has a blue background - I believe because it is selected. I don't want any cells "selected". The solutions to this problem that I've seen have the user modify the DrawCell procedure. But I'm using a TtntStringGrid component in order to get Unicode … | |
Hi. I'm starting to use clientdatasets after years with Zeos DBO and I'm facing some difficulties. I created a TSQLConnection, a TSqlDataset as a ctTable, a TDatasetProvider and a TClientdataset. I populated the clientdataset and tried an ApplyUpdates(0) to insert the records. But I'm getting a "cannot modify a read-only … |
The End.