Search found 524 matches: shellexecute

Return to advanced search

Re: shellexecute open a folder and search files

Silvio, esto? https://forums.fivetechsupport.com/viewtopic.php?f=6&t=35188&p=209498&hilit=cgetdir&sid=d31672f202782c50247b18cb082f2f0e&sid=d31672f202782c50247b18cb082f2f0e#p209415 #include "FiveWin.ch"FUNCTION CDIR_SILVIO()   LOCAL cDir   LOCAL ...
by Silvio.Falconi
Mon Jun 03, 2024 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: Ver PDF

... <-kapiabafwh@gmail.com-> " + ; FWCOPYRIGHT NOINSET CENTERED KEYBOARD DATE CLOCK 2007 ACTIVATE WINDOW oWnd MAXIMIZED RETURN NIL /* O: ShellExecute( ,"open", cFicheroPdf,,,1 ) */ // FIN / END Regards, saludos.
by karinha
Sat Jun 01, 2024 1:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RESUELTO - Ver PDF
Replies: 9
Views: 428

Re: shellexecute open a folder and search files

Silvio, esto? https://forums.fivetechsupport.com/viewtopic.php?f=6&t=35188&p=209498&hilit=cgetdir&sid=fc21cb4cfc81ff2dfeadd9a0913838da&sid=99fc5b6415c53e5beb1f8f8db6af7661#p209415 #include "FiveWin.ch"FUNCTION CDIR_SILVIO()   LOCAL cDir   LOCAL c...
by karinha
Wed May 29, 2024 12:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

+1 // C:\FWH\SAMPLES\VISUALPDF.PRG#Include "FiveWin.ch"FUNCTION Main()   LOCAL  cPathImg, cDirPDfs   cDirPDfs := "C:\TEMP" // GETCURDIR()   IF SUBS( cDirPDfs, LEN( ALLTRIM(cDirPDfs ) ) , 1 ) = "\"      cDirPDfs := SUBS( cDirPDfs, 1 , LEN...
by Silvio.Falconi
Wed May 29, 2024 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

+1 // C:\FWH\SAMPLES\VISUALPDF.PRG#Include "FiveWin.ch"FUNCTION Main()   LOCAL  cPathImg, cDirPDfs   cDirPDfs := "C:\TEMP" // GETCURDIR()   IF SUBS( cDirPDfs, LEN( ALLTRIM(cDirPDfs ) ) , 1 ) = "\"  ...
by karinha
Fri May 24, 2024 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

#include "FiveWin.ch"#define OFN_ENABLESIZING 0x00800000FUNCTION Main()   LOCAL cNomFich := "*.PDF"   LOCAL cDir //  := "..\samples\"   LOCAL cFiles   // cDir := GetWinDir()   // cDir := cFilePath( GetModul...
by karinha
Fri May 24, 2024 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

Thank you too but my goal is to have an opened explorer folder

8)
by MarcoBoschi
Fri May 24, 2024 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

Look at this example if it helps you. Mira este ejemplo si te ayuda. // C:\FWH\SAMPLES\MARCOBOS.PRG#include "FiveWin.Ch"#include "Directry.ch"#define CLR_LGREEN    nRGB( 190, 215, 190 )#define CLR_LGRAY     nRGB( 230, 230, 230 )#define CLR_VERM...
by karinha
Fri May 24, 2024 3:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

Dear Willy my intent is to open folder I want to permit to user to see the folder but I wanto to help him setting a filter in the list o files present in it

Many thanks for your answer

Marco
by MarcoBoschi
Fri May 24, 2024 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: shellexecute open a folder and search files

HI,
You could use the "directory" function

aFiles := DIRECTORY( "f:\myapp\report\" + "202405*.pdf")
by Willi Quintana
Fri May 24, 2024 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

shellexecute open a folder and search files

Hi,
is it possible to launch shellexecute that opens a folder and to perform immediately a search for a file mask passed as parameters?
For Instance Open f:\myapp\report\ folder and search all files 202405*.pdf

Bye
by MarcoBoschi
Fri May 24, 2024 2:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 451

Re: How to include hbCurl?

... help. While I was looking for a solution yesterday to make cUrl common in my desktop program, I then tried a solution with the command prompt and shellExecute. That works well. What are the disadvantages of shellExec()? I have been using 7Zip in this way for years. On the whole, the path with ...
by Otto
Sun Mar 03, 2024 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 3496

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: 1083

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: 1083
Next

Return to advanced search