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: *

  1. draakans

    Read Java script values with Delphi

    Hey guys, Is it possible to run a delphi program and read a value that is written on a Java Script page? To make it clear, my job system is using an Java Script page and I'd like to read values in the page when I press the "Save" buttons. Those are basically hours I've work. I have to...
  2. draakans

    Delphi joystick control

    Maybe you could try to add a Joystick component? http://www.programmersheaven.com/download/16312/download.aspx I never tried it either though.
  3. draakans

    On click procedure

    well I figured out both ways. It brought me back to an older program that I wanted to modify soon. I read TCheckListBox.Items on an IniFile, when the item is checked it enabled an TEdit associated to it. And I was wondering how could I make the user able add new Items codes. First, I thought...
  4. draakans

    Probably an easy question about function.

    Yeah I think that will do the work properly! :) Thanks a lot to all of you guys. These are great ideas. I think you can mark this thread as Solved.
  5. draakans

    On click procedure

    Well, I mean I will still use the "View as form" but I'll have to make my own properties. I can't drop CheckBoxes on the form and put them in array after. Sorry it wasn't clear.
  6. draakans

    Using Delphi and a dial-up modem, to dial several numbers.

    I red some pages, but the pdf file as around 260 pages. I ll read it more carefully.
  7. draakans

    On click procedure

    Wow thanks a lot. To make it interact with Edit Boxes, I guess I'll have to make it as an array of TCheckBox and an array of TEdit right? For example, to put an edit box enable when a checkbox is checked, full unit would be smth like: I can't create an array of Tbutton, Tcheckbox, TEdit [...]...
  8. draakans

    On click procedure

    Hello again, is it possible to make a procedure with this: procedure TForm1.Button1Click(Sender: TObject); begin EditBox1.enabled := FALSE: end; procedure TForm1.Button2Click(Sender: TObject); begin EditBox2.enabled := FALSE: end procedure TForm1.Button3Click(Sender...
  9. draakans

    Probably an easy question about function.

    Thanks for you reply. I don't understand how to do the : GetTextBoxTextFromTag function. I gave the tag value to each text boxes as you said. But I don't know how to call a brilliant function using it. I mean, I can't use "PR+IntToStr(tag).text" since it's an EditBox.
  10. draakans

    Probably an easy question about function.

    Hello, I have a question that should be easy for most of you guys. I'm not well experienced with Delphi and I need to know a way to make a function out of this: If (Checklistbox1.Checked[0]) then begin if (StrIsDigit(Pr01.Text, Pr01.GetTextLen)) then MainIni.WriteString('PRISES', 'PR01'...
  11. draakans

    Using Delphi and a dial-up modem, to dial several numbers.

    Hey, thank again for your reply :) First I just notice I didn't put 'ATZ' 1st. I tried with It and it doesn't want to dial at all. I add to set ComPort to 3 cause it wasn't able to auto-detect it. I guess since ATZ is reset it might be resetting the ComPort value to 0 (which is auto-detect)...
  12. draakans

    Using Delphi and a dial-up modem, to dial several numbers.

    Hey, thanks for your reply. It looks like the company I'm working with is still in the 90's lol. There's a way to do order via Internet but they don't want to allow it. They say we would order to many things. But that's another story. So I've installed AsyncPro which is great. But it gives the...
  13. draakans

    Using Delphi and a dial-up modem, to dial several numbers.

    Hello, I'm using Delphi for few years but I've been doing some really basics stuff yet. Actually, I'm working on a program with Delphi 7. Basically, it's a program to make orders. There is a phone system where you have to dial all items manually. I want to use my dial-up modem to make it...

Part and Inventory Search

Back
Top