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

  • Users: Kudel
  • 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 Thank you for responding. I’m not sure of what you mean. Can you please show me in the code below? I want the pre chosen value to be QUser.FieldValues['DepartmentID']. The beginning of the component names tells you what they are according to this: ds... = TDataSource dbl... =...
  4. 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
  5. Kudel

    Is Java the way to go?

    I’m developing this mainly for practise, but I also want to build an Internet service that people use. It’s much more fun to practise other things when you already have a group of active users. I’ve never used AciveX is it difficult? -Kudel
  6. Kudel

    Is Java the way to go?

    Hi I’m just picturing that a java applet is the way to go. I can’t rely say way, but I just do. That is mainly way I’m asking. Let me ask this way instead: If you where to develop a multi player card game that uses a database and shall be played trough the Internet, what would you chose to...
  7. 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...
  8. 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
  9. 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
  10. 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...
  11. Kudel

    create unique index between two databases

    Not surprised, but thanks! -Kudel:(
  12. 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...
  13. 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:)
  14. Kudel

    Calculating Totals

    Hi Like this:) select t1.date,(t1.RecCount - (Select t2.RecCount from YourTable t2 where t2.date = dateadd(dd,-1,t1.date) and t2.Name = t1.Name)) from YourTable t1 -Kudel
  15. Kudel

    Are Java Runtime installed?

    Thank you for the respond. I'm hoping to make someting like this if Javaruntime then You have Java Runtime 1.4.0 else You do not have Java Runtime 1.4.0 How can I do this? -Kudel
  16. 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
  17. Kudel

    Is Java Runtime installed?

    Sorry.. my mistake! -kudel
  18. Kudel

    SQL select statement

    Hi I think this is right SELECT TOP 1 * FROM story1 WHERE id NOT IN ( SELECT TOP n-1 id FROM story1 ORDER BY id DESC ) ORDER BY id DESC "select top n-1" does, for some reason, not work. If you use n = 4, you can't put 4-1 you have to put 3. -Kudel
  19. 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
  20. Kudel

    Rounding numbers in Excel

    Hi If you do: Round((YOUR_NUMBER + 24,9999999999)/50;0) * 50 This works as long as you do not enter 0,0000000001 in one of the cells -Kudel

Part and Inventory Search

Back
Top