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 SkipVought 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: Nannapaneni
  • Order by date
  1. Nannapaneni

    Plain Blue Screen

    Thank you Smitee, I tried all those but still getting the same message. When I click OK it says "Please wait while windows prepares your computer for hibernation..." , and stays like that forever. giovann, No, I haven't added anything.
  2. Nannapaneni

    Plain Blue Screen

    I also have the same problem. I tried to start in the safe modeBut, failed. I got an error "MPREXE caused an invalid page fault in module ......" before happening this. Vijaya
  3. Nannapaneni

    mdi and child forms??

    Why don't you place all the controls of the child form(to be visable always)in a frame on the left hand side of the MDI form and display all other child forms on the right hand side ?
  4. Nannapaneni

    recordset can't move back HELP !!

    What is the Error you are getting?
  5. Nannapaneni

    How can I dymanically load a Textbox into a picturebox?

    I have a similar Question, I want to add a TextBox to FormControls and Set the index.When try to set the index I am getting an Error [382] "'Index' property can't set at Runtime" .Is there ant other way to do this?. ( I don't want to place a TextBox with 0 Index on the form at...
  6. Nannapaneni

    Overflow using Mod operator

    Declare dim n as double,e as double,z as double If you declare like dim n, e, z as double the data types of n,e will be will be variants.
  7. Nannapaneni

    Saving Multiple Values in one field...

    Dim i As Integer, tmpStr As String For i = 0 To List1.ListCount - 1 If List1.Selected(i) = True Then tmpStr = tmpStr & List1.List(i) & "," End If Next i tmpStr = Mid(tmpStr, 1, Len(tmpStr) - 1)
  8. Nannapaneni

    Assigning ComboBox Item from list

    Dim Name As String, i As Integer Name = "John" For i = 0 To Combo1.ListCount - 1 If Combo1.List(i) = Name Then Combo1.ListIndex = i Combo1.SelStart = 0 Combo1.SelLength = Len(Combo1) Exit Sub End If Next i
  9. Nannapaneni

    Assigning ComboBox Item from list

    Try This valueFromTable = "John" combo1.AddItem valueFromTable

Part and Inventory Search

Back
Top