Jump to content

SEND Questions


LOULOU
 Share

Recommended Posts

AutoItx seems to have problem with KEY "HOME" and "END"

I work in a Combobox name "SysListView321" and for the first to the 124th the keys wotrk good and after the 125th record when I send Home the keys freeze .

Is there an another way to control SystlistView32 ?

Regards

Link to comment
Share on other sites

AutoItx seems to have problem with KEY "HOME" and "END"

I work in a Combobox name "SysListView321" and for the first to the 124th the keys wotrk good and after the 125th record when I send Home the keys freeze .

Is there an another way to control SystlistView32 ?

Regards

<{POST_SNAPBACK}>

Works fine for me, definitely not a problem with AutoItX. I just tested and ran the Send "HOME" and "END" keys 300 times to the explorer "SysListView321" with no problems.

Post your procedure and maybe I or someone else can help you.

Link to comment
Share on other sites

It seems that the problem comes from the procedure (written in Pure Basic) which open a window on another Window

Procedure Affiche(libelle.s )
  If OpenWindow(0,0,0,370,100,#PB_Window_SystemMenu|#PB_Window_ScreenCentered,"Information ProdiCIC PLus V5.1.17") And CreateGadgetList(WindowID(0)) 
    SetWindowPos_(WindowID(), -1, 0, 0, 0, 0, #SWP_NOSIZE | #SWP_NOMOVE)
    If  LoadFont(1, "@MS arial", 10,#PB_Font_HighQuality | #PB_Font_Bold)
      SetGadgetFont(#PB_Default,FontID())  ; Set the loaded Arial 16 font as new standard 
    EndIf 
    ButtonGadget(1,160, 70, 60, 20, "&OK",#PB_Button_Toggle ) 
    TextGadget(0, 10, 10,360,80,libelle) 
    
    Repeat  
      EventID.l = WaitWindowEvent() 
      Select EventID 
        Case #PB_EventCloseWindow 
          Break 
          
        Case #PB_EventGadget     ;Per Maus 
          Break 
          
      EndSelect
      
    ForEver 
    CloseWindow(0) 
  EndIf 
  
EndProcedure

May someone help me Please ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...