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: Jaheel22
  • Order by date
  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...
  16. Jaheel22

    Accessing form data submitted by ASP page on ASP.Net Page

    Classic ASP page Page1 submits form data (say UserID) to ASP.Net 2.0 page Page2. How to access the value of this field (UserID) on page2? Thanks
  17. Jaheel22

    Index was outside the bounds of the array

    I get the following exception / error "Index was outside the bounds of the array" whenever i excute the following console application from command line. I have Windows XP professional on my computer. Please assist. Thanks using System; using System.Collections.Generic; using System.Text...
  18. Jaheel22

    Logging off from website

    When user logs in, after validating his credentials, i grab userid of user and pass it from page to page and verify it on each page and also check logged-in flag in user's record in the database.
  19. Jaheel22

    Logging off from website

    I have the userid of the user.
  20. Jaheel22

    Logging off from website

    When user logs in, i set a flag in user's record in database which indicates users is now logged in. This flag is validated / checked on every page to see if user is logged in, if not, then user is redirected to login page. Thank you

Part and Inventory Search

Back
Top