Search found 443 matches: winexec

Return to advanced search

Re: Creating table with Trichedit

... TO oRTF:nTblColumns WRITE NEWCELL oRTF TEXT aTable[nRow][nCol] ALIGN CENTER NEXT next END TABLE oRTF CLOSE RTF oRtf /* Go top Puti:=MSWORD_PATH() WinExec(puti+" "+ cOutFile) */ Return .T. ************************************** FUNCTION SetRT(cOutFile) ************************************** ...
by Silvio.Falconi
Mon Jan 29, 2024 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1448

Re: Creating table with Trichedit

... TO oRTF:nTblColumns WRITE NEWCELL oRTF TEXT aTable[nRow][nCol] ALIGN CENTER NEXT next END TABLE oRTF CLOSE RTF oRtf /* Go top Puti:=MSWORD_PATH() WinExec(puti+" "+ cOutFile) */ Return .T. ************************************** FUNCTION SetRT(cOutFile) ************************************** ...
by MMK
Mon Jan 29, 2024 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1448

Re: Creating table with Trichedit

... . . . . . . . . . . . . . . . WRITE NEWCELL oRTF TEXT "cell 10" ALIGN CENTER Next END TABLE oRTF CLOSE RTF oRtf Puti:=MSWORD_PATH() WinExec(puti+" "+ cOutFile) Please I made a test but not run ok can you help me ? #include "fivewin.ch" #include "richtext.ch"// ...
by Silvio.Falconi
Sun Jan 28, 2024 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1448

Re: Creating table with Trichedit

... . . . . . . . . . . . . . . . WRITE NEWCELL oRTF TEXT "cell 10" ALIGN CENTER Next END TABLE oRTF CLOSE RTF oRtf Puti:=MSWORD_PATH() WinExec(puti+" "+ cOutFile) it's a Fwh class package ? I not found it ....so not have the support
by Silvio.Falconi
Sat Jan 27, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1448

Re: Creating table with Trichedit

... . . . . . . . . . . . . . . . WRITE NEWCELL oRTF TEXT "cell 10" ALIGN CENTER Next END TABLE oRTF CLOSE RTF oRtf Puti:=MSWORD_PATH() WinExec(puti+" "+ cOutFile)
by MMK
Sat Jan 27, 2024 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1448

Re: winexec ó ShellExecute

hi,
when DblClick in Explorer on a *.BMP it will open *.BMP with associate App like Paint
Winexec() "just" call "special" EXE while ShellExecute() is use with associate File
by Jimmy
Thu Dec 14, 2023 4:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

Verhoven wrote:Buenas tardes Antonio, vista tu respuesta me queda la duda de si la has redactado tu mismo o si es una respuesta de algún chatgpt.
Es solo una curiosidad.


Es obvio :-)

Lo hago a propósito para que nos acostumbremos a usar las nuevas herramientas
by Antonio Linares
Wed Dec 13, 2023 6:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

...     QUIT   ENDIF   IF cFile = Nil      IF File( cExec )         WinExec( cExec )      ELSE         ShellExecute( 0, "open", cExec, cFile, , 1 )  ...
by karinha
Wed Dec 13, 2023 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

Buenas tardes Antonio, vista tu respuesta me queda la duda de si la has redactado tu mismo o si es una respuesta de algún chatgpt.
Es solo una curiosidad.
by Verhoven
Wed Dec 13, 2023 2:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

Ejemplo con WaitRunEx() y ShellExecuteEx() ??

Gracias.

Regards, saludos.
by karinha
Wed Dec 13, 2023 1:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

ShellExecute() y ShellExecuteEx() son dos funciones que se pueden usar para realizar una operación en un archivo especificado, como abrirlo, editarlo, imprimirlo, etc. La diferencia entre ellas es que ShellExecuteEx() es una versión más personalizada y avanzada de ShellExecute(), que ofrece más opci...
by Antonio Linares
Wed Dec 13, 2023 12:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

Antonio muchas gracias por la pronta respuesta.

Ahora surge otra duda, cual es la diferencia entre las dos funciones que sugieres?
Code: Select all  Expand view

ShellExecute() o ShellExecuteEx()
 
by leandro
Wed Dec 13, 2023 12:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: winexec ó ShellExecute

ShellExecute() es más efectivo que WinExec() para iniciar aplicaciones en Windows. WinExec() es una función obsoleta que solo se proporciona por compatibilidad con Windows 16 bits. ShellExecute() permite especificar un verbo que indica la ...
by Antonio Linares
Wed Dec 13, 2023 11:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

winexec ó ShellExecute

... luego que se produzca en error, pero queremos saber cual es la mejor opción para hacerlo, leyendo un poco en el foro encontramos las funciones winexec y ShellExecute, pero queremos saber cual es la diferencia entre ambas funciones, y si se tiene alguna limitación al usarlas. Al inicio de la ...
by leandro
Wed Dec 13, 2023 11:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: winexec ó ShellExecute
Replies: 8
Views: 944

Re: MENU MAS ATRACTIVO

... intento con: DEFINE MSGITEM oMsg OF oWnd:oMsgBar ; SIZE 24 ; BITMAPS "CALCULADORA" ; TOOLTIP "Calculadora de Windows" ACTION WinExec("CALC.EXE") y me da error.. lo mismo si le quiero agregar un título a la Windows, los intentos que hago con "TITLE" no me ...
by TOTOVIOTTI
Tue Aug 15, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MENU MAS ATRACTIVO
Replies: 26
Views: 3135
Next

Return to advanced search