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

    The opposite of ord().

    Hi What is the func. that turns 65 into 'A' and 66 into 'B'? -Kudel
  2. Kudel

    adoquery and time-out

    Hi all I’m connecting to a MSSQL db. I use an ado connection and an ado query When I run my query in msQuery analyser it takes 50 sec, but when I activate my query in Delphi I get a time-out error after 30 / 40 sec. How can I set my connection to never time out? -Kip
  3. Kudel

    DBLookupComboBox and prechosen values?

    Hi I’ve got a user table in my db. Each user got a departmentID. I use a DBLookupComboBox to show the different departments. When I open a user for editing, how can I make his department to be the pre chosen value? Any help will be greatly appreciated! -Kudel
  4. Kudel

    Is Java the way to go?

    Hi I’m going to develop a game. The game is a multiplayer card game that shall be played on the Internet. The application needs to work whit a database and handle a bit of graphics. I have no experience in java, but I’m pretty good in C++ and Delphi. 1) Is Java the way to go? 2) Does Java...
  5. Kudel

    Multiscreen computers

    Hi all! I’m part of a team that develops an application that uses multiple forms. Our concern is how we can be certain that every form pops up on the same screen as the main form when the user has a multi screen computer. Any hints, tips or solutions are appreciated. -Kudel
  6. Kudel

    Returning a varchar from my proc

    I’m trying to return a string from my procedure, but all I get is this message “Syntax error converting the varchar value my string to a column of data type int.” Can’t procedures return varchar? -Kudel
  7. Kudel

    About escaping in and out of the script

    Hi! I’m self-teached in ASP and do a lot of jumping in and out of asp code. I read Tarwn’s comment about this in the tread “Loops driving me nuts”. Tarwn wrote “escaping in and out of the script is not good for the web server, you can liken it to driving down the road and shifting between...
  8. Kudel

    create unique index between two databases

    Hi all! I have two databases that is almost like. I have a customer field in both databases. Each customer has a web_user_name that is unique. I need a unique index that checks both databases. Create unique index WUN on db1..TestA(web_user_name) and db2..TestA(web_user_name) Any tips, tricks...
  9. Kudel

    How to scale pictures?

    Hi all I’m making an application that shows pictures in a TwebBrowser. Is there any way that I can get the pictures to be scaled to fit the WebBrowser? Any tips, tricks or hints are appreciated. -Kudel:)
  10. Kudel

    Are Java Runtime installed?

    Hi I need to check if my users have Java Runtime 1.4.0 installed. Can anybody give me a hint or tip to how to do this?? -Kudel
  11. Kudel

    Is Java Runtime installed?

    Hi I need to check if my users have Java Runtime 1.4.0 installed. Can anybody give me a hint or tip to how to do this?? -Kudel
  12. Kudel

    How to use FindComponent?

    Hi myFunction are supposed to display two equal messages, but it doesn’t. Why??? myFunction(temp: TEdit) : string; var Obj : TObject; E : TEdit; begin Obj := FindComponent(temp.Name); E := (Obj as TEdit); messagedlg(temp.text,mtInformation,[mbOK],0)...
  13. Kudel

    How can I write bit values to a file?

    Hi all! How can I write bit values to a file? Any tip, trick or comment is appreciated. -Kudel:)
  14. Kudel

    Compare two pictures

    Hi! I have two pictures of eaqual size. I need to find out if it is the same picture. How can i do this? -Kudel:)
  15. Kudel

    Reading data from a table on internett

    Hi! I need to read data from a table on the internett. I do not know how, so any help or tip will be appreciated! -Kudel:)
  16. Kudel

    When makeing a button at runtime, how can I set the onClick event?

    Hi! I'm creating a button at runtime and need to set it's onClick event. I've got a function named "Save" that is supposed to run when sombody click's the button. with tbutton.Create(Form1) do begin; Parent := Form1; Left := 150; Top := nyeTop; Caption := 'Save ' +...

Part and Inventory Search

Back
Top