User RRUZ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:18:36Zhttp://stackoverflow.com/feeds/user/91299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1896992/jsplitpane-analogue-for-delphi/1897334#18973343Answer by RRUZ for JSplitPane analogue for DelphiRRUZ2009-12-13T18:51:53Z2009-12-13T18:51:53Z<p>The <a href="http://jvcl.delphi-jedi.org/" rel="nofollow">JVCL</a> components comes with 4 splitters.</p>
<p><img src="http://i46.tinypic.com/f0rf9y.png" alt="alt text"></p>
<ul>
<li>TJvSplitter</li>
<li>TJvxSplitter</li>
<li>TJvSyncSplitter</li>
<li><strong>TJvNetscapeSplitter</strong> (This is very similar (visually) to JSplitPane)</li>
</ul>
http://stackoverflow.com/questions/1894128/sql-query-builder-in-delphi/1894331#18943311Answer by RRUZ for SQL Query builder in DelphiRRUZ2009-12-12T18:43:26Z2009-12-12T18:43:26Z<p>Try <a href="http://sqlmanager.net/en/products/tools/querybuilder" rel="nofollow">EMS Advanced Query Builder</a>.</p>
<blockquote>
<p>is a powerful component suite for
Borland® Delphi® and C++ Builder®
intended for visual building SQL
statements for the SELECT, INSERT,
UPDATE and DELETE clauses. It allows
you to build new queries visually
and/or graphically represent the
existing queries in your own
applications. The suite includes
components for working with standard
SQL, MS SQL, InterBase/Firebird,
MySQL, PostgreSQL and many more
dialects. Advanced Query Builder
enables users to make up large and
complicated SQL queries with unions
and subqueries for different servers
without any knowledge of the SQL
syntax.</p>
</blockquote>
<p><img src="http://sqlmanager.net/i/scr/tools/querybuilder/hs2130%5FUsing%20navigation%20bar.gif" alt="alt text"></p>
<p><img src="http://sqlmanager.net/i/scr/tools/querybuilder/hs2170%5FSetting%20output%20fields.gif" alt="alt text"></p>
http://stackoverflow.com/questions/1892222/normalize-columns-names-in-oracle-11g1Normalize columns names in ORACLE 11g RRUZ2009-12-12T03:58:00Z2009-12-12T07:14:39Z
<p>Hello, I need remove the quotes from the names of the columns in many tables in my schema. there is any way to automate this process?, any function in oracle or some tool that allows me to change the names of the columns removing the quotes. I am using oracle 11g.</p>
<p><strong>UPDATE</strong></p>
<p>I'm sorry, I had to rephrase my question.</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/1892041/delphi-5-strtofloat-results-differntly-on-winxp-and-win2k/1892115#189211510Answer by RRUZ for Delphi 5 - StrToFloat results differntly on WinXP and Win2KRRUZ2009-12-12T03:02:42Z2009-12-12T03:02:42Z<p>the <strong>DecimalSeparator</strong> variable stores the value of the Windows decimal separator as defined in the regional settings. If a decimal point appears in the String to convert with the <strong>StrToFloat</strong> function then it must match with the current DecimalSeparator value. I believe that although the regional settings match the decimal separator must be different in both systems. you can check with this code the values set in both systems.</p>
<pre><code>uses
Windows;
procedure TForm1.Button3Click(Sender: TObject);
Var
StrDummy : string;
begin
StrDummy:='Decimal Separator in Windows '+GetLocaleChar(GetThreadLocale, LOCALE_SDECIMAL, '.')+#13#10+
'Decimal Separator in Delphi '+DecimalSeparator;
ShowMessage(StrDummy);
end;
</code></pre>
http://stackoverflow.com/questions/1888620/is-there-a-problem-in-my-delphi-prism-net-compiler/1889267#18892674Answer by RRUZ for Is there a problem in my delphi prism (.net) compiler?RRUZ2009-12-11T16:41:19Z2009-12-11T21:16:02Z<p>The units (namespaces in .net) Windows and Tlhelp32 are not part of <a href="http://www.embarcadero.com/products/delphi-prism" rel="nofollow">Delphi Prism</a> (.Net), they exist only in Delphi Win32, the first thing you must do, to compile your project is to remove these namespaces in the header of your code. Then you can use <a href="http://msdn.microsoft.com/en-us/library/aa712982%28VS.71%29.aspx" rel="nofollow">PInvoke</a> (Platform Invocation Services) to calling Win32 functions and other unmanaged APIs from managed code (.Net).</p>
<p>I recommend you see these links</p>
<ul>
<li><a href="http://www.pinvoke.net/" rel="nofollow">http://www.pinvoke.net/</a></li>
<li><a href="http://prismwiki.codegear.com/en/Main%5FPage" rel="nofollow">Delphi Prism Wiki</a></li>
</ul>
<p>Bye.</p>
http://stackoverflow.com/questions/1881853/oracle-select-without-from3ORACLE - Select without FROMRRUZ2009-12-10T15:41:16Z2009-12-11T05:13:52Z
<p>in <strong>SQL Server</strong> is possible to make a select without reference to a table. something like</p>
<pre><code>Select 1.2 +3, 'my dummy string'
</code></pre>
<p>As <strong>Oracle</strong> does not allow a SELECT without a FROM, I use the dual table for this type of operations, ie something like</p>
<pre><code>Select 1,2+3, 'my dummy string' FROM DUAL
</code></pre>
<p>There is a better way of doing this type of querys? it is good practice to use the dual table?</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/1875477/what-is-the-paramstr-equivalent-in-delphi-prism/1875496#18754965Answer by RRUZ for What is the paramstr equivalent in Delphi PrismRRUZ2009-12-09T17:26:47Z2009-12-10T03:13:35Z<p>Delphi Prism (.Net) does not include the <a href="http://www.delphibasics.co.uk/RTL.asp?Name=ParamStr" rel="nofollow"><strong>ParamStr</strong></a> function, but can be easily implemented using the <a href="http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx" rel="nofollow"><strong>GetCommandLineArgs</strong></a> method, <a href="http://theroadtodelphi.wordpress.com/2009/10/02/using-paramstr-in-delphi-prism/" rel="nofollow">here</a> is an example :</p>
<pre><code>class method TMyClass.ParamStr(Index: Integer): String;
var
MyAssembly: System.Reflection.Assembly;
Params : array of string;
begin
if Index = 0 then
begin
MyAssembly:= System.Reflection.Assembly.GetEntryAssembly;
if Assigned(MyAssembly) then
Result := MyAssembly.Location
else
Result := System.Diagnostics.Process.GetCurrentProcess.MainModule.FileName;
end
else
begin
Params := System.Environment.GetCommandLineArgs;
if Index > Length(Params) - 1 then
Result := ''
else
Result := Params[Index];
end;
end;
</code></pre>
<p>Also you can see the <a href="http://code.remobjects.com/p/shineon/" rel="nofollow">ShineOn</a> project that includes an implementation of the function <a href="http://code.remobjects.com/p/shineon/source/tree/HEAD/trunk/Source/ShineOn.RTL/System.pas" rel="nofollow">ParamStr</a>.</p>
http://stackoverflow.com/questions/1873525/windows-7-sidebar-gadgets/1873584#18735848Answer by RRUZ for Windows 7 sidebar gadgetsRRUZ2009-12-09T12:27:42Z2009-12-09T12:27:42Z<p>It depends on the task of your gadget. you could encapsulate logic within a delphi activex and to include in a gadget without problems.</p>
<blockquote>
<p>The Windows Vista/7 gadgets are
essentially mini-HTML applications.
The user interface is composed of
pages containing regular HTML, CSS
,images and potentially ActiveX
controls.</p>
</blockquote>
<p>Check this link </p>
<p><a href="http://stackoverflow.com/questions/1629401/converting-tform-win32-app-to-win7-gadget-delphi">http://stackoverflow.com/questions/1629401/converting-tform-win32-app-to-win7-gadget-delphi</a></p>
http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc/1804637#18046370Answer by RRUZ for How can I access Blackfish for Windows over JDBC?RRUZ2009-11-26T16:29:35Z2009-12-08T05:52:29Z<p>The JDBC Drivers are located in the Blackfish SQL lib installation directory.</p>
<p>check theses files</p>
<ul>
<li><strong>jds.jar</strong> Local JDBC database connectivity </li>
<li><strong>jdsremote.jar</strong> Remote JDBC thin client database connectivity </li>
</ul>
<p>You can read theses articles</p>
<ul>
<li><a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/bfsql/deployjds%5Fxml.html" rel="nofollow">Blackfish SQL Establishing Connections</a></li>
<li><a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/bfsql/deployjds%5Fxml.html" rel="nofollow">Blackfish SQL Deploying Blackfish SQL Database Applications</a></li>
</ul>
<p><strong>UPDATE</strong></p>
<p>You can download and install The Blackfish SQL 8 for Java Trial (Windows Version) wich includes the JDBC Drivers from <a href="https://downloads.embarcadero.com/free/blackfish%5Fsql" rel="nofollow">here</a>.</p>
<p><img src="http://i50.tinypic.com/10e1s2h.png" alt="alt text"></p>
http://stackoverflow.com/questions/1860656/timagelist-component-for-delphi-7-wich-supports-png-images0TImageList component for Delphi 7 Wich supports PNG Images.RRUZ2009-12-07T15:22:05Z2009-12-07T16:49:34Z
<p>Hello, anyone knows a component that descends from TImageList and support PNG images, and compatible with Delphi 7.</p>
<p>Thanks in advance.</p>
<p>Bye.</p>
http://stackoverflow.com/questions/1857037/determine-the-parent-process-of-the-current-app/1857762#18577624Answer by RRUZ for Determine the parent process of the current appRRUZ2009-12-07T04:12:35Z2009-12-07T04:12:35Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/ms682489%28VS.85%29.aspx" rel="nofollow">CreateToolhelp32Snapshot</a> funtion to enumerate the running process list and then the <a href="http://msdn.microsoft.com/en-us/library/ms684834%28VS.85%29.aspx" rel="nofollow">Process32First</a> function to get the <a href="http://msdn.microsoft.com/en-us/library/ms684839%28VS.85%29.aspx" rel="nofollow">th32ParentProcessID</a> wich is the identifier of the process that created this process (its parent process).</p>
<p>See this example . </p>
<pre><code>uses
Psapi,
Windows,
tlhelp32,
SysUtils;
function GetTheParentProcessFileName(): String;
const
BufferSize = 4096;
var
HandleSnapShot : THandle;
EntryParentProc : TProcessEntry32;
CurrentProcessId: THandle;
HandleParentProc: THandle;
ParentProcessId : THandle;
ParentProcessFound : Boolean;
ParentProcPath : String;
begin
ParentProcessFound := False;
HandleSnapShot := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); //enumerate the process
if HandleSnapShot <> INVALID_HANDLE_VALUE then
begin
EntryParentProc.dwSize := SizeOf(EntryParentProc);
if Process32First(HandleSnapShot, EntryParentProc) then //find the first process
begin
CurrentProcessId := GetCurrentProcessId(); //get the id of the current process
repeat
if EntryParentProc.th32ProcessID = CurrentProcessId then
begin
ParentProcessId := EntryParentProc.th32ParentProcessID; //get the id of the parent process
HandleParentProc := OpenProcess(PROCESS_QUERY_INFORMATION or PROCESS_VM_READ, False, ParentProcessId);
if HandleParentProc <> 0 then
begin
ParentProcessFound := True;
SetLength(ParentProcPath, BufferSize);
GetModuleFileNameEx(HandleParentProc, 0, PChar(ParentProcPath),BufferSize);
ParentProcPath := PChar(ParentProcPath);
CloseHandle(HandleParentProc);
end;
break;
end;
until not Process32Next(HandleSnapShot, EntryParentProc);
end;
CloseHandle(HandleSnapShot);
end;
if ParentProcessFound then
Result := ParentProcPath
else
Result := '';
end;
</code></pre>
http://stackoverflow.com/questions/1713389/wmi-vs-windows-apis1WMI vs Windows APIsRRUZ2009-11-11T06:16:39Z2009-12-02T23:01:46Z
<p>There are any advantages or disadvantages of using the <a href="http://msdn.microsoft.com/en-us/library/aa394582%28VS.85%29.aspx" rel="nofollow">WMI</a> instead of <a href="http://msdn.microsoft.com/en-us/library/aa383749%28VS.85%29.aspx" rel="nofollow">Windows API</a> to access to the information of the system? as speed, additional permissions, memory usage.</p>
<p>or depends on the WMI class and how the WMI implements the access to the information?</p>
http://stackoverflow.com/questions/1812479/setting-ttabcontrol-color-after-xpmanifest-in-delphi/1812542#18125423Answer by RRUZ for Setting TTabControl color after XPManifest in DelphiRRUZ2009-11-28T13:41:26Z2009-11-30T23:45:12Z<p>To change the color of a TTabControl must put the <strong>OwnerDraw</strong> property to true <strike>false </strike> and write your own code to draw the tabs and the background in the <strong>OnDrawTab</strong> Event.</p>
<p>see this example.</p>
<pre><code>procedure TForm38.TabControl1DrawTab(Control: TCustomTabControl; TabIndex: Integer; const Rect: TRect; Active: Boolean);
var
y : Integer;
x : Integer;
aRect: TRect;
begin
if Active then
begin
//Fill the tab rect
Control.Canvas.Brush.Color := clWebGainsboro;
Control.Canvas.FillRect(Rect);
//Fill the background
aRect.Left:=1;
aRect.Right:=Control.Width-1;
aRect.Bottom:=Control.Height-1;
aRect.Top:=Rect.Bottom+1;
Control.Canvas.FillRect(aRect);
end
else
begin
//Fill the tab rect
Control.Canvas.Brush.Color := clBtnFace;
Control.Canvas.FillRect(Rect);
end;
y := Rect.Top + ((Rect.Bottom - Rect.Top - Control.Canvas.TextHeight(TTabControl(Control).Tabs[TabIndex])) div 2) + 1;
x := Rect.Left + ((Rect.Right - Rect.Left - Control.Canvas.TextWidth (TTabControl(Control).Tabs[TabIndex])) div 2) + 1;
//draw the tab title
Control.Canvas.TextOut(x,y,TTabControl(Control).Tabs[TabIndex]);
end;
</code></pre>
http://stackoverflow.com/questions/1807271/what-are-some-common-wmi-queries/1808087#18080871Answer by RRUZ for What are some common WMI queriesRRUZ2009-11-27T10:58:00Z2009-11-27T10:58:00Z<p>I think it's a bit complicated recommend a couple of classes in particular because the WMI is extensive and depends on the type of information you wish to obtain.</p>
<p>My recommendation is that you see the following links.</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa394572%28VS.85%29.aspx" rel="nofollow">WMI Reference</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa394554%28VS.85%29.aspx" rel="nofollow">WMI Classes</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa394084%28VS.85%29.aspx" rel="nofollow"><strong>WMI Win32 Classes</strong></a></li>
</ul>
http://stackoverflow.com/questions/1802819/how-can-i-add-a-new-application-new-file-wizard-to-the-delphi-ide-new-dia/1803006#18030061Answer by RRUZ for How can I add a new application / new file wizard to the Delphi IDE "New ..." dialog?RRUZ2009-11-26T10:56:30Z2009-11-26T11:10:27Z<p>You can try the <a href="http://help.delphi-jedi.org/unit.php?Id=3035" rel="nofollow">JvWizard</a> from the <a href="http://jvcl.delphi-jedi.org/" rel="nofollow">JVCL</a> Components.</p>
<p>you can check an example of use <a href="http://translate.google.com/translate?hl=es&sl=ru&tl=en&u=http%3A%2F%2Fwww.tdelphiblog.com%2F2008%2F12%2Fwizarda-delphi-jvcl-jvwizard%5F31.html" rel="nofollow">here</a> (translated page)</p>
<p><img src="http://vingrad.ru/blogs/bose/files/2008/12/image26.png" alt="alt text"></p>
<p>Bye.</p>
http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801644#180164414Answer by RRUZ for Should I start my new shareware project in C# or Delphi?RRUZ2009-11-26T05:07:48Z2009-11-26T05:21:12Z<p>I do not think that the security of your source code is a good reason to choose between C # and Delphi. if you create an .Net executable you can protect it with a tool like <a href="http://www.eziriz.com/" rel="nofollow">.Net Reactor</a>, on the othe hand the win32 executables are by definition very difficult to disassemble (get the original source code) unless you include debug information in them.</p>
<p>You should compare other features, <strong>in my opinion you should use the language with which you feel more comfortable and you have more skills</strong>.</p>
<p>In my case it always chooses delphi, because it has an excellent and fast compiler and thousands of third party components and in addition to generating executables without dependencies. ;)</p>
<p>You can check this question</p>
<p><a href="http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware">What language or RAD IDE do you recommend for building shareware?</a></p>
<p>Also you can check this list of applications built with Delphi</p>
<p><a href="http://delphi.wikia.com/wiki/Good%5FQuality%5FApplications%5FBuilt%5FWith%5FDelphi" rel="nofollow">Good Quality Applications Built With Delphi</a></p>
<p>Among them <a href="http://www.skype.com" rel="nofollow">Skype</a>, <a href="http://www.toadsoft.com/" rel="nofollow">TOAD</a>, <a href="http://flstudio.image-line.com/" rel="nofollow">FL Studio</a>.</p>
http://stackoverflow.com/questions/1800485/atch-the-start-applications/1800749#18007492Answer by RRUZ for Сatch the start applications RRUZ2009-11-25T23:49:02Z2009-11-25T23:49:02Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/ms683223%28VS.85%29.aspx" rel="nofollow">GetProcessTimes</a> function to get timing information for a particular process.</p>
<pre><code>BOOL WINAPI GetProcessTimes(
__in HANDLE hProcess,
__out LPFILETIME lpCreationTime,
__out LPFILETIME lpExitTime,
__out LPFILETIME lpKernelTime,
__out LPFILETIME lpUserTime
);
</code></pre>
<p>See this example </p>
<pre><code>program GetProcessTime;
{$APPTYPE CONSOLE}
uses
DateUtils,
Windows,
tlhelp32,
SysUtils;
Procedure GetAllProcessTime;
var
HandleSnapShot : THandle;
EntryParentProc : TProcessEntry32;
DummyCreateFileTime : Windows.FILETIME;
DummyExitFileTime : Windows.FILETIME;
DummyKernelFileTime : Windows.FILETIME;
DummyUserFileTime : Windows.FILETIME;
aFileName : String;
h : THandle;
ActualTime : TDateTime;
Dif : TDateTime;
CreationTime : TDateTime;
function FileTime2DateTime(FileTime: TFileTime): TDateTime; //Convert then FileTime to TDatetime format
var
LocalTime: TFileTime;
DOSTime : Integer;
begin
FileTimeToLocalFileTime(FileTime, LocalTime);
FileTimeToDosDateTime(LocalTime, LongRec(DOSTime).Hi, LongRec(DOSTime).Lo);
Result := FileDateToDateTime(DOSTime);
end;
begin
HandleSnapShot := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); //get the list of process
if HandleSnapShot <> INVALID_HANDLE_VALUE then
begin
EntryParentProc.dwSize := SizeOf(EntryParentProc);
if Process32First(HandleSnapShot, EntryParentProc) then //Get the first process in the list
begin
Writeln( Format('%-30s %-20s %-16s',['FileName','Start','Running Time']) );
ActualTime:=Now;
repeat
h:=OpenProcess(PROCESS_QUERY_INFORMATION,false,EntryParentProc.th32ProcessID); //open a particular process
if GetProcessTimes(h, DummyCreateFileTime, DummyExitFileTime, DummyKernelFileTime, DummyUserFileTime) then //get the timing info
begin
aFileName:=ExtractFileName(EntryParentProc.szExeFile);
CreationTime:=FileTime2DateTime(DummyCreateFileTime); //get the initial time of the process
Dif := ActualTime-CreationTime; //calculate the elapsed time
Writeln( Format('%-30s %-20s %-16s',[aFileName,FormatDateTime('DD-MM-YYYY HH:NN:SS',CreationTime),FormatDateTime('HH:NN:SS',Dif)]) );
end;
CloseHandle(h);
until not Process32Next(HandleSnapShot, EntryParentProc);
end;
CloseHandle(HandleSnapShot);
end;
end;
begin
try
GetAllProcessTime();
Readln;
except
on E: Exception do
begin
Writeln(E.ClassName, ': ', E.Message);
Readln;
end;
end;
end.
</code></pre>
http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781299#17812999Answer by RRUZ for Fluid Form Layout in DelphiRRUZ2009-11-23T05:43:47Z2009-11-23T06:09:43Z<p>I think your best option is to use a component that handles the layout of your vcl controls on your form in runtime (depending on the conditions that you define). I recommend you try the <a href="http://www.devexpress.com/Products/VCL/ExLayoutControl/" rel="nofollow">Devexpress ExpressLayout Control</a></p>
<p>you can find two great demo videos here</p>
<ul>
<li><a href="http://tv.devexpress.com/VCLLayoutCustomizeLayoutViews.movie" rel="nofollow">ExpressLayout Control - How to Customize Layout Views</a></li>
<li><a href="http://tv.devexpress.com/ExpressLayoutCreateCustomize.movie" rel="nofollow">ExpressLayout Control - Create and Customize a Simple Layout</a></li>
</ul>
<p><img src="http://www.devexpress.com/Products/VCL/ExLayoutControl/i/main%5Fscreen.gif" alt="alt text"></p>
<p>You can check these <a href="http://www.devexpress.com/Products/VCL/ExLayoutControl/Features.xml" rel="nofollow">features</a></p>
<p><strong>Auto-Management</strong> - Control groups and individual control elements are automatically managed by the Layout Control. You never worry about pixel-by-pixel positioning.</p>
<p><strong>Form auto-sizing</strong> - The form can be automatically resized to fit its contents best. </p>
<p>Bye.</p>
http://stackoverflow.com/questions/1745772/hidden-features-of-delphi-prism2Hidden Features of Delphi prismRRUZ2009-11-17T00:18:36Z2009-11-20T11:13:39Z
<p>Continuing with the series "Hidden features" I think it's time to <a href="http://www.embarcadero.com/products/delphi-prism" rel="nofollow">Delphi Prism</a>. I believe that's a great way to encourage the development of delphi prism, is that we all share what we discovered in the daily use of this great language.</p>
<p><img src="http://prismwiki.codegear.com/en-w/images/a/a7/Prism-48h.png" alt="alt text"></p>
<p>Bye.</p>
http://stackoverflow.com/questions/1766527/how-can-activate-a-glass-effect-windows-vista-7-in-a-console-application-using/1766561#176656112Answer by RRUZ for How can activate a glass effect (windows Vista/7) in a console application using DelphiRRUZ2009-11-19T21:08:12Z2009-11-19T21:08:12Z<p>Hi @Salvador, a couple of weeks ago I published this <a href="http://theroadtodelphi.wordpress.com/2009/10/26/glass-effect-in-a-delphi-console-application/" rel="nofollow">article</a> on my blog.</p>
<p>The key is use the <a href="http://msdn.microsoft.com/en-us/library/ms683175%28VS.85%29.aspx" rel="nofollow">GetConsoleWindow</a> and <a href="http://msdn.microsoft.com/en-us/library/aa969508%28VS.85%29.aspx" rel="nofollow">DwmEnableBlurBehindWindow</a> functions. </p>
<p>The GetConsoleWindow function retrieves the window handle used by the console associated with the calling process. </p>
<p>The DwmEnableBlurBehindWindow function Enables the blur effect (glass) on the provided window handle.</p>
<pre><code>program ConsoleGlassDelphi;
{$APPTYPE CONSOLE}
uses
Windows,
SysUtils;
type
DWM_BLURBEHIND = record
dwFlags : DWORD;
fEnable : BOOL;
hRgnBlur : HRGN;
fTransitionOnMaximized : BOOL;
end;
function DwmEnableBlurBehindWindow(hWnd : HWND; const pBlurBehind : DWM_BLURBEHIND) : HRESULT; stdcall; external 'dwmapi.dll' name 'DwmEnableBlurBehindWindow';//function to enable the glass effect
function GetConsoleWindow: HWND; stdcall; external kernel32 name 'GetConsoleWindow'; //get the handle of the console window
function DWM_EnableBlurBehind(hwnd : HWND; AEnable: Boolean; hRgnBlur : HRGN = 0; ATransitionOnMaximized: Boolean = False; AFlags: Cardinal = 1): HRESULT;
var
pBlurBehind : DWM_BLURBEHIND;
begin
pBlurBehind.dwFlags:=AFlags;
pBlurBehind.fEnable:=AEnable;
pBlurBehind.hRgnBlur:=hRgnBlur;
pBlurBehind.fTransitionOnMaximized:=ATransitionOnMaximized;
Result:=DwmEnableBlurBehindWindow(hwnd, pBlurBehind);
end;
begin
try
DWM_EnableBlurBehind(GetConsoleWindow(), True);
Writeln('See my glass effect');
Writeln('Go Delphi Go');
Readln;
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
end.
</code></pre>
<p>This is just a basic example, you must check the windows OS version to avoid issues.</p>
<p><img src="http://theroadtodelphi.files.wordpress.com/2009/10/glass-console.png?w=600&h=365" alt="alt text"></p>
http://stackoverflow.com/questions/1760929/how-to-encode-a-datetime-in-delphi/1760943#176094318Answer by RRUZ for How to encode a datetime in delphiRRUZ2009-11-19T04:48:34Z2009-11-19T12:41:48Z<p>Try using the <a href="http://docwiki.embarcadero.com/VCL/en/DateUtils.EncodeDateTime" rel="nofollow"><strong>EncodeDateTime</strong></a> function declarated in the DateUtils unit.</p>
<pre><code>function EncodeDateTime(const AYear: Word;
const AMonth: Word;
const ADay: Word;
const AHour: Word;
const AMinute: Word;
const ASecond: Word;
const AMilliSecond: Word): TDateTime;
</code></pre>
<p>See this example</p>
<pre><code>uses
DateUtils;
var
myDateTime : TDateTime;
begin
//Your Code
myDateTime := EncodeDateTime(2009, 11, 28, 14, 23, 12, 000);
//Your Code
End;
</code></pre>
<p><strong>Another option</strong></p>
<pre><code>uses
SysUtils;
var
myDateTime : TDateTime;
begin
//Your Code
myDateTime:= EncodeDate(2009,11,28)+EncodeTime(14,23,12,000);
//Your Code
end;
</code></pre>
<p>The second option works because the <a href="http://docwiki.embarcadero.com/VCL/en/System.TDateTime" rel="nofollow">TDatetime</a> It is stored as a Double (<code>TDateTime = type Double;</code>), with the date as the integral part (the <a href="http://docwiki.embarcadero.com/VCL/en/SysUtils.EncodeDate" rel="nofollow">EncodeDate</a> function returns the integral), and time as fractional part. </p>
<p>The date part of the TDateTime represents the number of days that have passed since 12/30/1899. a TDateTime can be any date through 31 Dec 9999 (decimal value 2,958,465), TDateTime values can also be negative. The decimal value -693593 corresponds to 1 Jan 0001.</p>
<p>see theses examples</p>
<pre><code>var
myDateTime : TDateTime;
Begin
myDateTime :=0; //represents 12/30/1899
myDateTime :=1; //represents 12/31/1899
myDateTime :=-1; //represents 12/29/1899
myDateTime :=-693593; //represents 01/01/0001
myDateTime := Now(); //assign the current date and time to myDateTime
myDateTime:=Trunc(Now()); //Extract only the date part.
myDateTime:=Frac(Now()); //Extract only the time part.
myDateTime :=Now() + 1;// Add a day to the current datetime
End;
</code></pre>
<p><strong>Important Note from embarcadero site :</strong></p>
<blockquote>
<p>To find the fractional number of days
between two dates, simply subtract the
two values, unless one of the
System.TDateTime values is negative.
Similarly, to increment a date and
time value by a certain fractional
number of days, add the fractional
number to the date and time value if
the System.TDateTime value is
positive.</p>
<p>When working with negative
System.TDateTime values, <strong>computations
must handle time portion separately</strong>.
The fractional part reflects the
fraction of a 24-hour day without
regard to the sign of the
System.TDateTime value. For example,
6:00 am on 12/29/1899 is –1.25, not –1
+ 0.25, which would be –0.75. There are no System.TDateTime values between
–1 and 0.</p>
</blockquote>
<p>for addtional information you can see this link </p>
<ul>
<li><a href="http://docwiki.embarcadero.com/RADStudio/en/Date/Time%5FSupport" rel="nofollow">Delphi Date/Time Support</a></li>
</ul>
http://stackoverflow.com/questions/1754389/how-to-call-a-ms-dos-batch-program-from-delphi-2010-application/1754510#17545108Answer by RRUZ for How to call a MS-DOS batch program from delphi 2010 applicationRRUZ2009-11-18T08:41:59Z2009-11-18T08:41:59Z<p>you can read these articles about CreateProcess and the unicode issues.</p>
<ul>
<li><p><a href="http://edn.embarcadero.com/article/38693" rel="nofollow">Delphi in a Unicode World Part III: Unicodifying Your Code</a> </p></li>
<li><p><a href="http://blog.delphi-jedi.net/2009/11/11/createprocess-declaration/" rel="nofollow">CreateProcess Declaration</a></p></li>
</ul>
<p>The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation.</p>
<p>You can use the <a href="http://docwiki.embarcadero.com/VCL/en/System.UniqueString" rel="nofollow">UniqueString</a> function as workaround to fix the problem.</p>
<pre><code>Procedure TForm1.BatchProgramCall;
var
StartInfo: TStartUpInfo;
ProcInfo: TProcessInformation;
createOK: Boolean;
sMyBat: string;
begin
FillChar(StartInfo, SizeOf(TStartUpInfo), #0);
FillChar(ProcInfo, SizeOf(TProcessInformation), #0);
StartInfo.cb := SizeOf(TStartUpInfo);
StartInfo.dwFlags := STARTF_USESHOWWINDOW;
StartInfo.wShowWindow := SW_SHOWMINIMIZED;
sMyBat :='SOMEBATCHPROGRAM.BAT';
UniqueString(sMyBat); //this make the magic.
createOK := CreateProcess(Nil,pchar(sMyBat),Nil, Nil, false,
CREATE_NEW_PROCESS_GROUP+HIGH_PRIORITY_CLASS,
NIL, NIL, STARTINFO, PROCINFO);
if createOK then
waitForSingleObject(PROCINFO.HPROCESS, Infinite);
end;
</code></pre>
http://stackoverflow.com/questions/1753626/integer-parsing/1753661#17536610Answer by RRUZ for Integer parsingRRUZ2009-11-18T04:34:19Z2009-11-18T04:42:28Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.validating.aspx" rel="nofollow">Validating</a> event.</p>
<pre><code>private void textbox1_Validating(object sender, CancelEventArgs e)
{
try
{
Int64 numberEntered = Int64.Parse(textBox1.Text);
if (numberEntered > 2147483647)
{
e.Cancel = true;
MessageBox.Show("You have to enter number up to 2147483647");
}
}
catch (FormatException)
{
e.Cancel = true;
MessageBox.Show("You need to enter a valid integer");
}
}
private void InitializeComponent()
{
//
// more code
//
this.Textbox1.Validating += new System.ComponentModel.CancelEventHandler(this.textbox1_Validating);
}
</code></pre>
http://stackoverflow.com/questions/1753602/registers-for-x8664-processors/1753627#17536276Answer by RRUZ for Registers for X86_64 processorsRRUZ2009-11-18T04:24:40Z2009-11-18T04:24:40Z<p>try this <a href="http://msdn.microsoft.com/en-us/library/cc267760.aspx" rel="nofollow">link</a> </p>
<blockquote>
<p>x64 extends x64's 8 general-purpose
registers to be 64-bit, and adds 8 new
64-bit registers. The 64-bit registers
have names beginning with "r", so for
example the 64-bit extension of eax is
called rax. The new registers are
named r8 through r15.</p>
<p>The lower 32 bits, 16 bits, and 8 bits
of each register are directly
addressable in operands. This includes
registers, like esi, whose lower 8
bits were not previously addressable.
The following table specifies the
assembly-language names for the lower
portions of 64-bit registers.</p>
</blockquote>
<p><img src="http://i45.tinypic.com/10wtooh.png" alt="alt text"></p>
http://stackoverflow.com/questions/1753508/how-could-i-get-a-random-string-from-a-list-and-assign-it-to-a-variable/1753547#17535472Answer by RRUZ for How could I get a random string from a list and assign it to a variableRRUZ2009-11-18T04:06:05Z2009-11-18T04:06:05Z<p>try this</p>
<pre><code> List<string> firstNames = new List<string>();
firstNames.Add("name1");
firstNames.Add("name2");
firstNames.Add("name3");
firstNames.Add("namen");
Random randNum = new Random();
int aRandomPos = randNum.Next(firstNames.Count);//Returns a nonnegative random number less than the specified maximum (firstNames.Count).
string currName = firstNames[aRandomPos];
</code></pre>
http://stackoverflow.com/questions/1750519/want-to-script-all-objects-which-depend-on-a-sql-server-table/1750642#17506421Answer by RRUZ for Want to script all objects which depend on a SQL Server tableRRUZ2009-11-17T17:55:39Z2009-11-17T17:55:39Z<p>First you can try this link <a href="http://msdn.microsoft.com/en-us/library/ms345449.aspx" rel="nofollow">Understanding SQL Dependencies</a></p>
<p>Second, you have multiple options to check the Dependencies</p>
<p>using <a href="http://technet.microsoft.com/en-us/library/bb677315.aspx" rel="nofollow"><strong>*sql_expression_dependencies*</strong></a> table, to see the dependency of X on Y, run the following query. </p>
<pre><code>SELECT *
FROM sys.sql_expression_dependencies
WHERE referencing_id = OBJECT_ID('X')
AND referenced_id = OBJECT_ID('Y')
AND referenced_schema_name = 'dbo'
AND referenced_entity_name = 'Y'
AND referenced_database_name IS NULL
AND referenced_server_name IS NULL;
</code></pre>
<p>using the <a href="http://technet.microsoft.com/en-us/library/ms186293.aspx" rel="nofollow"><strong>syscomments</strong></a> table, SQL Server's syscomments table stores the original SQL definition statement for every view, rule, default, trigger, CHECK and DEFAULT constraint, and stored procedure in your database. That's a lot of information! You can query this table to list dependent objects using a SQL statement in the following form</p>
<pre><code>SELECT *
FROM syscomments
INNER JOIN sysobjects sysobj ON syscomments.id = sysobj.id
WHERE charindex('your object to check', text) > 0
</code></pre>
<p>using the <a href="http://msdn.microsoft.com/en-us/library/ms189487%28SQL.90%29.aspx" rel="nofollow"><strong>sp_depends</strong></a> stored procedure, wich displays information about database object dependencies, such as: the views and procedures that depend on a table or view, and the tables and views that are depended on by the view or procedure</p>
<pre><code>EXEC sp_depends @objname = N'your object to check'
</code></pre>
http://stackoverflow.com/questions/1749945/tutorial-for-pascal-delphi-for-c-coders/1750475#17504753Answer by RRUZ for Tutorial for Pascal/Delphi for C++-CodersRRUZ2009-11-17T17:32:55Z2009-11-17T17:37:56Z<p>You can check <a href="http://www.marcocantu.com/epascal/" rel="nofollow"><strong>Essential Pascal</strong></a> written by Marco Cantù, is a introduction to the Pascal programming language. you can download a <strong>free</strong> copy from <a href="http://www.marcocantu.com/epascal/EssentialPascal.zip" rel="nofollow">here</a>. </p>
<p><img src="http://www.marcocantu.com/epascal/epascal%5Fsmall.jpg" alt="alt text"></p>
<p>Another excellent site for beginners, is <a href="http://www.delphibasics.co.uk/" rel="nofollow"><strong>Delphi Basics</strong></a>, this web site provides help and reference for the fundamentals of the Delphi language. It gives an introduction to the Delphi Object Oriented Language for newcomers.</p>
http://stackoverflow.com/questions/1745617/top-5-things-an-ide-must-do/1745678#17456780Answer by RRUZ for Top 5 things an IDE must do?RRUZ2009-11-16T23:55:29Z2009-11-16T23:55:29Z<ol>
<li><strong>Support for external plugins</strong></li>
<li>Remote and local debugging</li>
<li>Fast Code completion</li>
<li>Multiple compilers support</li>
<li>Multiple language Syntax highlightning</li>
</ol>
http://stackoverflow.com/questions/1742900/tidhttp-in-indy-10/1743079#17430793Answer by RRUZ for TIdHTTP in Indy 10RRUZ2009-11-16T15:54:06Z2009-11-16T16:00:30Z<p>i think you have the TIdHTTP.<strong><a href="http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdHTTP%5FHandleRedirects.html" rel="nofollow">HandleRedirects</a></strong> property set to false, if you get the error "<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">HTTP/1.1 302 Found</a>" you can try this</p>
<pre><code>var
http_result:string;
Begin
IdHTTP1.HandleRedirects:=True;
http_result := IdHTTP1.Get('http://www.google.com');
End;
</code></pre>
http://stackoverflow.com/questions/1737768/get-all-windows-in-taskbar/1737851#17378511Answer by RRUZ for Get all windows in taskbarRRUZ2009-11-15T15:34:43Z2009-11-15T15:40:19Z<p>The windows displayed in taskbar are equivalent to those that appear when you press <kbd>ALT</kbd> + <kbd>Tab</kbd> So you can check these links.</p>
<p><a href="http://stackoverflow.com/questions/210504/enumerate-windows-like-alt-tab-does">Enumerate windows like alt-tab does</a></p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2007/10/08/5351207.aspx" rel="nofollow">Which windows appear in the Alt+Tab list?</a></p>
http://stackoverflow.com/questions/1892222/normalize-columns-names-in-oracle-11g/1892267#1892267Comment by RRUZ on Normalize columns names in ORACLE 11g RRUZ2009-12-12T04:43:25Z2009-12-12T04:43:25Zjust check the tables in the database and the problem is that were created using quotes.http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc/1804637#1804637Comment by RRUZ on How can I access Blackfish for Windows over JDBC?RRUZ2009-12-08T06:00:29Z2009-12-08T06:00:29Z@Ken and @mjustin, JDBC drivers are not included with Delphi, these are within Blackfish SQL for Java that can be downloaded from this location <a href="https://downloads.embarcadero.com/free/blackfish_sql" rel="nofollow">downloads.embarcadero.com/free/blackfish_sql/…</a>http://stackoverflow.com/questions/1860656/timagelist-component-for-delphi-7-wich-supports-png-images/1861051#1861051Comment by RRUZ on TImageList component for Delphi 7 Wich supports PNG Images.RRUZ2009-12-07T16:49:38Z2009-12-07T16:49:38ZThanks very much.http://stackoverflow.com/questions/1812479/setting-ttabcontrol-color-after-xpmanifest-in-delphi/1812542#1812542Comment by RRUZ on Setting TTabControl color after XPManifest in DelphiRRUZ2009-11-30T23:45:58Z2009-11-30T23:45:58ZCorrected, Ownerdraw should be true.http://stackoverflow.com/questions/1800620/search-file-1-in-file-2Comment by RRUZ on Search file 1 in file 2RRUZ2009-11-25T23:51:01Z2009-11-25T23:51:01ZWhat audio format do you use?http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781299#1781299Comment by RRUZ on Fluid Form Layout in DelphiRRUZ2009-11-23T06:05:18Z2009-11-23T06:05:18Z@Yogi Yang 007, this component allow to the end users to customize the layout, that is correct, but this is not the only feature of this control, nor the reason for what I recommend it.
http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776138#1776138Comment by RRUZ on Can I create an object of the same type as itself?RRUZ2009-11-21T17:38:38Z2009-11-21T17:38:38Z+1 for class method http://stackoverflow.com/questions/1774547/configuring-dbexpress-connection-for-sql-server-in-windows-7Comment by RRUZ on Configuring dbExpress connection for SQL Server in Windows 7RRUZ2009-11-21T04:54:41Z2009-11-21T04:54:41ZTry installing the MS SQL Native Client.http://stackoverflow.com/questions/1761315/mysql-cannot-be-able-to-create-foreign-keyComment by RRUZ on MYSQL - Cannot be able to create foreign keyRRUZ2009-11-19T06:43:25Z2009-11-19T06:43:25Z@Srinivasan, why 0% of accept rate?http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi/1753955#1753955Comment by RRUZ on How Do I Show A Final Form On Exiting In Delphi?RRUZ2009-11-18T06:26:56Z2009-11-18T06:26:56ZThis code works fine, you must check your code, check the assigned events of your form.http://stackoverflow.com/questions/1753551/please-help-me-write-a-sql-query-converting-rows-of-a-table-into-columnsComment by RRUZ on Please help me write a SQL query - converting rows of a table into columnsRRUZ2009-11-18T04:15:04Z2009-11-18T04:15:04Zwhich database server use? mysql, sql server, oracle?http://stackoverflow.com/questions/1726581/freeware-colordialog-control-for-net/1731420#1731420Comment by RRUZ on Freeware Colordialog Control for .Net RRUZ2009-11-14T04:29:01Z2009-11-14T04:29:01ZThanks very muchhttp://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725506#1725506Comment by RRUZ on When did my application start running?RRUZ2009-11-12T22:33:53Z2009-11-12T22:33:53Z+1 for GetProcessTimeshttp://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1722034#1722034Comment by RRUZ on How to use argument in a cast with DelphiRRUZ2009-11-12T13:19:30Z2009-11-12T13:19:30Z@mghie, Good point, I just update the code.http://stackoverflow.com/questions/1713127/truncsysdate-in-sql-serverComment by RRUZ on Trunc(sysdate) in SQL ServerRRUZ2009-11-11T05:06:37Z2009-11-11T05:06:37Z30 questions, no answers accepted? Why bother?