User JosephStyons - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T10:06:16Zhttp://stackoverflow.com/feeds/user/672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1369191/what-is-the-compiler-version-for-delphi-20101What is the compiler version for Delphi 2010?JosephStyons2009-09-02T17:51:53Z2009-12-09T10:08:27Z
<p>In Delphi 2010, if I want to do this:</p>
<pre><code>{$IFDEF VER999}
//some delphi 2010-specific code here
{$ENDIF}
</code></pre>
<p>What version # do I need to use in place of "999"?</p>
http://stackoverflow.com/questions/1862092/how-to-see-which-queries-has-been-executed-mysql/1862114#18621140Answer by JosephStyons for How to see which queries has been executed. (mysql)JosephStyons2009-12-07T18:57:25Z2009-12-07T18:57:25Z<p>You can trace a mysql database <a href="http://dev.mysql.com/doc/refman/5.0/en/making-trace-files.html" rel="nofollow">as described at this link</a>.</p>
http://stackoverflow.com/questions/1841978/change-username-programmatically-when-connecting-to-a-sql-server-using-windows-au0Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi applicationJosephStyons2009-12-03T18:40:02Z2009-12-04T15:06:58Z
<p>I have a Sql Server that uses Windows Authentication.</p>
<p>I want to connect to the server from a Delphi application.</p>
<p>By default, SQL Server will assume the credentials of the user that launches the connecting process.</p>
<p>This means that to change the login, I currently have two options:</p>
<ol>
<li><p>Log off and Log in as the desired
user, then run my application</p></li>
<li><p>Launch the program from the command
line using the RUNAS command.</p></li>
</ol>
<p>I'd like to let the user provide credentials from within the application, and log in as that user. Is this possible, either by manipulating the ConnectionString or by programatically changing the user of the current process?</p>
<p>The closest I've found is <a href="http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q%5F21637479.html" rel="nofollow">this entry</a>, which tells me how to launch <strong>another</strong> process under specific credentials. I could use that technique to create a "launcher" program that launches the connecting process after gathering credentials from the user, but I'd really like something cleaner.</p>
<p>I'm using Delphi 2010 for this project.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1841978/change-username-programmatically-when-connecting-to-a-sql-server-using-windows-au/1847035#18470352Answer by JosephStyons for Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi applicationJosephStyons2009-12-04T13:44:31Z2009-12-04T14:36:32Z<p>Using the method suggested by Scott W, this code worked for me. Some of this may need to be tweaked based on your specific network environment.</p>
<pre><code>procedure ChangeLoggedInUser(username, password, domain: string);
var
creds: Cardinal;
begin
try
if LogonUser(PChar(username)
,PChar(domain)
,PChar(password)
,LOGON32_LOGON_NETWORK
,LOGON32_PROVIDER_DEFAULT
,creds
)
then begin
ImpersonateLoggedOnUser(creds);
end
else begin
RaiseLastOSError;
end;
finally
//wipe the memory for security
FillChar(username,SizeOf(username),#0);
FillChar(password,SizeOf(username),#0);
FillChar(domain,SizeOf(username),#0);
end; //try-finally
end;
</code></pre>
<p>This code can be called like so:</p>
<pre><code>...
//at this point i am logged in as whoever is logged into the local machine
DoSomethingMundane;
//change credentials of the current thread
ChangeLoggedInUser('importantuser','secretpassword','mydomain');
//now my process will be logged in as "importantuser"
DoSomethingThatRequiresCreds;
//go back to normal
ReverToSelf;
//now my process is back to normal
DoSomethingMundane;
</code></pre>
http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718328#17183284Answer by JosephStyons for How to determine Delphi Application VersionJosephStyons2009-11-11T21:52:02Z2009-12-03T13:37:43Z<p>Pass the full file name of your EXE to this function, and it will return a string like:
2.1.5.9, or whatever your version # is.</p>
<pre><code>function GetFileVersion(exeName : string): string;
const
c_StringInfo = 'StringFileInfo\040904E4\FileVersion';
var
n, Len : cardinal;
Buf, Value : PChar;
begin
Result := '';
n := GetFileVersionInfoSize(PChar(exeName),n);
if n > 0 then begin
Buf := AllocMem(n);
try
GetFileVersionInfo(PChar(exeName),0,n,Buf);
if VerQueryValue(Buf,PChar(c_StringInfo),Pointer(Value),Len) then begin
Result := Trim(Value);
end;
finally
FreeMem(Buf,n);
end;
end;
end;
</code></pre>
<p>After defining that, you can use it to set your form's caption like so:</p>
<pre><code>procedure TForm1.FormShow(Sender: TObject);
begin
//ParamStr(0) is the full path and file name of the current application
Form1.Caption := Form1.Caption + ' version ' + GetFileVersion(ParamStr(0));
end;
</code></pre>
http://stackoverflow.com/questions/1839827/running-down-a-stack-overflow-bug/1839894#18398941Answer by JosephStyons for Running down a 'stack overflow' bugJosephStyons2009-12-03T13:32:38Z2009-12-03T13:32:38Z<p>Do you have the IDE installed on the test machine? If so, try to reproduce the problem from within the IDE. When the stack overflow occurs, look at the Call Stack (View->Debug Windows->Call Stack). It will probably have the same function being called many times, like this:</p>
<pre><code>FunctionA
FunctionB
FunctionA
FunctionB
FunctionA
FunctionB
...
</code></pre>
<p>If you see that, then you know that these functions are calling each other without ever concluding.</p>
<p>If you don't have the IDE installed on the test machine, then you can still do this via remote debugging. If you provide a little more information about your scenario we may be able to help more.</p>
<p>Specifically it might be helpful to know:</p>
<ul>
<li>Can you reproduce it?</li>
<li>Is the IDE installed on the test
machine?</li>
<li>What version of Delphi?</li>
</ul>
http://stackoverflow.com/questions/737053/log-file-monitor/1833414#18334140Answer by JosephStyons for Log File MonitorJosephStyons2009-12-02T14:56:35Z2009-12-02T14:56:35Z<p>Avar is right - you are at the mercy of the writing program here. If they are locking the file, then there are a couple of things you can do:</p>
<p>1 - Check for a <a href="http://delphi.about.com/cs/adptips1999/a/bltip1199%5F4.htm" rel="nofollow">change in the "last modified" date time</a> - if that changes, then you know <em>something</em> has happened.</p>
<p>2 - If the mod datetime did change, then (depending on the size of the file) it might be good enough to create a copy of the file and check <strong>that</strong>.</p>
http://stackoverflow.com/questions/1106247/dbexpress-error-in-delphi-20070dbExpress error in Delphi 2007JosephStyons2009-07-09T20:25:26Z2009-11-18T14:40:14Z
<p>I have had Delphi 2007 for a while. I tried the Delphi 2009 trial. Then I un-installed the trial. Now I get this in a dbExpress Delphi 2007 application:</p>
<pre><code>---------------------------
Debugger Exception Notification
---------------------------
Project ABC.exe raised exception class TDBXError with message
'Unable to load dbxora.dll (ErrorCode 126). It may be missing
from the system path.'.
---------------------------
Break Continue Help
---------------------------
</code></pre>
<p>I do not have dbxora.dll anywhere on my pc; I have dbxora30.dll, instead. Looking at another development machine (which has never had Delphi 2009 on it), I see dbxora30.dll too. FWIW, that file is here:</p>
<pre><code>C:\Program Files\CodeGear\RAD Studio\5.0\bin\dbxora30.dll
</code></pre>
<p>And my path <strong>does</strong> include this location.</p>
<p>So it looks like Delphi 2009 introduced a new "dbxora.dll" which replaced "dbxora30.dll"... and when I un-installed Delphi 2009, it failed to point my system back to the original "dbxora30.dll". But now how do I use dbxora30 again?</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1756191/why-would-this-select-statement-lock-up-on-sql-server0Why would this SELECT statement lock up on SQL Server?JosephStyons2009-11-18T13:59:08Z2009-11-18T14:14:32Z
<p>I have a simple query like this</p>
<pre><code>SELECT * FROM MY_TABLE;
</code></pre>
<p>When I run it, SQL Server Management Studio hangs.</p>
<p>Other tables and views are working fine.</p>
<p>What can cause this? I've had locks while running UPDATE statements before, and I know how to approach those. But what could cause a SELECT to lock?</p>
<p>I have run the "All Blocking Transactions" report, and it says there are none.</p>
http://stackoverflow.com/questions/382256/crystal-reports-default-parameters0Crystal Reports - Default ParametersJosephStyons2008-12-19T21:25:20Z2009-11-18T13:56:27Z
<p>In Crystal reports, you can define default values for the report parameters.</p>
<p>For example, I might have a date range and set a default start of 12/01/2008 and a default end of 12/31/2008.</p>
<p>Is it possible to modify these defaults at runtime? For example:</p>
<p>1 - Default to the first and last days of the current month?</p>
<p>2 - Default to the first and last days of a proprietary company fiscal calendar? (i.e., look it up in a database)</p>
<p>3 - First & Last days of the current year?</p>
<p>You get the point. Is this possible? I'd even be open to a solution that involved running an external application to reach into the reports and modify them, if anyone knows how to do that.</p>
<p>Edit:</p>
<p>To answer the question posed by Philippe Grondier, most of these reports are run from inside an application. I was hoping for something simpler than manipulating the crystal object at runtime; I have my hands full right now with figuring out other parts of that API. I might take a look in the future, though.</p>
http://stackoverflow.com/questions/1251038/querying-active-directory-from-sql-server-2005/1717413#17174130Answer by JosephStyons for Querying Active Directory from Sql Server 2005JosephStyons2009-11-11T19:12:25Z2009-11-11T19:12:25Z<p>Just a note; to remove the link use</p>
<pre><code>exec sp_dropserver 'ADSI';
</code></pre>
http://stackoverflow.com/questions/1434413/writing-a-string-to-a-tfilestream-in-delphi-20103Writing a string to a TFileStream in Delphi 2010JosephStyons2009-09-16T17:32:25Z2009-11-11T08:26:33Z
<p>I have Delphi 2007 code that looks like this:</p>
<pre><code>procedure WriteString(Stream: TFileStream; var SourceBuffer: PChar; s: string);
begin
StrPCopy(SourceBuffer,s);
Stream.Write(SourceBuffer[0], StrLen(SourceBuffer));
end;
</code></pre>
<p>I call it like this:</p>
<pre><code>var
SourceBuffer : PChar;
MyFile: TFileStream;
....
SourceBuffer := StrAlloc(1024);
MyFile := TFileStream.Create('MyFile.txt',fmCreate);
WriteString(MyFile,SourceBuffer,'Some Text');
....
</code></pre>
<p>This worked in Delphi 2007, but it gives me a lot of junk characters in Delphi 2010. I know this is due to unicode compliance issues, but I am not sure how to address the issue.</p>
<p>Here is what I've tried so far:</p>
<ul>
<li><p>Change the data type of
SourceBuffer(and also the parameter
expected by WideString) to PWideChar</p></li>
<li><p>Every one of the <a href="http://stackoverflow.com/questions/1354092">suggestions listed
here</a></p></li>
</ul>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1703225/question-about-specific-lines-in-a-dproj-file1Question about specific lines in a .DPROJ fileJosephStyons2009-11-09T19:34:06Z2009-11-09T21:23:34Z
<p>I solved a problem, <a href="http://stackoverflow.com/questions/124879/124888#124888">but I'm not sure why</a>.</p>
<p>I have a Delphi (2007) project which, when I opened it, gave a very long delay (i.e., 2 full minutes) before the IDE became responsive.</p>
<p>I have other projects that are as large as this one, and there was no such delay. Finally I took a look inside the .DPROJ file, and found hundreds of entries like this one:</p>
<pre><code><None Include="ModelSupport_MyProjectName\Unit1\default.txaPackage" />
<None Include="ModelSupport_MyProjectName\Unit2\default.txaPackage" />
<None Include="ModelSupport_MyProjectName\Unit3\default.txaPackage" />
</code></pre>
<p>I deleted all of those lines, and now the huge delay is gone.</p>
<p>My question:</p>
<p>What is the purpose of these lines? Why did they create such a long delay? Did I do any harm by removing them? More generally, is there good documentation on the structure of the .DPROJ file format from Codegear / Embarcadero?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/102254/hidden-features-of-delphi25Hidden Features of DelphiJosephStyons2008-09-19T14:27:14Z2009-11-06T09:16:36Z
<p>The "Hidden Features" series here on StackOverflow has generated some really interesting feedback. So what about my favorite IDE, Delphi? What are some hidden features there?</p>
<p>I'll start with one of my own:</p>
<p>You can invoke inline find by typing Ctrl+E, then typing your search term.</p>
http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1680513#16805131Answer by JosephStyons for Quick padding of a string in DelphiJosephStyons2009-11-05T13:18:05Z2009-11-05T13:55:46Z<p>You can get dramatically better performance if you pre-allocate the string.</p>
<pre><code>function cwLeftPadMine
{$IFDEF VER210} //delphi 2010
(aString: ansistring; aCharCount: integer; aChar: ansichar): ansistring;
{$ELSE}
(aString: string; aCharCount: integer; aChar: char): string;
{$ENDIF}
var
i,n,padCount: integer;
begin
padCount := aCharCount - Length(aString);
if padCount > 0 then begin
//go ahead and set Result to what it's final length will be
SetLength(Result,aCharCount);
//pre-fill with our pad character
FillChar(Result[1],aCharCount,aChar);
//begin after the padding should stop, and restore the original to the end
n := 1;
for i := padCount+1 to aCharCount do begin
Result[i] := aString[n];
end;
end
else begin
Result := aString;
end;
end;
</code></pre>
<p>And here is a template that is useful for doing comparisons:</p>
<pre><code>procedure TForm1.btnPadTestClick(Sender: TObject);
const
c_EvalCount = 5000; //how many times will we run the test?
c_PadHowMany = 1000; //how many characters will we pad
c_PadChar = 'x'; //what is our pad character?
var
startTime, endTime, freq: Int64;
i: integer;
secondsTaken: double;
padIt: string;
begin
//store the input locally
padIt := edtPadInput.Text;
//display the results on the screen for reference
//(but we aren't testing performance, yet)
edtPadOutput.Text := cwLeftPad(padIt,c_PadHowMany,c_PadChar);
//get the frequency interval of the OS timer
QueryPerformanceFrequency(freq);
//get the time before our test begins
QueryPerformanceCounter(startTime);
//repeat the test as many times as we like
for i := 0 to c_EvalCount - 1 do begin
cwLeftPad(padIt,c_PadHowMany,c_PadChar);
end;
//get the time after the tests are done
QueryPerformanceCounter(endTime);
//translate internal time to # of seconds and display evals / second
secondsTaken := (endTime - startTime) / freq;
if secondsTaken > 0 then begin
ShowMessage('Eval/sec = ' + FormatFloat('#,###,###,###,##0',
(c_EvalCount/secondsTaken)));
end
else begin
ShowMessage('No time has passed');
end;
end;
</code></pre>
<p>Using that benchmark template, I get the following results:</p>
<pre><code>The original: 5,000 / second
Your first revision: 2.4 million / second
My version: 3.9 million / second
Rob Kennedy's version: 3.9 million / second
</code></pre>
http://stackoverflow.com/questions/1600575/iterate-through-items-in-an-enumeration-in-delphi0Iterate through items in an enumeration in DelphiJosephStyons2009-10-21T12:45:47Z2009-10-29T23:01:18Z
<p>I want to iterate through the items in an enumeration.</p>
<p>I'd like to be able to say something like this:</p>
<pre><code>type
TWeekdays = (wdMonday, wdTuesday, wdWednesday, wdThursday, wdFriday);
...
elementCount := GetElementCount(TypeInfo(TWeekDays));
for i := 0 to elementCount - 1 do begin
ShowMessage(GetEnumName(TypeInfo(TWeekdays),i));
end;
</code></pre>
<p>The closest I've been able to come is this:</p>
<pre><code>function MaxEnum(EnumInfo: PTypeInfo): integer;
const
c_MaxInt = 9999999;
var
i: integer;
s: string;
begin
//get # of enum elements by looping thru the names
//until we get to the end.
for i := 0 to c_MaxInt do begin
s := Trim(GetEnumName(EnumInfo,i));
if 0 = Length(s) then begin
Result := i-1;
Break;
end;
end;
end;
</code></pre>
<p>Which I use like this:</p>
<pre><code>procedure TForm1.BitBtn1Click(Sender: TObject);
var
i, nMax: integer;
begin
ListBox1.Clear;
nMax := MaxEnum(TypeInfo(TWeekdays));
for i := 0 to nMax do begin
ListBox1.Items.Add(GetEnumName(TypeInfo(TWeekdays),i));
end;
end;
</code></pre>
<p>That works well, except the list I get looks like this (notice the last two items):</p>
<pre><code>wdMonday
wdTuesday
wdWednesday
wdThursday
wdFriday
Unit1
'@'#0'ôÑE'#0#0#0#0#0#0#0#0#0#0#0#0#0 <more garbage characters>
</code></pre>
<p>The two items at the end are obviously not what I want.</p>
<p>Is there a better way to iterate through the elements of an enumerated type?</p>
<p>If not, then is it safe to assume that there will <strong>always</strong> be exactly <strong>two</strong> extra items using my current method? Obviously one is the Unit name... but what is the "@" symbol doing? Is it really garbage, or is it more type information?</p>
<p>I'm using Delphi 2007.
Thanks for any insights.</p>
http://stackoverflow.com/questions/1646451/how-to-decide-when-to-script-something-rather-than-do-it-manually/1646466#16464668Answer by JosephStyons for How to decide when to script something rather than do it manually?JosephStyons2009-10-29T20:49:47Z2009-10-29T20:49:47Z<p>I'm a fan of the "<a href="http://c2.com/cgi/wiki?ThreeStrikesAndYouAutomate" rel="nofollow">Three Strikes and you Automate</a>" rule, as described at that link.</p>
http://stackoverflow.com/questions/23472/resources-for-an-oracle-beginner1Resources for an Oracle beginnerJosephStyons2008-08-22T20:58:21Z2009-10-29T15:11:30Z
<p>Can anyone recommend some good resources that highlight the differences between Oracle and the AS/400 database?</p>
<p>I am trying to help someone with a lot of AS/400 experience implement an Oracle installation, and they need some guidance.</p>
<p>A book or online resource would be ideal.</p>
http://stackoverflow.com/questions/1629303/program-both-as-console-and-gui/1631217#16312174Answer by JosephStyons for Program both as Console and GUIJosephStyons2009-10-27T14:32:31Z2009-10-27T14:32:31Z<p>IMO, the best approach here is to have non-visual classes that actually do the work of the program. Then you can call that from a GUI program, and you can also call it from a separate command line program. Both programs are just wrappers around the functionality of your class(es).</p>
<p>This forces the design to be clean too - your classes necessarily are separated from the GUI layer of your application.</p>
http://stackoverflow.com/questions/1600625/button-component-affecting-the-parent-panel-in-delphi/1600682#16006824Answer by JosephStyons for Button component affecting the parent Panel in DelphiJosephStyons2009-10-21T13:00:05Z2009-10-21T14:19:31Z<p>You may be better off doing this through careful use of the Align property.</p>
<p>If I have three panels with alignments as indicated here:</p>
<pre><code>|-----------------------|
| |
| alTop |
| |
|-----------------------|
|-----------------------|
| |
| alTop |
| |
|-----------------------|
|-----------------------|
| |
| alTop |
| |
|-----------------------|
</code></pre>
<p>And I delete the second one, then the third one will automatically pop into it's place.</p>
<p>Just place all three panels inside another parent control (i.e., another panel) to define what "top" means when we say "alTop".</p>
<p>If you want to animate the effect, then you'll have to be slightly fancier. Is that your goal? If so, I'm sure we can come up with something.</p>
<p><strong>Edit - I wrote some code that may give you some ideas:</strong></p>
<pre><code>unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls;
type
TWhere = (wAtBeginning, wAtEnd);
type
TfrmMain = class(TForm)
panCtrl: TPanel;
panHost: TPanel;
btnAddPan: TBitBtn;
btnDelPan: TBitBtn;
lbAddWhere: TListBox;
lbDelWhere: TListBox;
procedure btnAddPanClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure btnDelPanClick(Sender: TObject);
private
function GetPanel(HostPanel: TPanel; Where: TWhere): TPanel;
function BottomOfLastPanel(HostPanel: TPanel): integer;
procedure AddPanel(HostPanel: TPanel; AddWhere: TWhere);
procedure DelPanel(HostPanel: TPanel; DelWhere: TWhere);
procedure DelThisPanel(Sender: TObject);
end;
var
frmMain: TfrmMain;
implementation
{$R *.dfm}
procedure TfrmMain.AddPanel(HostPanel: TPanel; AddWhere: TWhere);
var
pnl: TPanel;
btn: TBitBtn;
begin
pnl := TPanel.Create(HostPanel);
with pnl do begin
case AddWhere of
wAtBeginning: Top := 0;
wAtEnd: Top := BottomOfLastPanel(HostPanel);
end;
Align := alTop;
Parent := HostPanel;
Caption := DateTimeToStr(Now);
end;
btn := TBitBtn.Create(pnl);
with btn do begin
Parent := pnl;
Left := 0;
Top := 0;
Width := 100;
Height := 30;
Align := alLeft;
Caption := 'Delete this panel';
OnClick := DelThisPanel;
end;
end;
function TfrmMain.BottomOfLastPanel(HostPanel: TPanel): integer;
begin
//scan through all panels contained inside the host panel
//return the bottom of the lowest one (highest "top" value)
Result := 0;
if Assigned(GetPanel(HostPanel,wAtEnd)) then begin
Result := GetPanel(HostPanel,wAtEnd).Top + GetPanel(HostPanel,wAtEnd).Height;
end;
end;
procedure TfrmMain.btnAddPanClick(Sender: TObject);
begin
case lbAddWhere.ItemIndex of
0: AddPanel(panHost,wAtBeginning);
1: AddPanel(panHost,wAtEnd);
end;
end;
procedure TfrmMain.btnDelPanClick(Sender: TObject);
begin
case lbDelWhere.ItemIndex of
0: DelPanel(panHost,wAtBeginning);
1: DelPanel(panHost,wAtEnd);
end;
end;
procedure TfrmMain.DelPanel(HostPanel: TPanel; DelWhere: TWhere);
var
pnlToDelete: TPanel;
begin
case DelWhere of
wAtBeginning: pnlToDelete := GetPanel(HostPanel,wAtBeginning);
wAtEnd: pnlToDelete := GetPanel(HostPanel,wAtEnd);
end;
if Assigned(pnlToDelete) then begin
FreeAndNil(pnlToDelete);
end;
end;
procedure TfrmMain.DelThisPanel(Sender: TObject);
var
parentPnl: TPanel;
begin
//delete the parent panel of this button
if Sender is TBitBtn then begin
if (Sender as TBitBtn).Parent is TPanel then begin
parentPnl := (Sender as TBitBtn).Parent as TPanel;
parentPnl.Parent := nil;
FreeAndNil(parentPnl);
end;
end;
end;
procedure TfrmMain.FormShow(Sender: TObject);
begin
lbAddWhere.ItemIndex := 1;
lbDelWhere.ItemIndex := 1;
end;
function TfrmMain.GetPanel(HostPanel: TPanel; Where: TWhere): TPanel;
var
i: integer;
begin
Result := nil;
for i := 0 to panHost.ControlCount - 1 do begin
if panHost.Controls[i] is TPanel then begin
Result := (panHost.Controls[i] as TPanel);
if Where = wAtBeginning then begin
Break;
end;
end;
end;
end;
end.
</code></pre>
<p><strong>And here is the code for the DFM:</strong></p>
<pre><code>object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'Add / Delete Panel Demo'
ClientHeight = 520
ClientWidth = 637
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object panCtrl: TPanel
Left = 0
Top = 0
Width = 305
Height = 520
Align = alLeft
TabOrder = 0
object btnAddPan: TBitBtn
Left = 8
Top = 8
Width = 125
Height = 75
Caption = 'Add panel'
TabOrder = 0
OnClick = btnAddPanClick
end
object btnDelPan: TBitBtn
Left = 8
Top = 89
Width = 125
Height = 75
Caption = 'Remove panel'
TabOrder = 1
OnClick = btnDelPanClick
end
object lbAddWhere: TListBox
Left = 139
Top = 8
Width = 150
Height = 75
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ItemHeight = 16
Items.Strings = (
'Add to the top'
'Add to the bottom')
ParentFont = False
TabOrder = 2
end
object lbDelWhere: TListBox
Left = 139
Top = 89
Width = 150
Height = 75
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ItemHeight = 16
Items.Strings = (
'Delete from the top'
'Delete from the bottom')
ParentFont = False
TabOrder = 3
end
end
object panHost: TPanel
Left = 305
Top = 0
Width = 332
Height = 520
Align = alClient
TabOrder = 1
ExplicitLeft = 392
ExplicitTop = 264
ExplicitWidth = 185
ExplicitHeight = 41
end
end
</code></pre>
http://stackoverflow.com/questions/1595659/how-to-eliminate-duplicate-calculation-in-sql/1595728#15957282Answer by JosephStyons for How to eliminate duplicate calculation in SQL ?JosephStyons2009-10-20T16:07:07Z2009-10-20T16:07:07Z<p>Jeff Ober has the right idea, but here is an alternative method:</p>
<pre><code>SELECT
t.*
,loc.LOCATED
FROM
table t
INNER JOIN
(
SELECT
primary_key
,LOCATE(column,:keyword) AS LOCATED
FROM
table
) loc
ON t.primary_key = loc.primary_key
WHERE loc.LOCATED > 0
ORDER BY
loc.LOCATED
</code></pre>
http://stackoverflow.com/questions/1594395/are-there-any-programs-that-will-shrink-the-size-of-a-sql-script-file/1594752#15947523Answer by JosephStyons for Are there any programs that will shrink the size of a sql script file?JosephStyons2009-10-20T13:48:36Z2009-10-20T14:08:40Z<p>What about breaking your script into several small files, and calling those files from a single master script?</p>
<p><a href="http://www.sql-server-helper.com/tips/execute-sql-scripts-batch.aspx" rel="nofollow">This link describes how to do it from a stored procedure.</a></p>
<p>Or you can do it from a batch file like this:</p>
<pre><code>REM =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
REM Define widely-used variables up here so they can be changed in one place
REM Search for "sqlcmd.exe" and make sure this path is valid for you
REM =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
set sqlcmd="C:\Program Files\Microsoft SQL Server\100\Tools\Binn\sqlcmd.exe"
set uname="your_uname_here"
set pwd="your_pwd_here"
set database="your_db_name_here"
set server="your_server_name_here"
%sqlcmd% -S %server% -d %database% -U %uname% -P %pwd% -i "c:\script1.sql"
%sqlcmd% -S %server% -d %database% -U %uname% -P %pwd% -i "c:\script2.sql"
%sqlcmd% -S %server% -d %database% -U %uname% -P %pwd% -i "c:\script3.sql"
pause
</code></pre>
<p>I like the batch file approach myself, because it is easier to tinker with it, and you can schedule it as a windows job.</p>
<p>Make sure the .BAT file is in a folder with the appropriate security restrictions, since it has your credentials in a plain text .BAT file.</p>
http://stackoverflow.com/questions/1369191/what-is-the-compiler-version-for-delphi-2010/1373264#13732647Answer by JosephStyons for What is the compiler version for Delphi 2010?JosephStyons2009-09-03T12:57:01Z2009-10-16T17:30:04Z<p>Just for completeness, I have <a href="http://delphi.about.com/od/objectpascalide/a/compiler%5Fver.htm" rel="nofollow">found a full list as of D2007</a>, and added the more recent ones.</p>
<p>In Delphi 2007, VER180 and VER185 are <strong>both</strong> defined. This was for backward compatibility with Delphi 2006, and to make sure you could also detect D2007 specifically.</p>
<p>I'm not sure why they did that between '06 and '07, but not for other releases. Seems inconsistent to me (but it isn't - see Barry Kelly's comment below). But at any rate, the full list is like this:</p>
<pre><code>{$IFDEF VER80} - Delphi 1
{$IFDEF VER90} - Delphi 2
{$IFDEF VER100} - Delphi 3
{$IFDEF VER120} - Delphi 4
{$IFDEF VER130} - Delphi 5
{$IFDEF VER140} - Delphi 6
{$IFDEF VER150} - Delphi 7
{$IFDEF VER160} - Delphi 8
{$IFDEF VER170} - Delphi 2005
{$IFDEF VER180} - Delphi 2006
{$IFDEF VER180} - Delphi 2007
{$IFDEF VER185} - Delphi 2007
{$IFDEF VER200} - Delphi 2009
{$IFDEF VER210} - Delphi 2010
</code></pre>
http://stackoverflow.com/questions/1572559/how-do-i-get-the-command-line-parameters-for-certain-button-clicks-in-a-applicati/1573714#15737140Answer by JosephStyons for How do I get the command-line parameters for certain button clicks in a application?JosephStyons2009-10-15T17:00:03Z2009-10-15T17:00:03Z<p>I have written the below unit to parse command line arguments in a more robust way. Feel free to use it. I've included an example usage after the unit (scroll to the bottom).</p>
<pre><code>unit CLArgParser;
//this class makes it easier to parse command line arguments
interface
uses
Classes;
type
strarr = array of string;
type
TCLArgParser = class
private
FPermitTags : array of string;
FTrimAll: boolean;
public
function IsArg(argtag : string) : boolean;
function GetArg(argtag : string) : string;
function GetDelimtedArg(argtag, delimiter : string) : TStringList;
constructor Create(ArgTags : array of string); overload;
constructor Create; overload;
property TrimAll: boolean read FTrimAll write FTrimAll;
end;
implementation
uses
SysUtils;
const
cDefaultTags : array[0..1] of string = ('-','/');
constructor TCLArgParser.Create(ArgTags : array of string);
var i : integer;
begin
try
SetLength(FPermitTags,High(ArgTags)+1);
for i := 0 to High(ArgTags) do begin
FPermitTags[i] := ArgTags[i];
end; //for i
except on e : exception do
raise;
end; //try-except
end;
constructor TCLArgParser.Create;
begin
FTrimAll := False; //default value
inherited Create;
Create(cDefaultTags);
end;
function TCLArgParser.GetArg(argtag: string): string;
var i,j,n : integer;
begin
try
Result := '';
n := High(FPermitTags);
for i := 1 to ParamCount do
for j := 0 to n do
if Uppercase(ParamStr(i)) = (FPermitTags[j] + Uppercase(argtag)) then
Result := ParamStr(i+1);
if FTrimAll then begin
Result := Trim(Result);
end;
except on e : exception do
raise;
end; //try-except
end;
function TCLArgParser.GetDelimtedArg(argtag, delimiter: string): TStringList;
var i : integer;
argval, tmp : string;
begin
try
Result := TStringList.Create;
argval := GetArg(argtag);
for i := 1 to Length(argval) do begin
if ((i = Length(argval)) or ((argval[i] = delimiter) and (tmp <> '')))
then begin
if i = Length(argval) then begin
tmp := tmp + argval[i];
if FTrimAll then begin
tmp := Trim(tmp);
end;
end;
Result.Add(tmp);
tmp := '';
end //if we found a delimted value
else begin
tmp := tmp + argval[i];
end; //else we just keep looking
end; //for ea. character
except on e : exception do
raise;
end; //try-except
end;
function TCLArgParser.IsArg(argtag: string): boolean;
var i,j,n : integer;
begin
try
Result := False;
n := High(FPermitTags);
for i := 1 to ParamCount do begin
for j := 0 to n do begin
if Uppercase(ParamStr(i)) = (FPermitTags[j] + Uppercase(argtag))
then begin
Result := True;
Exit;
end; //if we found it
end; //for j
end; //for i
except on e : exception do
raise;
end; //try-except
end;
end.
</code></pre>
<p><strong>Example usage:</strong></p>
<pre><code>procedure DefineParameters;
var
clarg: TCLArgParser;
begin
//assign command line arguments to various global variables
clarg := TCLArgParser.Create;
try
wantshelp := clarg.IsArg('?') or clArg.IsArg('help');
dbuser := clarg.GetArg('u');
dbpwd := clarg.GetArg('p');
dbserver := clarg.GetArg('d');
localfilename := clarg.GetArg('localfile');
ftpuser := clarg.GetArg('ftu');
ftppwd := clarg.GetArg('ftp');
ftpipaddr := clarg.GetArg('fti');
emailfromacct := clarg.GetArg('efrom');
emailtoacct := clarg.GetArg('eto');
archivefolder := clarg.GetArg('archive');
if archivefolder <> '' then begin
if archivefolder[Length(archivefolder)] <> '\' then begin
archivefolder := archivefolder + '\';
end;
end;
//figure out the (optional) verbosity code.
//if they didn't specify, assume the default value
verbosity := c_VerbosityDefault;
if clArg.IsArg('v') then begin
if not(TryStrToInt(clarg.GetArg('v'),verbosity)) then begin
WriteLn('Invalid verbosity code- using default of ' +
IntToStr(c_VerbosityDefault) + '.');
end; //if their specified verbosity was invalid
end; //if they specified the verbosity
if not(TryStrToInt(clarg.GetArg('maxtime'),maxtime)) then begin
maxtime := 9999999;
end;
finally
FreeAndNil(clarg);
end; //try-finally
end;
</code></pre>
http://stackoverflow.com/questions/1567022/crystal-reports-in-delphi-20070Crystal reports in Delphi 2007JosephStyons2009-10-14T15:19:28Z2009-10-15T14:07:37Z
<p><strong>I have:</strong></p>
<p>Delphi 2007</p>
<p>Crystal 11</p>
<p>The Delphi 7 version of the Crystal VCL component (latest one I'm aware of, and it compiles fine in D2007)</p>
<p>A very simple test Crystal report, written in Crystal 11, which just dumps a table onto the screen (no selection criteria, no formulas, just straight data)</p>
<p><strong>I tried</strong></p>
<p>Created a new VCL forms app</p>
<p>Dropped the TCrpe component on the form</p>
<p>Set the "ReportName" property to my test report.</p>
<p>I dropped a button on the form, and behind it placed one line:</p>
<pre><code>Crpe1.Execute
</code></pre>
<p>If the report has the "Save Data With Report" option turned <strong>on</strong>, then this works fine.</p>
<p>If I turn that option <strong>off</strong>, then I need to provide login credentials.</p>
<p>Using this code (which worked fine in Delphi 5 a million years ago):</p>
<pre><code>procedure TForm1.BitBtn1Click(Sender: TObject);
var
logonItem: integer;
begin
Crpe1.LogOnServer.Clear;
logonItem := Crpe1.LogOnServer.Add('MYSERVER.MYDOMAIN.COM');
Crpe1.LogonServer[logonItem].UserID := 'USERNAME';
Crpe1.LogOnServer[logonItem].Password := 'PASSWORD';
Crpe1.LogOnServer[logonItem].DatabaseName := 'MYDATABASE';
Crpe1.Execute;
end;
</code></pre>
<p><strong>I get this error:</strong></p>
<pre><code>---------------------------
Project2
---------------------------
Error:536 Error in File C:\REPORT.RPT:
Unable to connect: incorrect log on parameters.
Execute <PEStartPrintJob>.
---------------------------
OK
---------------------------
</code></pre>
<p>What am I doing wrong? How can I provide login credentials to the Crystal VCL component in Delphi? My current workaround is <a href="http://stackoverflow.com/questions/378089">pretty ugly</a>, and I have a lot of legacy code to convert. It would be really nice if I could use the VCL component in a straightforward way.</p>
http://stackoverflow.com/questions/836877/delphi-2007-how-to-avoid-having-a-history-folder3Delphi 2007 - How to avoid having a \history folder?JosephStyons2009-05-07T20:33:28Z2009-10-14T08:09:06Z
<p>Newer Delphi versions (including Delphi 2007, which I'm using) have a build in file history feature, which lets you revert to old files from within the IDE. That's nice, but I already have source control. Is it possible to disable this feature?</p>
<p>I ask because the IDE auto-creates a \history folder with old versions of all your files, and that annoys me.</p>
http://stackoverflow.com/questions/1553923/how-to-hide-a-taskbar-entry-but-keep-the-window-form/1553957#15539571Answer by JosephStyons for How to hide a taskbar entry but keep the window form?JosephStyons2009-10-12T11:05:48Z2009-10-12T11:05:48Z<p>In what language is your application written?</p>
<p>The API call you want is called <a href="http://msdn.microsoft.com/en-us/library/ms633591%28VS.85%29.aspx" rel="nofollow">SetWindowLong</a>.</p>
<p>Example Delphi code would be:</p>
<pre><code>procedure TForm1.FormCreate(Sender: TObject);
begin
ShowWindow(Application.Handle, SW_HIDE);
SetWindowLong(Application.Handle, GWL_EXSTYLE,
GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW);
ShowWindow(Application.Handle, SW_SHOW);
end;
</code></pre>
http://stackoverflow.com/questions/1540108/what-are-good-arguments-to-convince-management-to-upgrade-to-delphi-2009-2010/1540149#15401491Answer by JosephStyons for What are good arguments to convince management to upgrade to Delphi 2009 / 2010?JosephStyons2009-10-08T20:16:44Z2009-10-08T20:16:44Z<ul>
<li><p>The refactoring tools and overall
speed and stability of the IDE will
make the development team more
productive.</p></li>
<li><p>Working with the latest tools will make it easier to recruit top talent.</p></li>
</ul>
http://stackoverflow.com/questions/1533686/can-i-recompile-the-pas-files-used-by-the-delphi-ide2Can I recompile the .PAS files used by the Delphi IDE?JosephStyons2009-10-07T19:31:43Z2009-10-08T08:57:55Z
<p>I am familiar with <a href="http://www.codinghorror.com/blog/archives/001079.html" rel="nofollow">Jeff Atwood's article about how errors are always the programmer's fault</a>, but I believe I have really and truly found a bug in a Delphi .pas file.</p>
<p>Specifically, I'm using Delphi 2007, and the error is on line 955 of the DBCommon.pas file, which on my machine is located here:</p>
<blockquote>
<p>C:\program files\codegear\rad studio\5.0\source\Win32\db\DBCommon.pas</p>
</blockquote>
<p>And the code is this:</p>
<pre><code>...
FieldIndex := StrToInt(Token);
if DataSet.FieldCount >= FieldIndex then
LastField := DataSet.Fields[FieldIndex-1].FieldName else
...
</code></pre>
<p>If "Token" has a value of zero, then we try to access index -1 of DataSet.Fields, resulting in a list index out of bounds error.</p>
<p>This error is not raised to the user, because it is handled before it gets that high up, but it is enormously irritating to have the debugger break in every time this happens.</p>
<p>I could "Ignore this exception type" but Index out of bounds errors are common enough that I don't want to universally ignore them.</p>
<p>The situation that causes FieldIndex to be zero is when you have a SELECT statement whose ORDER BY contains a function, as in:</p>
<pre><code>ORDER BY
CASE WHEN FIELD1 = FIELD3 THEN 1 ELSE 2 END
,CASE WHEN FIELD2 = FIELD4 THEN 1 ELSE 2 END
</code></pre>
<p>I can fix the bug in DBCommon.pas, but Delphi will not recompile itself, and my change does not take effect. If I rename the .DCU file, then it just complains that "DBCommon.dcu" cannot be found.</p>
<p>So (finally) my question is: Can I recompile DBCommon.pas with my fix, and if so, how?</p>
http://stackoverflow.com/questions/1526879/what-do-you-put-in-a-subquerys-select-part-when-its-preceded-by-exists/1526920#15269201Answer by JosephStyons for What do you put in a subquery's Select part when it's preceded by Exists?JosephStyons2009-10-06T17:16:50Z2009-10-06T17:23:09Z<p>I think the efficiency depends on your platform.
In Oracle, SELECT * and SELECT 1 within an EXISTS clause generate identical explain plans, with identical memory costs. There is no difference. However, other platforms may vary.</p>
<p>As a matter of personal preference, I use </p>
<pre><code> SELECT *
</code></pre>
<p>Because SELECTing a specific field could mislead a reader into thinking that I care about that specific field, and it also lets me copy / paste that subquery out and run it unmodified, to look at the output.</p>
<p>However, an EXISTS clause in a SQL statement is a bit of a code smell, IMO. There are times when they are the best and clearest way to get what you want, but they can almost always be expressed as a join, which will be a lot easier for the database engine to optimize.</p>
<pre><code>SELECT *
FROM SOME_TABLE ST
WHERE EXISTS(
SELECT 1
FROM SOME_OTHER_TABLE SOT
WHERE SOT.KEY_VALUE1 = ST.KEY_VALUE1
AND SOT.KEY_VALUE2 = ST.KEY_VALUE2
)
</code></pre>
<p>Is logically identical to:</p>
<pre><code>SELECT *
FROM
SOME_TABLE ST
INNER JOIN
SOME_OTHER_TABLE SOT
ON ST.KEY_VALUE1 = SOT.KEY_VALUE1
AND ST.KEY_VALUE2 = SOT.KEY_VALUE2
</code></pre>
http://stackoverflow.com/questions/1841978/change-username-programmatically-when-connecting-to-a-sql-server-using-windows-auComment by JosephStyons on Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi applicationJosephStyons2009-12-04T15:07:11Z2009-12-04T15:07:11ZTrue. Corrected. Thanks.http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718328#1718328Comment by JosephStyons on How to determine Delphi Application VersionJosephStyons2009-12-03T13:38:49Z2009-12-03T13:38:49Z@Wodzu: it works for me in D2007. Does your project have the "Include version information in project" option checked under Project->Options->Version Info? What does Windows Explorer tell you the file version is?http://stackoverflow.com/questions/1787344/orderby-in-sql-query/1787442#1787442Comment by JosephStyons on orderby in sql queryJosephStyons2009-11-24T15:18:39Z2009-11-24T15:18:39ZIf this solution helped you, then you should mark it as accepted.http://stackoverflow.com/questions/1756191/why-would-this-select-statement-lock-up-on-sql-server/1756211#1756211Comment by JosephStyons on Why would this SELECT statement lock up on SQL Server?JosephStyons2009-11-18T14:14:59Z2009-11-18T14:14:59Zexec sp_who2 gave me an ALTER INDEX that is in progress. Seems to be the culprit. Thanks.http://stackoverflow.com/questions/1756191/why-would-this-select-statement-lock-up-on-sql-server/1756216#1756216Comment by JosephStyons on Why would this SELECT statement lock up on SQL Server?JosephStyons2009-11-18T14:04:30Z2009-11-18T14:04:30ZNo to #1. Yes to #2 but who/what?http://stackoverflow.com/questions/1756191/why-would-this-select-statement-lock-up-on-sql-server/1756203#1756203Comment by JosephStyons on Why would this SELECT statement lock up on SQL Server?JosephStyons2009-11-18T14:03:54Z2009-11-18T14:03:54ZThat works, but how can I tell who/what is causing the lock?http://stackoverflow.com/questions/1738838/how-to-disable-the-formatter-in-delphi-2010Comment by JosephStyons on How to disable the Formatter in Delphi 2010JosephStyons2009-11-16T15:47:19Z2009-11-16T15:47:19ZI disabled it because I would sometimes hit Ctrl+D by accident, and make a big mess.http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problemsComment by JosephStyons on Help with strange Delphi 5 IDE problemsJosephStyons2009-11-13T19:31:03Z2009-11-13T19:31:03ZI have Delphi 5 installed under Windows 7 and it runs very well, except every once in a while ddevextensions gives an error or two when i close the IDE.http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1720501#1720501Comment by JosephStyons on How to determine Delphi Application VersionJosephStyons2009-11-13T14:14:25Z2009-11-13T14:14:25ZHe wants to post the build # into the title bar. To me, that means the application is looking at it's own version information. So part of your scenario #1 is not valid; the EXE will always have access to itself. It might have been renamed though; that is a good point.http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718328#1718328Comment by JosephStyons on How to determine Delphi Application VersionJosephStyons2009-11-12T04:25:21Z2009-11-12T04:25:21ZRight you are- done.http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718398#1718398Comment by JosephStyons on How to determine Delphi Application VersionJosephStyons2009-11-11T22:12:17Z2009-11-11T22:12:17ZThis is very nicehttp://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphiComment by JosephStyons on Quick padding of a string in DelphiJosephStyons2009-11-05T13:58:34Z2009-11-05T13:58:34ZWhat is typical input for this function? If you have a limited set of real-world inputs, then the algorithm can be tweaked in a way that might be slower for the general case, but will be faster for you. Wodzu has an extreme example.http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1680513#1680513Comment by JosephStyons on Quick padding of a string in DelphiJosephStyons2009-11-05T13:57:45Z2009-11-05T13:57:45Z@Wodzu, dramatically compared to his original post. Pre-caching results as you do in your example will undoubtedly be faster.. as you said, though, "is it worth it".http://stackoverflow.com/questions/1634919/project-load-faster/1634952#1634952Comment by JosephStyons on project load fasterJosephStyons2009-10-28T13:22:52Z2009-10-28T13:22:52ZI consider the "sneaky" mode to be abusive to users, unless you absolutely <i>know</i> that they will be using your program. It means you are forcing the user to wait for your program with every boot, whether they will use it or not.http://stackoverflow.com/questions/1629303/program-both-as-console-and-gui/1631217#1631217Comment by JosephStyons on Program both as Console and GUIJosephStyons2009-10-28T03:37:32Z2009-10-28T03:37:32ZWell I would say just two executables is doable. If you build the EXE including your BPLs then there is no need to distribute any "core" files - just one exe per application. But obviously you are the one who knows your deployment needs; I'm glad ildasm's answer was helpful.