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 TouchToneTommy 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. yomyom

    My program doesn`t work in the other computers.

    after installing bde....if you do not set alias, then set the databaseName property of your table to point directly at the file(alias is better; but this is faster!!!) e.g: table1.databaseName := 'C:\abc\mytable.db'; (its either called database or databasename ... i can't recall right now [I'm...
  2. yomyom

    What r ur views on swish

    All knowledge is valuable. Swish/swish max will always be a quicker way into programming in this area. If you are old enough to remember, while some people sweated over a really (deliberately) difficult prog called C; others were using dbase and fox and vb and getting results. Nowadays, the same...
  3. yomyom

    Shocking!!!!!!

    dear whorsrdaddy, I followed your instructions (twebBrowser.navigate ..etc), but only the swf files made with swish worked. The swf files made with macromedia flash are not playing. I even placed code in the onclick method of the player to check the frame number and it returns -1 for the films...
  4. yomyom

    macromed flash file not running in delphi

    Hi all, I'm a Delphi programer & I installed the tshockwave package from within delphi. When I run flash movies created with swish (trial version), they run just fine (i.e xyz.movie := 'ddd.swf'; xyz.play;). BUT when I try the same with .swf movies made with macromedia flash, the movies do not...
  5. yomyom

    What r ur views on swish

    Swish is not as powerful as flash. Swish max is trying to catchup. However, anyone can operate swish within 1 hr of contact with it. In fact, I've created movies I'll probably not be able to create with flash because of the steeper learning curve (of flash)and less user friendly work space of...
  6. yomyom

    Shocking!!!!!!

    Hi all, I installed the tshockwave package from within delphi. When I run flash movies created with swish (trial version), they run just fine (i.e xyz.movie := 'ddd.swf'; xyz.play;). BUT when I try the same with .swf movies made with macromedia flash, the movies do not appear to run, or atleast...
  7. yomyom

    send sms from delphi app to mobile phone

    Dear Delphi lovers, Can anyone reccommend a good & free (link to)a component for sending free sms from a delphi application to a mobile phone or any sms enabled device ? Your help will be greatly appreciated. Yomi.
  8. yomyom

    e-mail from delphi prog error

    Thank you very much for clarifying my problem for me. I'll obviously have to obtain an e-mail account. Thanks once again. Yomi.
  9. yomyom

    e-mail from delphi prog error

    I'm using the indy components as describe by zarko of aboutdelphi etc. I'm connected by lan to the nextwork of my local cyber cafe. I'm suspecting that perhaps I need to have a direct email account (with an ISP) on my own laptop. I'm not sure if my assumption is correct. Does anyone know? The...
  10. yomyom

    e-mail from delphi prog error

    Hi all,I'm trying to send email from my delphi program but I'm getting this error that I cannot resolve. Can anyone suggest what to do? Thanks inadvance Yomi. This is the error: ERROR: Socket Error # 10060 Connection timed out. Status: Not connected. Status: Disconnecting from 66.94.234.13...
  11. yomyom

    Integrating a document scanner

    Dear Delphites, How do I controll the scanner from my delphi program? I'm creating a document retrieval system. My prog needs me to be able to activate the scanner (in my office) from within my delphi program (I feel this will appear tidier than telling user to scan with say word or paint, then...
  12. yomyom

    BDE? ADO? ODBC? other?

    Ado
  13. yomyom

    (delphi)how to stop a timer on countdown using a FOR-method ?

    check if xyz.count is zero delimited i.e the first value starts with zero. If this is the case then you need to check for when value reaches 1 i.e 0 to 9 = 10 iterations when you view zero as the first iteration (first time round in the for loop)
  14. yomyom

    ListBox --> ComboBox

    It seems to me that combobox2 will take values from table3 which has info about players with 1 named as captain. We could use select captain from players where team = 'Liverpool' as a query. This query would then be added to the listbox by creating a query3captain variable. right click query3...
  15. yomyom

    Getting a database field into a combobox and a listbox through ADO

    Yes there is. I don't fully understand your question so send your requirements and i'll assist you with the code (set you on the way). yomi.
  16. yomyom

    Getting a database field into a combobox and a listbox through ADO

    Code should read something like this: You may create a stringlist, and then just assign the combobox items to the list. You may also perform it manually thus: begin var k: integer; //set to first record by useing open or first method of //adoquery1 adoquery1.open; adoquery2.open; . . . //add...
  17. yomyom

    Getting a database field into a combobox and a listbox through ADO

    You may create a stringlist, and then just assign the combobox items to the list. You may also perform it manually thus: begin var k: integer; //set to first record by useing open or first method of //adoquery1 adoquery1.open; adoquery2.open; . . . //add teams to combobox1 from adoquery1...
  18. yomyom

    Getting a database field into a combobox and a listbox through ADO

    You may create a stringlist, and then just assign the combobox items to the list. You may also perform it manually thus: begin var k: integer; //set to first record by useing open or first method of //adoquery1 adoquery1.open; adoquery2.open; . . . //add teams to combobox1 from adoquery1...
  19. yomyom

    User liscence

    Great link. 10 stars for U!!!! Is it free to use? I've only read the manual and it looks like a great set of components. I hope its free to use. Thanks. Yomi.
  20. yomyom

    User liscence

    Can anyone suggest how to implement a users iscence that would limit the number of users on a network from accessing the datafiles in use? Lets say only 4 logons for 4 user liscence so that 5th user will get an error message. 2) The logon function in D6 does not seem to work well. Can someone...

Part and Inventory Search

Back
Top