Search:

Type: Posts; User: Skate Bart

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. How to open an .xps file in VB6 using app.Path?

    When the button is clicked, I want the file (it's a XPS document) to be opened in windows.
    The file will be in the same directory as the visual basic project.
    Therefore, I need the code to open the...
  2. Replies
    7
    Views
    86,704

    Re: How to open a file in VB6 using app.Path?

    No no guyz.... I literally want the file to be opened in windows when I click the button.
  3. Replies
    7
    Views
    86,704

    How to open a file in VB6 using app.Path?

    When the button is clicked, I want the file to be opened.
    The file will be in the same directory as the visual basic project.
    Therefore, I need the code to open the file using "app.Path".
    Any...
  4. Replies
    7
    Views
    8,772

    Re: ComboBox and MSHFlexGrid Problem

    i tried the text property, list and index. none of them work!
  5. Replies
    7
    Views
    8,772

    Re: ComboBox and MSHFlexGrid Problem

    tired it. still doesn't work! any ideas?
  6. Replies
    7
    Views
    8,772

    Re: ComboBox and MSHFlexGrid Problem

    Please ignore that. it was a typing error. Here is the correct statement :

    rsVehicle.Fields("Companies Registerd To") = txtCompany

    thnx for pointing it out. fixed it in the original post too.
  7. Replies
    7
    Views
    8,772

    ComboBox and MSHFlexGrid Problem

    I'm using a MSHFlexGrid (fgdVehicle) to input data from a database ( via a recordset (rsVehicle) ).
    You can either enter the data into the database in two ways :

    1. From...
  8. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    YESS!!!!!! THANK YOU SO MUCH DOOGLE!!!!!!!!!
    you never fail to help me!!!! I am so grateful to you man.
    Thank you so so much!!! XD
  9. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    YESS!!!!!! THANK YOU SO MUCH DOOGLE!!!!!!!!!
    you never fail to help me!!!! I am so grateful to you man.
    Thank you so so much!!! XD
  10. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    Dim xString As String, xRow As Integer
    Dim boFound As Boolean, J As Integer

    cmdSaveNew.Enabled = False
    xString = InputBox("Enter Company Name : ", "Search")
    If xString <> vbNullString Then
    ...
  11. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    I did what you said.
    And now whether I enter correct/incorrect data, the whole program becomes unresponsive when clicked "OK" in the InputBox....
  12. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    I did remove the "txtSearch.Text = xString" line as it kept highlighting that line and giving the error "Object required".
  13. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    It highlights the line : " fgdCompany.Row = xNext " and gives an error saying "Invalid row value"
  14. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    It highlights the line : " fgdCompany.Row = xNext " and gives an error saying "Invalid row value"
  15. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    It seems to be that there is a MAJOR problem in this code.
    The code works and gives the correct output when wrong data is entered.
    But this is the problem. When correct data is entered, it...
  16. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    I'm so so sorry. I completely forgot.
    Here's a link to the CodeGuru post : http://forums.codeguru.com/showthread.php?527475-Search-for-data-in-a-MSHFlexGrid&p=2084681#post2084681
  17. Replies
    21
    Views
    16,095

    Re: Search for data in a MSHFlexGrid

    I tried the method you said but it didn't work. Can you please give me the code for it..... I would greatly appreciate the help!!!
  18. Replies
    21
    Views
    16,095

    Search for data in a MSHFlexGrid

    In my form, I have a MSHFlexGrid (fgdCompany) and a Search button.
    What this search button should do is when I enter data into the InputBox, it should search for the entered data and highlight the...
  19. Re: A simple database server management software?

    okay. thnx!
  20. Re: A simple database server management software?

    It's just a simple database storing some customer and invoice details.
    The database package is Access 2010.
    Can you help me?
  21. A simple database server management software?

    I'm looking for a simple database-server maintenance and management software.
    It need not to be free but it must be known in the field of networking.
  22. Replies
    10
    Views
    9,114

    Re: Package and Deployment Doubt

    I use VBDataReports in my software. For them to be created on the installed program, shouldn't VB be installed on the computer?
  23. Replies
    10
    Views
    9,114

    Re: Package and Deployment Doubt

    I use the properties window to enter the picture. Therefore I don't need to include the pictures. Correct?
  24. Replies
    10
    Views
    9,114

    Re: Package and Deployment Doubt

    What do you mean "Picture properties at design time". Can you please explain a little bit more :blush:
  25. Replies
    10
    Views
    9,114

    Re: Package and Deployment Doubt

    There are a couple of pictures I will be using on the form. What about them? Should they also be stored like the database?
  26. Replies
    10
    Views
    9,114

    Re: Package and Deployment Doubt

    SO if I install the program on another computer that doesn't have Visual Basic 6 installed on it, the program would work perfectly?
  27. Replies
    10
    Views
    9,114

    Package and Deployment Doubt

    If I install a program that was created by Visual Basic 6.0 (via Package and Deployment Wizard), and install it on my computer, is Visual Basic 6.0 need to run that installed program?
  28. Re: How to highlight a record in a MSHFlexGrid?

    OMG OMG!!! It worked. I tweaked the code a little bit with the one you gave above and it works perfectly.
    But the problem is, it only highlights the first column of the row that the searched data...
  29. Re: How to highlight a record in a MSHFlexGrid?

    I'm currently using this code.

    xString = txtSearch.Text
    For xNext = 0 To fgdCompany.Rows
    fgdCompany.Row = xNext
    xRow = fgdCompany.Row
    If xString =...
  30. Re: How to highlight a record in a MSHFlexGrid?

    hi. When I run the program it gives the error "Next without For" and when clicked debug, it highlights the line "Next x"
  31. Re: How to search for a certain record in a MSHFlexGrid?

    hi. When I run the program it gives the error "Next without For" and when clicked debug, it highlights the line "Next x"
  32. How to highlight a record in a MSHFlexGrid?

    I have a MSHFlexGird (fgdCompany) and a search command. When the user enters the search data into "txtSearch", the command should search for the data and show it to the user by :

    Highlighting...
  33. Re: How to search for a certain record in a MSHFlexGrid?

    the code works great!
    but one more small question.
    Is there anyway that i can highlight the row that is found by the search on the MSHFlexGrid?
  34. How to search for a certain record in a MSHFlexGrid?

    I have a MSHFlexGrid that gets all records via a recordset from a database.
    I want to add a search function so that it would search for the data entered by the user on to the search textbox. But it...
  35. Re: "Enter MS JET OLE DB Initialization Information" ERROR VB6

    never mind guys. my problem is solved. it was a error with the file location.
    big thank u to DataMiser and firoz.
  36. Re: "Enter MS JET OLE DB Initialization Information" ERROR VB6

    I didn't use any code. I created the Data Reports using Data Environments and made all the settings and preferences from the Data Environment itself. (Refer to the first link given on original post)
  37. Re: "Enter MS JET OLE DB Initialization Information" ERROR VB6

    no. my .mdb is not password-protected. and what should I use as the Provider String (I mean, what should I enter to that textbox?)
  38. "Enter MS JET OLE DB Initialization Information" ERROR VB6

    Hi there.

    I developed a program that creates Data Reports using this way : http://www.vbtutor.net/vb6/lesson40.html
    But instead of using "Microsoft Jet 3.51 OLE DB Provider", I used "Microsoft...
  39. How to update a record from a Flex Grid?

    okay.

    Here's my problem.
    I have a form in which a Microsoft Hierarchical Flex Grid (fgdCompany) is used to display records taken from a database to relevant textboxes on the same form.
    When a...
  40. "Data type mismatch in criteria expression" in SQL statement

    hey there,

    Here's my complete code for a delete button that deletes a record in a Hierarchical Flex Grid.


    Dim rsTour As New ADODB.Recordset
    Dim cn As New ADODB.Connection
    Dim...
Results 1 to 40 of 42
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width