search for: wshowwindow

Displaying 6 results from an estimated 6 matches for "wshowwindow".

Did you mean: showwindow
2009 Apr 07
2
Running an R script from Delphi 7
...gin Result := False; { Initialize the structures } FillChar(proc_info, sizeof (TProcessInformation), #0); FillChar(startinfo, sizeof (TStartupInfo), #0); Startinfo.cb := sizeof (TStartupInfo); Startinfo.dwFlags := STARTF_USESHOWWINDOW or STARTF_USESTDHANDLES; Startinfo.wShowWindow := SW_HIDE; { Attempt to create the process. If successful wait for it to end} // CreateOK := CreateProcess(nil, nil, nil, nil, nil, CreateOK := CreateProcess(Nil, PChar('C:\Program Files\R\R-2.8.1\bin\R.exe ' + CommandLine), nil, nil, False, CREATE_NEW_PROCESS_...
2001 Aug 13
1
WineLib Linker Error?
...rn int __wine_get_main_args( char ***argv ); STARTUPINFOA info; LPSTR cmdline = GetCommandLineA(); while (*cmdline && *cmdline != ' ') cmdline++; if (*cmdline) cmdline++; GetStartupInfoA( &info ); if (!(info.dwFlags & STARTF_USESHOWWINDOW)) info.wShowWindow = 1; _ARGC = __wine_get_main_args( &_ARGV ); ExitProcess( WinMain( GetModuleHandleA(0), 0, cmdline, info.wShowWindow ) ); } Any help would be much appreciate. Thanks in advance. Regards Jussi Jumppanen
2006 Dec 04
8
Calling R functions in Delphi
Hello All, We would like to call quantile() function from the R-package STATS in a Delphi program. If this is possible, could anyone provide us with an example? Thanks in advance. --Anna ----------------------------------------- Anna Belova Abt Associates Inc. 4800 Montgomery Ln, St 600 Bethesda, MD-20814 phone: 301-347-5304 fax: 301-652-7530 http://www.abtassociates.com/environment
2010 Aug 23
1
[Bug] [Urgent] CreateProcess Failed internal error (1359)
...max; i++) { wchar_t buffer[255]; swprintf(buffer,255,L"\"%s\" %d %s%d",argv[0],arg + 1,argv[2],i); STARTUPINFOW si; PROCESS_INFORMATION pi; ZeroMemory( &si, sizeof(si) ); si.cb = sizeof(si); si.dwFlags = STARTF_USESTDHANDLES/*|STARTF_USESHOWWINDOW*/; //sui.wShowWindow = SW_HIDE; ZeroMemory( &pi, sizeof(pi) ); // Start the child process. if( !CreateProcessW( NULL, // No module name (use command line) buffer, // Command line NULL, // Process handle not inheritable NULL, // Thread handle not inheritable FALSE,...
2006 Oct 27
0
Wine release 0.9.24
...prove TB_SETHOTITEM. comctl32: rebar: bUnicode and NtfUnicode should be the same. comctl32: header: Make all repaints pass through HEADER_Refresh. comctl32: header: Test and improve the custom draw and owner draw code. winetest: Don't start test programs with STARTUPINFO.wShowWindow = SW_HIDE. user32: Don't create timers with nEventId == 0 in TrackMouseEvent. user32: When calling TrackMouseEvent with TME_LEAVE the dwHoverTime may be uninitialized. comctl32: listview: Update the scroll bars after resizing the last column. user32: Send a WM_MOUSELEAVE...
2007 Mar 16
0
Wine release 0.9.33
...dbghelp: Fixes for loading circular references on function signature. dbghelp: module target: Better error handling when init fails and creates a dummy thread. winedbg: We no longer need to force for ELF modules in minidumps as we do it automatically now. winedbg: Forward the wShowWindow option from winedbg to the debuggee. dbghelp: Added helper to get the basename + extension from full filename. dbghelp: Rewrote module_is_elf_container_loaded so that it no longer dbghelp: Cleanups for module loading (lookups on module name and image name are two different things)...