Search found 805 matches: michel

Return to advanced search

Re: Small Question about Word and FWH

Dear Michel,

If you don't call cWord:Quit() does Word remain opened ?

So you can only call cWord:Quit() if there no more FWH apps using it

is that correct ? thanks

Are you using Borland or MSVC32 ?
by Antonio Linares
Mon Jul 17, 2023 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1183

Re: Small Question about Word and FWH

... new FWH lib ? With the new lib that I will send you, please run this test, once you have opened your FWH apps and please let me know what you get: michel.prg #include "FiveWin.ch"function Main()    local nFWHApps := 0    EnumWindows( { | hWnd | If( ...
by Antonio Linares
Mon Jul 17, 2023 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1183

Re: Small Question about Word and FWH

Dear Michel,

Is your main FWH window MDI ?
by Antonio Linares
Mon Jul 17, 2023 4:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1183

Re: Small Question about Word and FWH

Dear Michel,

Maybe we can find the window based on its class name instead of its title. We need to do some research about it...
by Antonio Linares
Mon Jul 17, 2023 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1183

Re: Small Question about Word and FWH

Dear Michel, chatGPT help: To check if a document is opened in jWord by Application 1 before closing cWord in Application 2, you can use the following approach: In Application 1, keep track of the document state using a variable ...
by Antonio Linares
Mon Jul 17, 2023 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1183

Re: Another try for using the FWH debugger - some more questions

Dear Michel,

AltD( 1 ) // Enables the debugger. Press F5 to go

MsgInfo( "debugger enabled" )

AltD() // Invokes the debugger

MsgInfo( "debugger invoked" )
by Antonio Linares
Sat Jul 15, 2023 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another try for using the FWH debugger - some more questions
Replies: 7
Views: 440

Re: Adding a register key to the Windows register

Dear Michel, from Harbour Changelog file: 2012-05-18 18:15 UTC+0300 Pavel Tsarenko (tpe2 at mail.ru)  * contrib/hbwin/win_reg.prg  * contrib/hbwin/tests/test_reg.prg    * added nRegSam (access ...
by Baxajaun
Fri Jul 14, 2023 5:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

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 ...
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: 1183

Re: Adding a register key to the Windows register

Hello Michel,

Maybe you have to grant the user admin rights when setting this key.

I want to remind you that you need to set this key for every user.

Best regards,
Otto
by Otto
Tue Jul 11, 2023 9:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

Re: Adding a register key to the Windows register

Dear Michel,

Do you have the entry "DisableWarningOnIncludeFieldsUpdate" already created ?
by Antonio Linares
Tue Jul 11, 2023 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

Re: Adding a register key to the Windows register

Dear Michel,

Please use Microsoft regedit.exe and try to locate it manually
by Antonio Linares
Tue Jul 11, 2023 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

Re: Adding a register key to the Windows register

Dear Michel,

what is shown from the MsgInfo() ?
by Antonio Linares
Tue Jul 11, 2023 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

Re: Adding a register key to the Windows register

Dear Michel, Please try this and let me know what you get: #define  HKEY_CURRENT_USER       2147483649      local nHandle, nValue    if RegOpenKey( HKEY_CURRENT_USER,;         "Software\Microsoft\Office\16.0\Word\Security", ...
by Antonio Linares
Tue Jul 11, 2023 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a register key to the Windows register - SOLVED
Replies: 17
Views: 700

Re: Excel and FiveWin

Hi Michel,

please, try this for example row #4:

Code: Select all  Expand view
   oSheet := oExcel:Get( "ActiveSheet" )

   oSheet:Rows( 4 ):Delete()
   oSheet:Rows( 4 ):Insert() 

Regards,
Detlef
by Detlef
Mon May 08, 2023 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excel and FiveWin
Replies: 3
Views: 215

Re: How to read settings in Word

Dear Michel, from chatGPT 4: LOCAL oWord, cStartupPathoWord = CREATEOBJECT("Word.Application")cStartupPath = oWord.Options.DefaultFilePath(10) && 10 is wdStartupPath? "Word Startup Folder:", ...
by Antonio Linares
Thu May 04, 2023 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to read settings in Word
Replies: 14
Views: 637
PreviousNext

Return to advanced search