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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Jaheel22

  1. Jaheel22

    String comparison issue

    In VB6, in immediate window of Visual Studo 6.0, i type this strA = "1200" strB = "800" ? strA > strB False Why it's returng false ? Thanks much
  2. Jaheel22

    Switching execution context of whole connection

    How to switch the execution context of the whole connection in sql server 2005? I know how to switch execution context to execute certain statments but not sure how to switch it for current whole connection. Thanks much
  3. Jaheel22

    runtime error 91

    Which will be the object int this case ? ADO control (userIno) Or RecordSet ? If you can write that line, i would apprecaite it. Thanks
  4. Jaheel22

    runtime error 91

    New to VB. Following procedure is producing the runtime error 91 (Object variable or With block variable not set). Please note i'm using ADO control in my application to access Microsoft Access 2003 database. Any hint ? Thanks Private Sub btnConfirm_Click() UserInfo.Recordset.AddNew...
  5. Jaheel22

    Loost internet/network connectivity often

    I'm using Windows XP Pro on my laptop and use High speed internet to surfe internet. My computer keep loosing internet connection after 10 - 15 mintues. When it looses connection, i cannot ping like www.yahoo.com but ipconfig works fine, i mean shows DNS server, iP address etc. Then i use...
  6. Jaheel22

    Windows Vista Equivalent

    Which version of Windows Vista is equivalent to Windows 2003 Server ? Thanks
  7. Jaheel22

    Cannot find view

    Thanks very much
  8. Jaheel22

    Cannot find view

    In Northwind database, there is a view called [Order Details Extended] but not [Order Details]. I donot know from where folling query is pulling data. Please help thanks. SELECT Orders.CustomerID, Orders.OrderID, COUNT(UnitPrice) AS Items, SUM(UnitPrice * Quantity) AS Total FROM Orders...
  9. Jaheel22

    In-memory data structure to store mapping between zip code and states

    It has to be in-memory because of client requires it.
  10. Jaheel22

    In-memory data structure to store mapping between zip code and states

    Which will be best in-memory data structure to store mapping between zip code and states ? Any technique to find state for a given zip code ? Thanks in advance.
  11. Jaheel22

    How to access ViewState of previous page

    Guys Do you know if its possible to retrieve non-webcontrols variables from a PreviousPage? something like: page 1: this.ViewState.Add("myValue", "bladiebla"); page 2: this.PreviousPage.ViewState["myValue"] Thanks a lot.
  12. Jaheel22

    Explain blocking and unblocking

    Steve I really thank you for your answer to my question. Yes, indeed, it does help. Thanks again.
  13. Jaheel22

    Explain blocking and unblocking

    Would you please write few lines on the concept of blocking / unblocking ? There was an interveiw question to explain blocking/unblocking. I googled but could not find the answer. Thanks so much.
  14. Jaheel22

    How to redirect to last visited page

    How to redirect a user to the last visted page after the user is logged in ? Any alternative besides session variables ? Thanks much
  15. Jaheel22

    Passing form fields from page to page

    I'm new to ASP.NET. Here is my question. Page A is data entry form and calls page B. Page B is preview page for A and calls page C. Page C does the data insertion into database. How to pass form fields from Page A to Page C ? I'm able to acess these fields on Page B using PreviousPage...

Part and Inventory Search

Back
Top