Search found 39 matches: quiet

Return to advanced search

Re: QUIET-mode to hide the black DOS-box inside a C-function ?

Richard, Yes adding 0, it is working now. Changing the C-function, there was no difference. I only added 0 inside the button-action. There is a short flickering, but NO visible DOS-box anymore. The function-call : ACTION ( cScreen := "BH", ; SAVE_INI(), oWnd:End(), ; WINEXEC( "RESTART...
by ukoenig
Fri May 17, 2013 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: QUIET-mode to hide the black DOS-box inside a C-function ?
Replies: 4
Views: 930

Re: QUIET-mode to hide the black DOS-box ?

Uwe

WinExec( argv[ 1 ], 0 );

should do the trick also

Hth

Richard
by Richard Chidiak
Fri May 17, 2013 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: QUIET-mode to hide the black DOS-box inside a C-function ?
Replies: 4
Views: 930

Re: QUIET-mode to hide the black DOS-box ?

Richard, Thank You for the Info. This is the C-function from Daniel , I'm using. A the black DOS-box is visible during execution- Maybe a change using ShellExecute is possible, to hide the DOS-window ?- #include <windows.h> // restart.c // progname // windows handle to close // WinExec( argv[ ...
by ukoenig
Fri May 17, 2013 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: QUIET-mode to hide the black DOS-box inside a C-function ?
Replies: 4
Views: 930

Re: QUIET-mode to hide the black DOS-box ?

Uwe

you can use shellexecute to execute the "dos command or exe " needed

ShellExecute( 0, cOperation, cPathFilename, cParameters, cDirectory, nShowCommand ) nshowcommand = 0 // SW_HIDE EQUATE(0)

Hth

Richard
by Richard Chidiak
Fri May 17, 2013 4:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: QUIET-mode to hide the black DOS-box inside a C-function ?
Replies: 4
Views: 930

Re: Beep with Harbour MSVC

... menu, and no sound. Then I started adding back. I came down to one Shell Execute in the menu which I eliminated ( won't need it ) and it remains quiet. This was so very strange ! It only occured on Harbour builds, and I had cleaned everything out. Down to one major problem area ... then all will ...
by TimStone
Wed Jun 06, 2012 5:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Beep with Harbour MSVC
Replies: 4
Views: 976

Re: FUNCION PARA LEER CERTIFICADO , MD5, RSA CON OPENSSL

... -V (mayúscula) -> hace visible la firma llx, lly, urx, ury -> son respectivamente las coordenadas de la firma en el documento -q -> quiet -k 0, 1, 2 etc. -> selecciona el certificado con el que se firmará (siempre que haya mas de uno, claro) El resto son parámetros obligatorios. ...
by José Vicente Beltrán
Tue Jun 05, 2012 3:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FUNCION PARA LEER CERTIFICADO , MD5, RSA CON OPENSSL
Replies: 17
Views: 6015

Re: Manipulating Bitmaps (BMP)

... see any EXE not being there before, they start screaming. Just rename it as DLL. You can use it just like it were an EXE and your clients will be quiet. Or do they scream for a new DLL too? :-) EMG Hm, that's an interesting idea... As Uwe asked, can we use this "dll" with WAITRUN()? ...
by codemaker
Sat Jun 02, 2012 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manipulating Bitmaps (BMP)
Replies: 14
Views: 5131

Re: Manipulating Bitmaps (BMP)

codemaker wrote:But as you both know, there are clients which are so paranoic, when they see any EXE not being there before, they start screaming.


Just rename it as DLL. You can use it just like it were an EXE and your clients will be quiet. Or do they scream for a new DLL too? :-)

EMG
by Enrico Maria Giordano
Fri Jun 01, 2012 10:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manipulating Bitmaps (BMP)
Replies: 14
Views: 5131

Re: Manipulating Bitmaps (BMP)

... if You need ) // Resize given horizontal cIN_File := D:\P_RESIZE2\DOWNLOAD\IMAGES\PAGE.BMP cOUT_File := D:\P_RESIZE2\PAGE.BMP cScript := " -quiet -o " + cOUT_File + " -ratio -resize 50 0 -overwrite " + cIN_File WAITRUN ( "NConvert " + cScript, 0 ) // Resize given ...
by ukoenig
Thu May 31, 2012 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manipulating Bitmaps (BMP)
Replies: 14
Views: 5131

End of Year Message

I wish all friends of the forum here a Christmas full of peace, health and happiness of their loved ones and a prosperous New Year and quiet (as far as possible ...)


Luiz Servulo & Family ...
Image
by servulo
Thu Dec 22, 2011 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: End of Year Message
Replies: 5
Views: 1099

Re: How to convert alpha-blended image to grayscale?

... 2 Lines from inside a Function, to convert a image to grey ( NConvert.exe must exist inside the MainDir. ) : cScript := '-quiet -o Olga.jpg -grey 16 -overwrite GreyOlga.jpg ' WAITRUN ( "NConvert " + cScript, 0 ) Best Regards uwe :lol:
by ukoenig
Wed Oct 26, 2011 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to convert alpha-blended image to grayscale?
Replies: 8
Views: 2548

Re: Image-convert, crop and resize ( full source included )

... is easy to include more Filters. http://www.pflegeplus.com/pictures/filters.jpg Flip and Rotate ------------------- cScript1 := '-quiet -o ' + cNewfile + ' -rotate_flag smooth -rotate 90 -overwrite ' + cOrgfile cScript1 := '-quiet -o ' + cNewfile + ' -rotate_flag smooth -rotate ...
by ukoenig
Sat Aug 27, 2011 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Image-convert, crop and resize ( full source included )
Replies: 10
Views: 5022

Image-Format a. Filter-Converter Release 1.1 => DOWNLOAD

... a few Lines needed : // Sharpen SCRIPT cIN_File := E:\T_NCONVERT\Images\OLGA_1.JPG cOUT_File := E:\T_NCONVERT\Images\OLGA_1.JPG cScript := " -quiet -o cOUT_File -sharpen 80 -overwrite " + cIN_File WAITRUN ( "NConvert " + cScript, 0 ) There are 3 different ways, to save / work ...
by ukoenig
Tue Aug 16, 2011 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Image-Format a. Filter-Converter Release 1.1 => DOWNLOAD
Replies: 0
Views: 440

Visual Image-Converter / Script-Edit => Rel. 1.0 (Download)

... cNewfile ) ENDIF // The Convert-script // ------------------- // Quite-mode => new File => Format => old File ( BMP ) cScript := '-quiet -o ' + cNewfile + ' -out jpeg -overwrite ' + cScreen // Converts BMP to JPG with a new Filename // ---------------------------------------- WAITRUN ...
by ukoenig
Thu Aug 04, 2011 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Visual Image-Converter / Script-Edit => Rel. 1.0 (Download)
Replies: 4
Views: 2384

Re: SetAlpha

... a Frame to the BMP and saving with a new Name ( no Crop ) You can test it from Command-line ( change the BMP-path ) 1. a blue Frame convert -quiet e:\t_ribbontest\Bitmaps\angebotsbrief.Bmp -mattecolor SkyBlue -frame 16x16+8+8 e:\t_ribbontest\Bitmaps\_angebotsbrief.Bmp 2. a red Frame convert ...
by ukoenig
Mon Jul 25, 2011 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetAlpha
Replies: 13
Views: 6411
PreviousNext

Return to advanced search