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 Westi 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: *

  1. maxtin

    MsgBoxes not showing up

    SKIP: it doesnt go there...it goes to the NEXT LINE STRONGM: yes that is the code (my previosu post)
  2. maxtin

    MsgBoxes not showing up

    and...No...no msgboxes work after it fall into 'buggy mode'. Only fix is by restarting the application.
  3. maxtin

    MsgBoxes not showing up

    ok..here's the code Private Sub Compare(ByVal SQLString As String, ByVal SQLString2 As String) On Error GoTo error Dim cnDATA As ADODB.Connection Dim rsDATA2 As ADODB.Recordset Dim strConn As String Set cnDATA = New ADODB.Connection Dim QuestionMsg If DtbConnError =...
  4. maxtin

    MsgBoxes not showing up

    Private Sub Test() On Error Goto Error Dim Response as integer Response = MsgBox(Msg, Style, Title, Help, Ctxt) Exit sub Error: MsgBox "Error occured" End Sub this does the same behavior
  5. maxtin

    MsgBoxes not showing up

    no, there is no 'Resume Next' statement in the subroutine. I know it returns VbOk since the following returns always returns '1' Response = MsgBox(Msg, Style, Title, Help, Ctxt) Nothing is running in the background
  6. maxtin

    MsgBoxes not showing up

    when i single step....the msgbox doest execute visually and the code continue to the next line returning VbOk.
  7. maxtin

    MsgBoxes not showing up

    Private Sub Test() On Error Goto Error MsgBox "test" exit sub Error: MsgBox "Error occured" End Sub
  8. maxtin

    MsgBoxes not showing up

    Hi, i have this very strange problem that occurs SOMETIMES with a software where you can use vba code. When i run the code, msgboxes fail to show up and code is continuing through. I use this software (called RSView32 from Rockwell Automation) since couple of years now, and this is the first...

Part and Inventory Search

Back
Top