Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: PaidtheUmpire
  • Order by date
  1. PaidtheUmpire

    Creating a DLL

    I have a program which collects text from a file, and then reformats the data in the file to create a different file. What i want to do is to make this into a DLL file so i can run it through a website. Any ideas? Delphi, Delphi, Delphi. Oi! Oi! Oi!
  2. PaidtheUmpire

    Copying fields in Excel

    Hey guys, I haven't used VB in a while so I'm going ask for some help a roo. When you click the button, it see if the field selected has the value "Here" and if so it will go down a copy of cells and copy then to a lower location. For example: Cell Selected: B93 = "HERE" Click button. As B93...
  3. PaidtheUmpire

    Copying Excel Fields

    Hey guys, I haven't used VB in a while so I'm going ask for some help a roo. When you click the button, it see if the field selected has the value "Here" and if so it will go down a copy of cells and copy then to a lower location. For example: Cell Selected: B93 = "HERE" Click button. As B93...
  4. PaidtheUmpire

    Closing A Program after Create

    Thanks, Exactly right. Delphi, Delphi, Delphi. Oi! Oi! Oi!
  5. PaidtheUmpire

    Closing A Program after Create

    What i want to do is once a user starts up the program... it does the procedures it is supoosed to and then it i'll close itself. procedure TForm1.FormCreate(Sender: TObject); begin if paramcount > 0 then begin FileInput.Clear; FileInput.Lines.LoadFromFile(paramstr(1))...
  6. PaidtheUmpire

    Calling A File When Opening Program...

    Thank you, You are my hero! Delphi, Delphi, Delphi. Oi! Oi! Oi!
  7. PaidtheUmpire

    Zipping A File then Renaming it...

    Is it possible to do the following through Delphi 7. 1) Zip a file to a .zip file. AutoGen.txt ----> AutoGen.zip 2) Rename the zip file to a different type. AutoGen.zip --> AutoGen.ptu Any ideas? Thanks for any help. Paid The Umpire Delphi, Delphi, Delphi. Oi! Oi! Oi!
  8. PaidtheUmpire

    Calling A File When Opening Program...

    Is there a way for Delphi to call a file while being openned? Like this: DelphiProg.exe DataFile.csv Which would open the Delphi Program, while opening the second file "DataFile.csv" into a MemoBox in the Program? Thanks for any help. Paid The Umpire Delphi, Delphi, Delphi. Oi! Oi! Oi!
  9. PaidtheUmpire

    Running A Program From A Webpage

    How it would work for a client. Load site inside a browser (IE or Firefox). Select the dates they want the data for, and then click "CREATE KML" button. A file would then be autogenerated and avaiable for download from the browser. How I think it could really work. User clicks button. CSV file...
  10. PaidtheUmpire

    Running A Program From A Webpage

    Thanks for any help given, This is what i want to happen: A user clicks a button and behind the seens a large about of data in the form of a CSV file is generated (AutoGen.csv) This new data is then put into a MemoBox in a Delphi program which then runs and an output file is created...
  11. PaidtheUmpire

    print rave report

    Finally a question I can help with... Part 1- RaveReportThingy.Execute What i do is the following: When i only want one "record" to be on the RAVE report, the best way of doing it to create a ADOQuery and then have the output of the query being filtered into Rave through a RaveDataSet...
  12. PaidtheUmpire

    Getting data out of a memo field

    BobbaFet... a quick question about your code: Why does the lines: startPos := Pos('lat="',Memo1.Text) + 5; startPos := Pos('lon="',Memo1.Text) + 5; startPos := Pos('<name>',Memo1.Text) + 6; have the "+5" or "+6" at the end of it? Delphi, Delphi, Delphi. Oi! Oi! Oi!
  13. PaidtheUmpire

    Getting data out of a memo field

    I thank those whom help me out greatly. :P Anyways... i have text that is coming into a memo field like so... ... <extensions> <gpxx:WaypointExtension xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
  14. PaidtheUmpire

    Putting A Table's Worth Data Via Excel...

    Anybody? Got any ideas? I just want to be able to copy multiple cells in excel and paste them into a Delphi table. Delphi, Delphi, Delphi. Oi! Oi! Oi!
  15. PaidtheUmpire

    How to do a Case Statement for TEXT values...

    Thanks, Pity i'm using Delphi 7 then huh :P Thanks again... Delphi, Delphi, Delphi. Oi! Oi! Oi!
  16. PaidtheUmpire

    Allowing all types of images...

    I'm using Delphi 7 but i am having trouble trying to view JPEG's and PNG's in my program... Is there an easy way to allow them to be seen? Thanks, Delphi, Delphi, Delphi. Oi! Oi! Oi!
  17. PaidtheUmpire

    How to do a Case Statement for TEXT values...

    I want to create a "case"-like statement which would look something like this... <code>Case OutputType.Text if 'KML - GoogleEarth' : GoogleEarthLine; 'XXX - Other' : OtherLine;</code> Otherwise i might need a large amount of the following... <code>If OutputType.Text = 'KML -...
  18. PaidtheUmpire

    Putting A Table's Worth Data Via Excel...

    Is there a nice simple way for a person to copy data (for example a 4x6 table) from an Excel spreadsheet and then paste it into a similar table layout in Delphi 7? Is there a handy little new Table kind of add-on? Any helps would be most well helpful... :P Delphi, Delphi, Delphi. Oi! Oi! Oi!
  19. PaidtheUmpire

    Getting Data Out Of Columns

    Thanks, I found the mistake and this post just confirmed what i thought it was. Thanks anyways. :P PTU Delphi, Delphi, Delphi. Oi! Oi! Oi!
  20. PaidtheUmpire

    Getting Data Out Of Columns

    Thanks for that, I'm having a bit of trouble with your code though, could you see if you find what i'm doing wrong. sCurrLine := Memo1.Lines.Strings[a]; // current line to play with nComma := PosEx(',',sCurrLine,1); Column1 := copy(Memo1.Lines.Strings[a], 1, nComma - 1); // first string...

Part and Inventory Search

Back
Top