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

    EVAL() in .NET?

    Hi, I did some research on this, but I couldn't find any answer. In classic ASP, I can use eval() to evaluate a string. For example, if I do eval(len("test")>5), it will return false. Or if I do eval(len("test") > 1 and len("test") < 5), it will return true. Is there a function in...
  2. UGrad

    Call stored procedure on other server

    Hi, I have two SQL 2000 servers, A and B. On server A, there is a stored procedure C. On server B, there is a stored procedure D. Is it possible to call D inside C??
  3. UGrad

    Is there an easier way to create a form for editing a database table?

    Hi, I have a SQL database table with around 100 fields. I created a search page for user to search the table. Then another page to display the search result. User can click on each record and go to another page to do the editing. My question is for the editing page, I have to manually...
  4. UGrad

    How to get the record ID after insert?

    Hi, I am new in ASP.NET. Is there a way to get the identity ID from a SQL table after insert a record? I have those 3 lines of code I am using to insert user into a table, and this table has a column called ID as its identity column. Dim comm As New Odbc.OdbcCommand("insert into tbl_User...
  5. UGrad

    Need some help to write a query

    Hi, Can anyone help me to figure out how to write this view in SQL 2000? I have this table: DoctorID PatientID 104 111 104 222 103 354 104 265 103 589 Is there an easy way to write a view based on this table and the view looks like...
  6. UGrad

    Need some help to write a simple query

    Hi, I am trying to find a way to write a query. I think it's easy, but I just don't know how to do it. I have a table called "table1" looks like this: EmployeeID CarID ------------------- 1 1 2 2 3 3 4 4 5 5 1...
  7. UGrad

    How do I find user name by using IP or machine name?

    I am trying to write a simple VB program to run on my INTRANET. All I want is I input the IP or machine name of a remote computer, then the program will return the user who is currently logged on that computer. Can anyone help me out?
  8. UGrad

    Somebody please answer my questions

    Somebody please answer my questions about CDONTS. I have a MS Exchange server and a webserver running IIS. I am going to write an ASP page using CDONTS to send out email. Here are my questions: 1. I have a simple ASP page and I can use it to send email to anyone on my local area network, but...
  9. UGrad

    How to setup CDONTS

    Somebody please answer my questions about CDONTS. I have a MS Exchange server and a webserver running IIS. I am going to write an ASP page using CDONTS to send out email. Here are my questions: 1. I have a simple ASP page and I can use it to send email to anyone on my local area network, but...
  10. UGrad

    How to speed up stored procedure

    Hi, I have a question about how to speed up stored procedure. If I want to write a SP to process data for 800 people in my database, is it faster to just write one SP to process all 800 people or write several SPs to process parts of 800 people simultaneously. For example: 1 stored...
  11. UGrad

    How to lock listview column width?

    Hi, I want to create a listview which column width are locked. I don't want user to click on the column header and drag the line to change column width. Is there a way to do it? Wesley
  12. UGrad

    how to print table with color.

    Hi, I think my question is more like a HTML question. I have a table with color background on my ASP page. And when i try to print this table, it doesn't show any color on paper. Is there a way to print table with color? I tried to use a jpg as the background for my table and it didn't...
  13. UGrad

    how to print table with color.

    Hi, I think my question is more like a HTML question. I have a table with color background on my ASP page. And when i try to print this table, it doesn't show any color on paper. Is there a way to print table with color? I tried to use a jpg as the background for my table and it didn't...
  14. UGrad

    Can somebody help me? i don't understand.

    Hi, I have a question. why is d equals to TRUE and e equals to FALSE?? boolean d = &quot;abc&quot; == &quot;abc&quot;; boolean e = &quot;a&quot; == &quot;a&quot;;
  15. UGrad

    How to disable mouse wheel?

    Hi, I am trying to find some code to disable mouse wheel. Can somebody give me some hint?
  16. UGrad

    How to disable mouse wheel?

    Hi, I am trying to find some code to disable mouse wheel. Can somebody give me some hint?
  17. UGrad

    How to disable mouse wheel?

    Hi, I am trying to find some code to disable mouse wheel. Can somebody give me some hint?

Part and Inventory Search

Back
Top