Displaying 20 results from an estimated 43 matches for "hkey".
Did you mean:
hey
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...\", failed to load \"%s\"\n",
getenv("R_HOME"),DLLlocation);
OutputDebugString(lTraceBuffer);
}
}
if (m_ProxyModule == 0)
{
// look in the registry
OutputDebugString("from reg:");
char DLLlocation[MAX_PATH];
LONG rc;
HKEY hkey;
DWORD keytype = REG_SZ;
DWORD cbData = sizeof (DLLlocation);
rc = RegOpenKeyEx (HKEY_LOCAL_MACHINE, "Software\\R-core\\R", 0,
KEY_READ, &hkey);
if (rc == ERROR_SUCCESS)
{
rc = RegQueryValueEx (hkey, "InstallPath", 0, &keytype,...
2007 Nov 28
4
Can''t write to "Windows PowerShell" source with win32-eventlog
Hi all,
Tim Uckun reported, and I''ve confirmed, that you can''t write to the
Windows PowerShell event source for some reason.
Tim thought it might be because of the space in the name, but my attempt
to quote it did not seem to help.
In order to follow along, install PowerShell, create the foo.dll using
the foo.mc file in the ''test'' directory, and try the
2006 May 08
2
Problem: "Please use registry key HKEY .."
...blank window with usual File Book
Options Help banner. The only choice for File is exit and, if this is
chosen, the window closes and wine reports exited with favorable status.
After this exit the following message is on the console used to start
the program:
"Please use the registry key HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels
to set the screen resolution and remove the Resolution entry in the
config file."
In .wine/config I find Resolution ="96" but I used winesetup to create
fake_windows and I can't find a registry file in .wine.
How do I make this correc...
2001 Nov 22
1
Getting Registry info and using it ????
...need to use the variable path read from
the registry and not the specific path..This is the way I am doing it..
****************************************************************************
****************************
LPCTSTR lpSubKey = (LPCTSTR)"SOFTWARE\\Classes\\FirewallApplication";
HKEY hKey;
char szFullPath[200];
DWORD dwBufLen;
//const unsigned short * temp;
PCWSTR temp;
HRESULT hRes;
RegOpenKeyEx(HKEY_LOCAL_MACHINE,
(LPCTSTR)lpSubKey,
0, KEY_QUERY_VALUE, &hKey );
/*the value of szFullPath is the correct value it shows while debugging*/
Re...
2001 Dec 06
1
Registry, HKEY, CONFIGDIR CorelDraw problems
Hello Wine experts. I am trying to get CorelDraw 7.0 to work under
wine, and I have successfully installed the program, but when I attempt
to run it, I get the following dialogue error message:
Key:
"HKEY_LOCAL_MACHINE\SOFTWARE\Corel\CORELDRAW\7.0"
Value: "ConfigDir" not found in the Registry.
Along with this error message, comes the exciting output displayed
below, that is probably irrelevant.
Thanks for your time.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
err:...
2010 Jun 26
1
Problem in "porting" a function on windows to linux?
...ot;config.h" file in linux to get log from a specific Shared object and ..., but because I'm new to linux,
I don't know how this should be done, this is my function:
Code:
//This function return True if log policy is set in registry and False otherwise
int isLogEnabled()
{
HKEY hKey;
LONG lRes;
DWORD dwType, dwSize = 0;
int retVal = 0;
if((RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\MyCorp", 0, KEY_ALL_ACCESS, &hKey)) == ERROR_SUCCESS)
{
lRes = RegQueryValueEx(hKey, "SpecialMode", 0, &dwType, NULL, &dwSize...
2013 Aug 21
2
[PATCH 1/3] Rationalise whitespace to 4 space indentation with no trailing spaces
...}
+
+ gSvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
+ gSvcStatus.dwServiceSpecificExitCode = 0;
+
+ ReportSvcStatus (
+ SERVICE_START_PENDING,
+ NO_ERROR,
+ 3000
+ );
+
+ SvcInit (
+ dwArgc,
+ lpszArgv
+ );
}
BOOL
RegistryRead (
- HKEY hHive,
- wchar_t *szKeyPath,
- wchar_t *szValue,
- wchar_t *szData,
- DWORD *nSize
+ HKEY hHive,
+ wchar_t *szKeyPath,
+ wchar_t *szValue,
+ wchar_t *szData,
+ DWORD *nSize
) {
- HKEY hKey;
- long lSuccess;
-
- lSuccess = RegOpenKey (
- hHive,
- szKeyPath,
- &hKey
- );
-
- if...
2013 Aug 29
5
[PATCH 1/6] Rationalise whitespace to 4 space indentation with no trailing spaces
...}
+
+ gSvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
+ gSvcStatus.dwServiceSpecificExitCode = 0;
+
+ ReportSvcStatus (
+ SERVICE_START_PENDING,
+ NO_ERROR,
+ 3000
+ );
+
+ SvcInit (
+ dwArgc,
+ lpszArgv
+ );
}
BOOL
RegistryRead (
- HKEY hHive,
- wchar_t *szKeyPath,
- wchar_t *szValue,
- wchar_t *szData,
- DWORD *nSize
+ HKEY hHive,
+ wchar_t *szKeyPath,
+ wchar_t *szValue,
+ wchar_t *szData,
+ DWORD *nSize
) {
- HKEY hKey;
- long lSuccess;
-
- lSuccess = RegOpenKey (
- hHive,
- szKeyPath,
- &hKey
- );
-
- if...
2007 Mar 19
2
wineprefixcreate: msiexec.exe -- "Failed to open the service control manager"
...#39;t', 'C', 'o', 'n', 't',
'r', 'o', '
l', 'S', 'e', 't',
'\\', 'S', 'e', 'r', 'v', 'i', 'c', 'e', 's', '\\', 0
};
HKEY hkey;
status = RegCreateKeyExW(HKEY_LOCAL_MACHINE, key,
0, NULL, 0, KEY_READ | KEY_WRITE,
NULL, &hkey, NULL);
if (status == ERROR_SUCCESS) {
RegCloseKey(hkey);
}
^^^^^^^^
However, this seems kludgey and intuit...
2007 Dec 04
4
eventlog
Hi,
Hm, the string inserts are different, too. Any encoding issues? Your
user name uses extended ASCII, too, right? Not sure if that''s
significant or not.
I''ve cc''d the win32utils-devel list to see if anyone has any ideas.
Thanks,
Dan
botp wrote:
> On 12/4/07, Daniel Berger <djberg96 at gmail.com> wrote:
>> Can you tell us which record numbers in
2006 May 17
1
Need a little help with the pure Ruby win32-eventlog
Hi all,
I''m working on the EventLog#read method for the pure Ruby version of
win32-eventlog, but I''m stuck on the get_description private method.
Here are the problems:
* I don''t think I''m advancing the EVENTLOGRECORD properly between
iterations. Take a look at the end of the "while dwread > 0" loop. I
get some records, but not all of them.
2007 Dec 05
21
Fwd: win32/process problem
Any ideas?
---------- Forwarded message ----------
From: Christian Kerth <christian.ke... at dynamicmedia.at>
Date: Dec 5, 8:28 am
Subject: win32/process problem
To: comp.lang.ruby
I have an application that consists of serveral independent parts.
I want to use the Windows Process API to spawn the different
processes.
e.g.
require ''rubygems''
require
2008 Jul 23
5
Is Wine supporting .tlb files
In the course of the installation of trados, I have the runtime of the installshield ISProbe.tlb failing with error 2 (not found), although it's correctly there as well as dao2535.tlb of microsoft shared (not there but I could get it from the XP installation).
Questions are: Why is the first seen as not found although it's there - is this a registry problem?
Are these files important
2008 Jan 06
1
overheating Thinkpad X60s with 7.0-RC1
Hello everybody!
Since the update from 6.2-STABLE to 7.0 I'm encountering problems with the
temperature of my Thinkpad X60s. Under heavy load, e.g., make builworld or
compile gcc or... I get the following output in /var/log/messages:
Dec 29 01:53:13 delta1 root: WARNING: system temperature too high, shutting
down soon!
Dec 29 01:53:13 delta1 syslogd: /dev/:0: No such file or directory
Dec 29
2013 Nov 18
7
RHSrvAny: Fix failure on Windows 2003
The newly rebuilt RHSrvAny worked on Windows XP, Windows 2003 R2, and Windows
Vista+, but segfaulted on Windows 2003. After much investigation, the issue
seems to have been with inconsistent use of Unicode.
This series fixes compilation on Microsoft Visual C++ 2010 (the most recent
version which runs on Windows 2003), fixes all compiler warnings, and enabled
warnings during the build. The
2005 Sep 18
1
Wine07252005 spooler problem
...cInfo) = 0 then
begin
ErrMsg('StartDocPrinter');
Exit;
end;
I get an error that 'path not found'
I checked the source code printdrv.c, it is looking for something like this in the registry:
/* @@ Wine registry key: HKCU\Software\Wine\Printing\Spooler */
if(!RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Printing\\Spooler", &hkey))
but I can't find this in my setup when i run regedit, any help will be highly appreciated.
Thanks,
FrankW
---------------------------------
Yahoo! for Good
Click here to donate to the Hurricane Katrina r...
2005 Jan 29
1
roaming profiles - filesyncing problem with 3.0.10
...ions before.
Searching the web I discovered that some admins on the debian-list experienced the same problem : http://lists.debian.org/debian-user/2005/01/msg01329.html
Using the rpm for 3.0.10 for RedHat 9.0 the upgrade from 2.2.8 showed no problems/errors.
Clients:
OS : W2K / SP4(SP3)
Reg-Hack:HKEY-LOCAL-MACHINE\SOFTWARE\Microsoft\WindowsNT
\CurrentVersion\Winlogon\DeleteRoamingCache = 1 ( already used under 2.2.8 )
So, does anybody experience similar problems with 3.0.10 ?
regards
Josef
but this setting I used already under 2.2.8, so
2009 Jan 04
3
adobe reader 8.x can't decrypt using online authentication
...as the same problem. I have never been able to open a pdf file on my Ubuntu Linux machine if the file requires online validation of a user name and password to decrypt an encrypted file. This remains the only reason I have to use a windows computer, besides my own.
I'm hoping there is some hkey or something else simple that I can add or modify to let AR 8.x know that I am in fact connected to the Internet. Any ideas?
Thanks,
Justin
2006 May 17
3
Need a little help with the pureRubywin32-eventlog
> -----Original Message-----
> From: win32utils-devel-bounces at rubyforge.org
> [mailto:win32utils-devel-bounces at rubyforge.org] On Behalf Of
> Berger, Daniel
> Sent: Wednesday, May 17, 2006 12:07 PM
> To: Development and ideas for win32utils projects
> Subject: Re: [Win32utils-devel] Need a little help with the
> pureRubywin32-eventlog
>
>
> >
2006 Mar 10
2
Visual Fox Pro 6 application
Hi:
I'm trying to run an application that was made with Visual Fox Pro 6.
I tried some different previous versions of Wine like 0.9.3 and 0.9.7.
Sometimes I got error messages like "There's no enough memory to
complete this operation" and "Incompatible integer type..." or
something like that.
Finally I upgraded to 0.9.9 version and I had no previously mentioned