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 dencom 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: Bamben
  • Content: Threads
  • Order by date
  1. Bamben

    LOL flow chart!

    Thanks to roo for being a real good influence on me and recommending me to try this (although I don't think this is 'exactly' what he meant). I have made a flow chart of part of my application and It has made me realise some thing; I have a BUG!!! when ever my application Auto drops a call I've...
  2. Bamben

    ShellExecute (my program is minimised? why?)

    Does any one else have this happen to their applications when using ShellExecute? : my program will work fine but, It will be never show (always minimised). unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls...
  3. Bamben

    integer = two separate numbers?

    Is there any way to make an integer two or more separate numbers at the same time? mydogs:array[0..9] of dogs; i:=1,2,3; myvoice.sit(mydogs[i]); .............................................................. procedure TMainForm.xHold; begin if N = 1 then begin T := 0...
  4. Bamben

    if then else

    I have been working all day and now it is 3:38 AM and still I am faced by the very problem I tried to get around at first. Let me try to explain: I have built a program to call a phone line, some times the call drops so I have made a procedure which checks if the call is active or not. //this...
  5. Bamben

    array (tiny problem)

    I have 2 arrays... apple : fruit; Pack:array[1..5] of fruit; BOX:array[1..10] of fruit; I have finished all the code for a small program dealing with these arrays, but...I get an error saying Undeclared Identifier 'i' (note that the error is only coming up for the 'i' used on...
  6. Bamben

    Wahoo!! I've Learnt to count to ten, all on my own...

    unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Label1: TLabel; Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public...
  7. Bamben

    mystery code

    I am very confused about what is going on here but I have had a good look at it and a attempt to translate or decipher what is happening... 'i' counts the length of the AddPIN text 'b' is a var of the whole form. what's it doing at the end of this code?: DTMF(copy(addPIN.text,i,1),b); I...
  8. Bamben

    Wav TMediaPlayer Indevice

    How do you play sound with TMediaPlayer to the InDevice ?(into microphone)
  9. Bamben

    AutoExpand TreeView ?

    I am having real problems with getting a TreeNode to be expanded on startup of my exe. I have managed to make it never collapse after you have expanded it manually... procedure TMainForm.TreeViewCollapsing(Sender: TObject; Node: TTreeNode; var AllowCollapse: Boolean); begin AllowCollapse...
  10. Bamben

    is the TTimer what I need??

    I have been learning delphi for 1 week now and I am trying to get further in my learning of Delphi, I have a large script that I am studying... so far I have learned to write data to an ini file, read data from and ini file, make an array, make a button do a procedure, I can do quite a few...

Part and Inventory Search

Back
Top