Page 2 of 2

Re: Tablet with Win 10

Posted: Wed Jun 28, 2017 6:10 pm
by James Bott
Rao,

I don't have a tablet, but I do have a touch screen laptop. I don't see any difference on my laptop. Shouldn't it work the same as on a tablet? Doesn't a tablet run the same OS as a laptop?

James

Re: Tablet with Win 10

Posted: Wed Jun 28, 2017 6:12 pm
by nageswaragunupudi
It works same on touch screen laptop as well as tablet.
Whats important is it should have touch screen

Re: Tablet with Win 10

Posted: Wed Jun 28, 2017 6:33 pm
by nageswaragunupudi
You are right.
It is not working with combobox
It is working with xbrowse edit_listbox.

Code: Select all

   local oDlg
   local aStates

   USE STATES
   aStates  := FW_DbfToArray()

   XBROWSER "customer.dbf" FASTEDIT SETUP (;
      oBrw:State:nEditType := EDIT_LISTBOX, ;
      oBrw:State:aEditListTxt := aStates, ;
      oBrw:bClrEdits := { || { CLR_BLACK, CLR_YELLOW } } )
 
You see the difference when we invoke edit list box of States

I need to review other controls now before I leave for seminar.

Re: Tablet with Win 10

Posted: Wed Jun 28, 2017 6:34 pm
by James Bott
Nages,

From the FWH\samples directory:

Testcmb0.prg - does show large whether I click or use mouse. Maybe this is always large even on a non-touch screen device?

Testcomb.prg - doesn't show different click or mouse. Always small.

James

Re: Tablet with Win 10

Posted: Wed Jun 28, 2017 6:36 pm
by James Bott
Nages,
You are right.
It is not working with combobox
It is working with xbrowse edit_listbox.
Ok, thanks for the update.

James