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. MelodyRogueAngel

    Assigning a host to idSMTP

    Hi I know this piece of programming works and that when I haven't declared my idSMTP.Host it gives me "Protect Guide.exe raised exception class EIdSocketError with message 'Socket Error #10061", so I have gathered a bunch of hosts and made an IF to support each host (it depends on the sender...
  2. MelodyRogueAngel

    Connecting a variable to a ADOQuery.SQL.Text (Access)

    Thanx it worked like a charm!
  3. MelodyRogueAngel

    Piano with multiple sound options (Array?)

    I thinck it is possible by creating 3 differnt arrays - 1 for the piano sound (under Type: Piano = Array [1..25] of string; then under global var: arrPiano : Piano;) - 1 for the trumpet (under Type: Trumpet = Array [1..25] of String; then under global var: arrTrumpet ...
  4. MelodyRogueAngel

    Connection not reconnecting after disconnection to DB

    Oh yeah, just check the >'Open'; just specify what should open I didn't do that.
  5. MelodyRogueAngel

    Connection not reconnecting after disconnection to DB

    Hi I'm not sure if it would work, but try it! - Add a variabl (global) -- Var -- iTimer : Integer; - Add a timer -program for timer is as follows --... -- inc(iTimer); -- when iTimer = 120 -- Do -- Open; --... > procedure TfrmMainDataMod.ResetConnection; > begin >...
  6. MelodyRogueAngel

    Help to create buttons - beginner

    - For example your table has foloowing fields (Tabel name is Music) : Title_OF_CD , Artist , Genre & Price For your 'Insert Button' you want to insert a new record you would do the following : Insert Into Music 'Believe','Justin Bieber','Pop','$10'; it follows this...
  7. MelodyRogueAngel

    Connecting a variable to a ADOQuery.SQL.Text (Access)

    Hi how do you connect a certain ADOQuery.SQL.Text value to a variable? Here's an example however it's wrong: ... Var sAnimal, sNumber : String; ... sNumber := edtNumber.text; sAnimal := ADOQuery.SQL.Text := 'Select Name_Of_Animal From Animals Where Number = ' + sNumber; ...

Part and Inventory Search

Back
Top