Tagged Questions
1
vote
0answers
71 views
How to check stereoscopic 3D mode in Delphi
I'm using Delphi to develop an application for the control of a third-party player that can play bluray 3D movie on Windows 7.
Is there a way to determinate if current display is in stereoscopic mode? ...
-4
votes
0answers
58 views
C++ dll not working with delphi 6 on windows 7 [closed]
I have a program coded with Delphi 6 that calls a DLL created with Visual Studio 2008. The DLL returns a pointer to a double datatype. Everything works fine on Windows XP SP3.
When executing on ...
3
votes
1answer
104 views
Segmentation fault when calling a Delphi function from Fortran
I have a Fortran 90 program which repeatedly calls on a Delphi function. The function gets called a large number of times but eventually the program quits with a segmentation fault.
I have an ...
0
votes
1answer
75 views
Render to texture in Delphi using OpenGL [closed]
I am making simple GUI for my not-so-simple OpenGL game. Since there is a big menu with a lot of control count, I grouped the controls and put them into different windows that could be accessed via ...
1
vote
1answer
115 views
ShowMessage in Delphi XE3 DllMain
DLL below is compiled with XE3.
library MyDLL;
uses System.SysUtils, System.Classes, Vcl.Dialogs;
{$R *.res}
var
II: Integer;
function Test: Integer;
begin
Result := II;
end;
exports Test;
...
-4
votes
1answer
146 views
I can not find the same extension in the Open Dialog
Why sometimes in the Open dialog I cannot load the same file extension on the Open dialog filters, so I had to refresh the first to find the file.
E.g.: Filter = *.jpg
I can not find the file *.jpg ...
0
votes
0answers
67 views
Can SetDisplayConfig be used to force a specific display configuration to be persistent across reboots
I've been trying to find a way to force windows 7 to always use a specific display configuration regardless of the number of displays physically connected and their EDID. This would mean that a ...
0
votes
0answers
143 views
Delphi, application scaling, Windows 7
Good day everyone.
I have a problem with Delphi 7 application being used for Windows 7.
It works perfect for older windows like XP, but on Win7 the form is scaled to higher dpi which completely ...
2
votes
0answers
253 views
displaySwitch.exe code replacement for windows (pre windows 7)
I'm writing an app I'd like to be backwardly compatible to some extent on XP, or at the very least windows vista.
EDIT FOR CLARITY: I need to be able to do what the first code snippet below does, but ...
3
votes
1answer
101 views
Need to resolve HMONITOR --> deviceName (or deviceName --> HMONITOR) in windows
EDIT - See Update at end
This is for Delphi 7.0 Build 4.453
Summary
I need to be able to take the Handle property from a TMonitor object (an element in the Monitors array in the TScreen component) ...
2
votes
2answers
163 views
How to make a form align to the edge of the screen like the taskbar?
I'm building a "dashboard" application which is always visible along any edge of any given monitor, even when other applications are maximized. I don't necessarily need it "always on top" (although I ...
1
vote
1answer
112 views
PCSCConnector and Windows 7
I'm using PCSCConnector from http://nobbi.com, last update - April 2004.
All work fine with Windows XP but with Windows 7 there has been some trouble.
When I press CTRL+F2 in the Delphi IDE ...
2
votes
2answers
482 views
How in Delphi can I run a command with administrator privileges?
I am trying to stop mysql from Delphi XE2 on Win 7. I have written some code based on something I found on the web for Delphi 7, that was supposed to do this, but it doesn't work:
function ...
4
votes
1answer
208 views
How to display delphi dll progressbar on taskbar from non-delphi app
I have a mixed CBuilder/Delphi dll that I load from a non-VCL host application. I'm using RAD Studio XE2. Upon loading the dll I set the Application handle to the host's main form, which has the ...
1
vote
1answer
159 views
“System Error. Code: 87” when calling ConvertStringSidToSid()
I must set prmissions on some folder for "Everyone" user group, so i need SID for this group. When I calling ConvertStringSidToSid() I get error "System Error. Code: 87 - Parameter is incorrect". Why? ...
1
vote
1answer
204 views
High resolution exe icon results in a low resolution icon on Windows desktop shortcut
I had a Delphi 6 application with a 16x16 icon. Recently I made the 64x64 version of it and recompiled the application.
This high-resolution icon is displayed on Windows 7 Superbar and in task ...
5
votes
4answers
686 views
Delphi: How to use ShowWindow properly on external application [duplicate]
Possible Duplicate:
How can I tell if another instance of my program is already running?
i use the following code before starting my application, to check if another instance
of it is ...
6
votes
2answers
444 views
How to detect addition of new serial port?
To communicate with micro controllers I use the serial port. I use TCommPortDriver 2.1 which works fine. However, it lacks the ability to detect the addition or removal of new comports. This happens ...
2
votes
3answers
677 views
Delphi ShellExecute not working in Windows 7
I just KNOW this is something simple, but I've tried all of the suggestions I could find on this forum, and I still can't get the following ShellExecute statements, which worked perfectly well for ...
4
votes
1answer
372 views
How to enable drag and drop between normal & UAC elevated privileges applications
I've read this answer about how one cannot use drag & drop files from explorer (typically running without extra admin privileges) with UAC-elevated applications.
One would think that elevating ...
1
vote
0answers
174 views
Delphi 2007 - ASP.net - Window already registered as a drop target / Failed to Find Event
I have a large ASP.net project that I need to maintain in Delphi 2007. When I open any ASP.net project, including a Hello World project, I immediately get an error message saying "This window has ...
5
votes
1answer
309 views
F12 not working in Delphi debugger on Windows 7/8
Pressing F12 while the program is running in the debugger should break the execution and open the debugger. This works correctly on Windows XP (tested with D2007 and XE2) but fails on Windows 7 and 8 ...
11
votes
2answers
679 views
How to get handle of a console window launched from my GUI application?
In my GUI app I run console app and need handle of its window. I tried with EnumWindows(), see code below, but it does not work. On list there is no my console app.
type
TEnumWindowsData = record
...
0
votes
2answers
343 views
Sending WM_COPY from a Delphi app. to another process in Windows 7
I have a Delphi (BDS 2006) application which sends keystrokes to QuickBooks accounting software to traverse QuickBooks forms (invoices), copy text from the current edit control to the Windows ...
1
vote
1answer
274 views
how to get maximum volume level in delphi?
I try Get and Set the MediaPlayer Sound Volume by
http://delphi.about.com/od/adptips2006/qt/mediaplayer_vol.htm
but 1000 is not full sound volume. how to get Maximum volume level?
0
votes
0answers
87 views
selectcliprgn effects on context menu's
I have created my own graphics component based on TcustomControl.
The control first draws a border area were textual information is drawn, it then sets a rectangular clipregion some percentage in ...
0
votes
1answer
175 views
How do I pick folders only, using TOpenFileName? [closed]
I need to be able to select folders using the native Windows 7 open dialog, ie. not by using SelectDirectory().
I currently have a procedure that calls up a dialog using TOpenFileName, which works ...
2
votes
1answer
541 views
Why the FindFirstFile/FindNextFile does not list the entire content of the system directory on Windows 7?
I have a little question. The API FindNextFile does not list the entire contents of the directory C:\Windows\System32 (Windows 7 only). Anyone have any solution?
Code [Delphi]:
Var
sAtr: ...
0
votes
1answer
292 views
Restore delphi form windows 7
I have an application written in Delphi XE and I can maximize and minimize using Windows XP without problems. Using Windows 7 I can't restore the application after minimize it. I click the taskbar and ...
3
votes
1answer
586 views
WIA Skip device selection dialog while scanning
I'm working with WIA 2.0 with Delphi XE2. Right now, I'm attempting to get a scanner to scan. At first I was using CommonDialog.ShowAcquireImage which was working fine, except for one thing. I would ...
-1
votes
3answers
344 views
Cannot debug Delphi process because of UAC
I found interesting problem with Win7/X64 machine.
For this time I haven't got problem with Delphi 6 and UAC.
The exes are working in their's place, so I can use Delphi debugger with them.
But today ...
0
votes
0answers
275 views
taskbar disappear when set to auto-hide an my window set to maximized
I set the Windows taskbar to auto-hide
when i set my application to maximized the small 2 pixel lignes of the taskbar at the bottom disappear and i can't acces to the taskbar after
if i minimize my ...
1
vote
0answers
414 views
Why does reconnecting to an Oracle database via dbExpress cause an access violation?
I have a Delphi 2006 application running on Windows 7 that connects to an Oracle database via dbExpress using an Oracle 11 client install. After the first connect, I can query data and everything ...
3
votes
1answer
132 views
Registry “forgetting” values
My software stores some values in HKCU\Software\mysoftware which has never been a problem. However, I now also store some values in HKCU\Software\mysoftware\Licenses - ie a subdirectory of the ...
4
votes
1answer
459 views
Why does TDateTimePicker.Checked return always True on Windows 7?
I have an application, built in Delphi 2007, with a TDateTimePicker on the form. This date time picker has the ShowCheckbox property set to True, which next to date or time displays a check box, that ...
11
votes
1answer
271 views
How can I create a menu in the start menu for my program?
This may be an easy question but I am not even sure of the terminology to search, so I have to ask. I want my program to have a menu when it is hovered over if it is pinned to the start menu. I am ...
4
votes
3answers
398 views
Delphi: File access and compatibility files (windows 7)
Let's suppose my app in named mysoft and the file I want to READ is afile.bin. mysoft is in the program file folder.
Let's also suppose that mysoft is not executed with admin privileges.
procedure ...
3
votes
2answers
634 views
Why does a combo box change its text to an item text at font change?
It's obviously a bug, but I cannot track down why happens. Here is a minimalistic code to reproduce. Just drop a combo box and button on a form and write the following event handlers:
procedure ...
3
votes
1answer
243 views
Exception calling “IAudioSessionManager2.GetSessionEnumerator()” in Delphi XE2
The code below, compiled under Delphi XE2 Win32 and running under Win 7 64 bit, produces the following exception when executing the line "AudioSessionManager2.GetSessionEnumerator":
"Project22.exe ...
0
votes
1answer
133 views
Vista/7 CoreAudio pascal files for Delphi
I've been looking all around for the CoreAudio pascal files and I can't find them. I searched the Rad Studio XE2 source directory to no avail.
On Google I found some partial files but none I found ...
3
votes
0answers
158 views
Delphi component or toolkit for implementing Windows 7 federated search?
Has anybody seen a Delphi VCL component with source code that makes it easier to implement a Windows 7 federated search plugin? If not that, how about a good source code sample or article?
1
vote
1answer
163 views
“<Programm> has stopped working” explanation
Can someone explain me when Windows shows this message?
What do i have to do to stop my Program from throwing this exception?
I have a Delphi Windows Forms Program which throws this message short ...
0
votes
1answer
331 views
Failed to find the RegisterModule entrypoint in the module DLL… - what's going on?
I have an ISAPI module (native - NO ASP.net etc) written in Delphi XE. Trying to run it on IIS 7.5 on a Win 7 64 enterprise desktop machine.
App pool, webSite, etc are configured correctly, ISAPI ...
2
votes
2answers
586 views
Window 7 & Windows Server 2008 R2: significant increase in run time
We are developing a console software, with Delphi 7.
To simplify, this software is using an embedded TCP server to answer to external requests from a CGI. These answers contain generated HTML pages ...
0
votes
1answer
180 views
SmartCards in Windows 7
I'm using ACOS3X smart cards in my Delphi application for user authentication. Everything is fine in Windows XP, but in Windows 7, every time I put the card into the reader (which is ACR38-CCID), ...
3
votes
0answers
223 views
Catch audio sessions events
I try to write some application that will monitor audio sessions (like SndVol does). I activated IAudioSessionManager2, got list of current audio sessions through IAudioSessionEnumerator, registered ...
3
votes
1answer
518 views
TTimer not firing
I'm having a strange problem. I have a TTimer on my main form that should trig 500 msec. after the form is created.
It works fine when I run it from IDE, but when I run it on other W7 PC's the main ...
1
vote
2answers
2k views
Fatal Error: Cannot create output file “project1.exe”
So for some time now I keep having this problem:
on windows 7 (64bit), with Delphi 7 and Delphi XE2, if from within the IDE, I compile a program, run it, stop it, change it and rerun it I get this ...
0
votes
2answers
364 views
Block Ctrl+Atl+Delete Windows 7
How to block Ctrl+Alt+Delete key combination on Windows 7 with Delphi or anyway
1
vote
1answer
517 views
Managing apps volume in Windows 7
How can I retrieve the list of application audio sessions (like in Windows volume mixer)
and change volume of one application (for example, Mozilla) manually (C++, Delphi)? Skype do something the same ...

