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 Wanet Telecoms Ltd 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
  • Content: Threads
  • 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

    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))...
  5. 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!
  6. 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!
  7. 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...
  8. 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"...
  9. 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!
  10. 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 -...
  11. 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!
  12. PaidtheUmpire

    Getting Data Out Of Columns

    Hey, I have data in the following format, in a MEMO box. 10-10-2005 05:00:00, 125.001, -15.152, 0 10-10-2005 09:00:00, 125.486, -15.152, 0 10-10-2005 13:00:00, 125.123, -15.182, 0... Is there a way of easily getting out the data from a row, to calculate the high and low values in each...
  13. PaidtheUmpire

    Replacing space in a MemoBox

    Heya Guys, I have a memo box which has the following data... 115.487055 -31.568225 20 115.487074 -31.568220 20 115.494912 -31.569628 20 115.495709 -31.569537 20 115.495694 -31.569488 20 115.49566 -31.569510 20 115.49565 -31.569579 20 115.495663 -31.569585 20 115.495733 -31.569651 20 115.49566...
  14. PaidtheUmpire

    Picture Scrolling

    Is there a way to get a Picture field (or something similar) to have a scroll-bar which allows a user to view the entire picture. I have a picture which can't fit into the area given to it, but i can't "stretch shrink" it, as it needs to be full size. Is there a way to be able to scroll from...
  15. PaidtheUmpire

    Viewing SWF in Delphi

    Is there a way of doing this? I'm trying to get a library of all the SWF files on my website and are having trouble to even start it :P Delphi, Delphi, Delphi. Oi! Oi! Oi!
  16. PaidtheUmpire

    Moving Multiple Items ListBox To ListBox

    I'm trying to do the following, if you have any exmaples of code OR any help at all... my thanks goes out to you. LISTBOX 1 ItemA ItemC ListBox2 ItemB ItemD ItemE ItemF What i want tobe able to do is move items from one listbox to the other, and then sorting the updated listboxs...
  17. PaidtheUmpire

    Compacting An Access Database Through Delphi

    Is there a way to compact an Access database like what happens when you exit Access itself? Delphi, Delphi, Delphi. Oi! Oi! Oi!
  18. PaidtheUmpire

    A Grid Of Selected And A Grid Of Unselected

    I am trying to get a pair of grids on my Delphi 7 program, one of which would have a list of all the items that a client can access his keycard. With the other grid showing all the items which the user can't access with his card. With a pair of buttons allow the user to move items from one grid...
  19. PaidtheUmpire

    Counting Number Of Files In Folder

    I have a large amount of files in a folder, and i was wondering is there a way to count the number of them in the folder. Any ideas? Delphi, Delphi, Delphi. Oi! Oi! Oi!
  20. PaidtheUmpire

    How many days are the items rented...

    I have a work-made rental system, and i am trying to get it to figure out how to do the following... The database looks like so... CLIENT CODE IN DATE OUT DATE INCOME David 6321 10/ 4/05 18/ 4/05 $150.00 Jason 6321 20/ 4/05 26/ 4/05 $ 60.00 Jason...

Part and Inventory Search

Back
Top