Search found 71 matches: minimized

Return to advanced search

Re: Small Question about Word and FWH

Dear Michel, > 1. How do I open my document minimized? odoc := oWord:Documents:Open( cFile ) odoc:WindowState := 1 // wdWindowStateMinimize > How do I minimize a document that already has been opened, without using oWord:Visible := .F. which ...
by Antonio Linares
Thu Jul 13, 2023 4:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1119

Small Question about Word and FWH

Hello,

If I open a Word document in my application by using:

odoc := oWord:Documents:Open(cFile)

1. How do I open my document minimized?
2. How do I minimize a document that already has been opened, without using oWord:Visible := .F. which minimizes all my opened Word documents?

Thanks.
by driessen
Wed Jul 12, 2023 11:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1119

Re: Newbie Question : XBROWSE

... more than two or three minutes. Had you tried, you would have already observed that the dialog that xbrowser command creates a DIALOG which can be minimized, zoomed and resized just like a window and you would not have posted this post.
by nageswaragunupudi
Sun Nov 27, 2022 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1362

Re: Transym OCR wrapper functions for Harbour

... same thread. It is the first post on this thread. At the very top. Now that I look at it; the beauty of that code is that it is a self-contained minimized sample app-code that produces results. Notice on my sample code the wrapper functions you will need and a few other c functions that can help. ...
by reinaldocrespo
Thu Feb 18, 2021 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transym OCR wrapper functions for Harbour
Replies: 30
Views: 2697

Re: Auto-Close Application On Timer (Resolved)

... and valid as.. If the application is at the main windows. (Works) If the application is in any dialog or at a GET. (Works) If the application is minimized. (Works) If the user has the application open of any dialog and waiting at a GET and working on a xls worksheet. (Works) My code is below ...
by RiazKhan
Sat May 02, 2020 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto-Close Application On Timer (Resolved)
Replies: 9
Views: 1322

Check keyboard buffer without the program being in focus

... running on Tray and I am trying to check for a key combination that may be pressed. Example: Pressing CTRL + J The problem is that the program is minimized in the tray. the CTRL key I can check with GETKEYSTATE plus the letter J key only with LastKey (), but it works if the program is in focus. ...
by Giovany Vecchi
Wed Jan 29, 2020 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Check keyboard buffer without the program being in focus
Replies: 1
Views: 519

Re: @Uwe Install program for mod harbour

... inside the tooltip and show as message at the end of the buttonlist on button-action. it seems to me that the window gets during installation minimized and then you have no option to bring it back on screen. during a internetconnection the tool stays on top with full size there is a minimize-button ...
by ukoenig
Sat Oct 05, 2019 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: @Uwe Install program for mod harbour
Replies: 20
Views: 3669

Re: @Uwe Install program for mod harbour

Hello Uwe,
it seems to me that the window gets during installation minimized and then you have no option to bring it back on screen.
Can you please test it. Also I do not see the msginfos with the text what next to do.
Thank you and best regards
Otto
by Otto
Sat Oct 05, 2019 7:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: @Uwe Install program for mod harbour
Replies: 20
Views: 3669

Re: @Uwe Install program for mod harbour

... I added a switch to the toolbar ( share ) on top Undo added ( button enable ) in case of download-problems to try again The installer can be minimized to the taskbar during working on a download. What is about the global help-info I asked for what text do You like to show :?: http://www.pflegeplus.com/IMAGES/Install6.bmp ...
by ukoenig
Mon Sep 30, 2019 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: @Uwe Install program for mod harbour
Replies: 20
Views: 3669

Re: Minimizar varios formularios a la vez

Non modal resizable dialogs are always minimized when the main window is minimized. You do not have to write any special code to do that. Test this program: #include "fivewin.ch"function TestMin()   local oWnd, oBar   DEFINE ...
by Compuin
Wed Jul 24, 2019 1:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Minimizar varios formularios a la vez
Replies: 13
Views: 1011

Re: Minimizar varios formularios a la vez

Non modal resizable dialogs are always minimized when the main window is minimized. You do not have to write any special code to do that. Test this program: #include "fivewin.ch"function TestMin()   local oWnd, oBar   DEFINE ...
by nageswaragunupudi
Wed Jul 24, 2019 1:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Minimizar varios formularios a la vez
Replies: 13
Views: 1011

Re: How to highlight a defined word in memofields ?

Cristobal,

I only defined

@ 70, 625 RICHEDIT5 oTCode VAR cTCode OF oDlg SIZE 600, 380 ; // w h
FONT oFont PIXEL HSCROLL


NO function-call and nothing special
The result is shown on the screenshot
Maybe it would be a good idea to create a minimized sample

regards
Uwe :?:
by ukoenig
Mon Mar 19, 2018 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit how to highlight a defined word in memofields ?
Replies: 36
Views: 8134

Re: Titulo de Dialogo

... BOOL WINAPI FlashWindow( _In_ HWND hWnd, _In_ BOOL bInvert ); hWnd [in] A handle to the window to be flashed. The window can be either open or minimized. bInvert [in] If this parameter is TRUE, the window is flashed from one state to the other. If it is FALSE, the window is returned to its ...
by cnavarro
Tue Nov 07, 2017 2:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Titulo de Dialogo
Replies: 14
Views: 2110

OLE question concerning WINDOWSTATE

... I use an OLE instruction to define the way Word has to be shown I use : oWord:WindowState := 0/1/2 0 = normal window 1 = maximized window 2 = minimized window Normally this instructions also has to work for Excel or Outlook. So I use : oExcel:WindowState := 0/1/2oOutlook:WindowState := 0/1/2 ...
by driessen
Tue Sep 19, 2017 12:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OLE question concerning WINDOWSTATE
Replies: 1
Views: 506

no modal dialog

... DIALOG oDlg CENTERED  when click on BtnOk start the process (about 10 minutes of process) but when it works the main windows does not minimized how can I to minimizes main windows? Thank you ciao Damiano
by damianodec
Thu Mar 16, 2017 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: no modal dialog
Replies: 3
Views: 414
Next

Return to advanced search