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 strongm 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: Joe46
  • Order by date
  1. Joe46

    is there an auto format button for arranging my code?

    There is an Add-In called Smart Indent that works in Access and Excel. I'm sure it will work in VB6 too. http://www.oaltd.co.uk/
  2. Joe46

    Replacement for application.filesearch in office 2007

    I am having the same problem so if you find a solution please let me in on it too. Thanks,
  3. Joe46

    Recorset undo

    If you have two text boxes with one being txtFind and the other txtReplace you could update the database with the text in txtReplace after you have done a search for txtFind. Then if you wanted to undo it you could now update the database with the contents in txtFind where the database field...
  4. Joe46

    More Than One Option Button

    You could put three option buttons on a frame and the other three on another frame.
  5. Joe46

    Version Control

    Thanks for the other products chiph. My manager does see the need for some kind of control so when I said I was trying to push them that way it was really just a suggestion that we use SourceSafe. Thanks again and I will check the other ones out. Joe46
  6. Joe46

    Version Control

    I started a new job a couple of months ago and have been dismayed with the lack of any type of safe handling they have for their code. I tried to push them toward SourceSafe in order to have something to fall back on in case something goes wrong with the file they are working on, but they do...
  7. Joe46

    VB 6 can not see Stored Procedures

    Have you tried running them with the execute method of the command object? Joe
  8. Joe46

    Opening multiple connections

    My guess is it would take a performance hit since you would be maintaining more than one connection.
  9. Joe46

    Multiple Recordsets with Oracle DB

    Sorry, I haven't used it. I was looking through my book "Visual Basic Oracle 8", when I came across this statement: "Next Recordset: Clears the current Recordset object and returns the next Recordset by advancing to the next in a series of commands." Like I said, I was just...
  10. Joe46

    Multiple Recordsets with Oracle DB

    Yes, you can have multiple recordsets with Oracle, although I don't know what is causing your error. Just wanted to let you know that it is possible to have more than one recordset.
  11. Joe46

    Open Access without executing

    If I understand what you mean then just hold down the SHIFT key before you open it.
  12. Joe46

    Program gets data when stepping through...

    Okay, even though no one else has had this problem I will post the solution in case it happens to you. All I had to do before I executed the SQL statement was to put a begin.trans, execute the statement, and then commit.trans Thanks to anyone that looked at the message and gave it some thought.
  13. Joe46

    Program gets data when stepping through...

    I remember having this problem about 4 years ago and it was something simple. I thought then that I would never always remember what I was doing wrong, but "NO!" I take it no one else has ever came across this situation before?
  14. Joe46

    Program gets data when stepping through...

    If I put a break point at the end of a SUB that is populating a database in Access and then viewing the printout in CR all the data shows up. When I run it without any break points it misses one record in CR although the data is in my database.
  15. Joe46

    Can't understand err. "Object Variable or With Block Variable Not Set"

    I'm not sure, but maybe the machines where the error is does not have the same MDAC installed.
  16. Joe46

    When creating a function, how do you specify an argue. as optional?

    MyFunction(Optional myString as String) AS String
  17. Joe46

    Cannot Update When Running

    Thanks for your quick reply. I tried DoEvents like you suggested but that didn't work. Thanks again for your help.
  18. Joe46

    Cannot Update When Running

    I have a web page created with VB that uses stored procedures in SQL Server 7. The web page has been running fine so the user wanted me to add a DateApproved field on the form. The problem is while running it will not update the field, but if I step through it runs fine. I do not receive any...
  19. Joe46

    Adding values in textboxes

    I think you need to use val like this: txtTax.Text = val(txtMatTot.Text) + val(txtPadPriceTotal.Text
  20. Joe46

    Mouse Pointer Coordinates

    I forgot to change the name of my labels. They should be: Label1.Caption = X Label2.Caption = Y Joe

Part and Inventory Search

Back
Top