Search found 36 matches: olist

Return to advanced search

Re: Display thumbnails of pdfs

hi Antonio, SetWindowLong( oList:hWnd, -16, nOR( WS_CHILD, WS_VISIBLE, WS_TABSTOP, LVS_REPORT ) ) HB_FUNC() in c:\fwh\source\winapi\listview.c is special for Listview_Group it have LVITEM and LVGROUP Structure but not LVCOLUMN which is ...
by Jimmy
Sun Oct 16, 2022 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2216

Re: Display thumbnails of pdfs

Dear Jimmy,

Please search for LISTVIEW in FWH\samples folder and you will find six results

I guess you could use:
SetWindowLong( oList:hWnd, -16, nOR( WS_CHILD, WS_VISIBLE, WS_TABSTOP, LVS_REPORT ) )
used in samples\listvie.prg
by Antonio Linares
Sun Oct 16, 2022 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2216

Re: ID of the current session

Please try this:

oList := wmi:Execquery( "select * from Win32_Process" )

XBrowse( oList )

and post here what you get, thanks
by Antonio Linares
Fri Jan 07, 2022 2:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the current session
Replies: 14
Views: 584

Re: ID of the current session

Could you please explain how do you create wmi ?

oList := wmi:Execquery( "select * from Win32_Process" )
by Antonio Linares
Fri Jan 07, 2022 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the current session
Replies: 14
Views: 584

Re: ID of the current session

... understand correctly that in all these examples, processes are viewed and the SessionID of each of them is read? I do the same thing through WMI. oList:=wmi:Execquery("select * from Win32_Process") But since I'm an oList , the processes of all sessions fall into, I can't distinguish ...
by Natter
Thu Jan 06, 2022 7:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the current session
Replies: 14
Views: 584

Re: EasyReport progress?

I not found

oList:oObject
by Silvio.Falconi
Mon Dec 21, 2020 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport progress?
Replies: 86
Views: 8442

Re: Error al insertar registro con Clase MariaD

... "FiveWin.ch" STATIC oRs,oCn //------------------------------ function Main() //------------------------------ local oRs, cTable, oBrw, oList, oDlg, cFile,oFont,oBar local cServer := "127.0.0.1" local cDataBase := "Santana" local cUser := "root" local cPassWord ...
by Adolfredo Martinez
Tue Feb 19, 2019 12:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al insertar registro con Clase MariaD
Replies: 10
Views: 1252

Re: List of COM Port

What could be wrong with this method? oList variable does not receive values METHOD ReadPortInfo() CLASS TPCInfo   local cRet  := "?"   local aRet  := {}   local oWmi, oList, oPorts   oWmi        := WMIService()  ...
by shark
Tue Dec 18, 2018 8:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: List of COM Port
Replies: 8
Views: 1166

Re: Bug on Listview class

I try with

#define LVS_ICON 0
#define LVS_SMALLICON 2
#define LVS_LIST 3
#define LVS_SINGLESEL 4

oList:WinStyle(LVS_SINGLESEL,.T.)


but is the same
by Silvio.Falconi
Wed Jan 10, 2018 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug on Listview class
Replies: 3
Views: 622

Bug on Listview class

If I use the method oList:lPopUp :=.t. i can show a menu popup to change the visualization of Icons but if I select one selection of the menu it draw with the mouse a dotted box and then the final user can select all files and it is ...
by Silvio.Falconi
Tue Jan 09, 2018 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug on Listview class
Replies: 3
Views: 622

Gdi and Listview

... file into listview I made: nImage := Icon_Read(cFile) nImage := max(0,ILADDICON( oImageList:hImageList, nImage ) ) oItem = TListViewItem():New( oList ) oItem:cText = cFile oItem:nImage = nImage oItem:Create() but I save only the icon of the file I wish insert this possibilty to make the preview ...
by Silvio.Falconi
Sat Dec 10, 2016 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gdi and Listview
Replies: 1
Views: 496

Re: ¿Cómo saber cuanta memoria ocupa mi aplicación?

oList := oWmi:ExecQuery( "select * from Win32_PerfRawData_PerfProc_Process WHERE name='"+cName+"'")
Por favor

Como puedo utilizar este codigo si uso dbf's ?

Muchas gracias
by juan_arroyo_t
Fri Dec 02, 2016 3:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber cuanta memoria ocupa mi aplicación?
Replies: 10
Views: 1346

Listview class

I Know it is possible to create Groups on Listview but I not Know How Any solution ? I trying with Static Function InsertGroup() oList:EnableGroupView() oList:InsertGroup( "Items 1" ) oList:InsertItem( 0, "Console app", 1) Return NIL and it renamed the first as default ...
by Silvio.Falconi
Sat Jan 16, 2016 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview class
Replies: 0
Views: 278

Re: GetTasks() Function

Non ricordo dove l'ho trovato ... KillProcess("menu.exe") FUNCTION KillProcess( cExe ) local oWmi, oList, oProc oWmi := WmiService() oList := oWmi:ExecQuery( "select * from Win32_Process where Name = '" + cExe + "'" ) for each oProc in oList oProc:Terminate() ...
by stefano
Fri Oct 16, 2015 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetTasks() Function
Replies: 3
Views: 723

Re: bmpfromico

... nImage ) nImage := max(0,ILADDICON( oImageListBig:hImageList, nImage ) ) DestroyIcon(nImage) oItem = TListViewItem():New( oList ) oItem:cText = cNewfile oItem:nImage = nImage oItem:Create() we have the icon ... of a file then I saw there is a function Made from Daniel HB_FUNC( ...
by Silvio.Falconi
Fri Jul 03, 2015 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bmpfromico
Replies: 32
Views: 8968
Next

Return to advanced search