Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > it.comp.lang.visual-basic > #18669

Re: VB6 e touchscreen

From Franz_aRTiglio <franzgol@N0SPAMtin.it>
Newsgroups it.comp.lang.visual-basic
Subject Re: VB6 e touchscreen
Date 2016-02-03 15:47 +0100
Organization Aioe.org NNTP Server
Message-ID <n8t3r5$aq4$1@gioia.aioe.org> (permalink)
References <n8su93$1vb1$1@gioia.aioe.org>

Show all headers | View raw


Sauro ha detto questo mercoledì :

> Ho leetto che con XP il touchscreen può emulare
> il mouse_click.
> Qualcuno di voi ha fatto delle prove con w7/w10?
> Con quali risultati?

Prego ????? O non ho capito la domanda, oppure....

Comunque: quando ho adattato i miei applicativi al touch screen ho
risolto ovviamente ingrandendo i bottoni, ma anche con una variabile
globale mousemode = true/false, sostituendo TUTTI gli eventi "_click"
con _mousemove e aggiungendo una riga, esempio:

Private Sub Command1_Click()
 MsgBox "ciao a tutti"
End Sub

Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X 
As Single, Y As Single)
 if mousemode and button = false then exit sub
 MsgBox "ciao a tutti"
End Sub

Altrimenti nel 90% dei touch screen bistogna pestare sullo schermo, in
questo modo invece non c'e' bisogno di abilitare i vari "click on 
touch"
del touchscreen driver che fanno solo casino.

Back to it.comp.lang.visual-basic | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

VB6 e touchscreen "Sauro" <vicchi@crsscala.it> - 2016-02-03 14:10 +0100
  Re: VB6 e touchscreen Franz_aRTiglio <franzgol@N0SPAMtin.it> - 2016-02-03 15:47 +0100
    Re: VB6 e touchscreen Al3xI98O <chiedimela@gmail.com> - 2016-02-03 16:03 +0100
      Re: VB6 e touchscreen Franz_aRTiglio <franzgol@N0SPAMtin.it> - 2016-02-03 16:53 +0100
        Re: VB6 e touchscreen Al3xI98O <chiedimela@gmail.com> - 2016-02-03 17:00 +0100
          Re: VB6 e touchscreen "Sauro" <vicchi@crsscala.it> - 2016-02-03 18:14 +0100
            Re: VB6 e touchscreen Al3xI98O <chiedimela@gmail.com> - 2016-02-03 22:44 +0100

csiph-web