Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/01/2023 in all areas

  1. Andreik

    Ribbon

    I use ribbons very often but I don't use any software. I create the ribbon xml manually and I compile the dll manually. Anyway, in Win 11 they screwed some ribbon functionalities so I don't know if it would be suitable in next years. PS: if anyone it's interested I can detail the steps and show some examples
    1 point
  2. Docfxit

    Quickbooks change account

    Yea!!! This is working: If WinActivate("Recording Transaction", "Cancel") Then Send("!y") EndIf While WinExists("Recording Transaction", "Cancel") Sleep(100) WEnd If WinActivate($QBVersion, "General Ledger Last Year") Then Send("{UP}") EndIf You guys are great. It's so nice getting your help to resolve issues. Thanks a bunch...
    1 point
  3. Nine

    Quickbooks change account

    Yes it was. You may need to give focus the the right window after this one closes or wait a little longer. You need to experiment...
    1 point
  4. Mugen

    Ribbon

    Found RibbonFramework requires Delphi, but can create a dll that will work with AutoIt.
    1 point
  5. Nine

    Quickbooks change account

    Maybe you are running Scite x64 but you compile x86 ?
    1 point
  6. mumpel

    Ribbon

    It was worth a try.
    1 point
  7. KaFu

    DLL callback register ?

    There's a good example in the help-file for the function _WinAPI_AddClipboardFormatListener. Though you have to create a GUI, you don't have to show it, remove or comment the GUISetState line.
    1 point
  8. Zedna

    MS SQL connection

    The simplest testing code: $objErr = ObjEvent("AutoIt.Error","MyErrFunc") $sServer = 'server1' $sDatabase = 'master' $sUID = 'admin' $sPWD = 'pwd' $DSN = 'DRIVER={SQL Server};SERVER=' & $sServer & ';DATABASE=' & $sDatabase & ';UID=' & $sUID &';PWD=' & $sPWD & ';' $oConn = ObjCreate ("ADODB.Connection") $oConn.ConnectionTimeout = 3 ; default is 15 s (must be supported by data provider DSN) $oConn.Open($DSN) If @error Then Exit $oConn.Close MsgBox(64, 'OK', 'Finished') Func MyErrFunc() MsgBox(48, 'COM Error', $objErr.description) SetError(1) EndFunc
    1 point
×
×
  • Create New...