User Re0sless - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T04:37:04Zhttp://stackoverflow.com/feeds/user/2098http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1778534/show-icon-only-in-the-column-header-of-a-listview/1778649#17786491Answer by Re0sless for show icon only in the column header of a ListViewRe0sless2009-11-22T13:08:37Z2009-11-22T13:08:37Z<p>You can set the ImageIndex on each of the TListItems to -1 to stop them showing images, but you will still have the gap where the image should be.</p>
<pre><code> with ListView1.Items.Add do
begin
Caption := 'Foo';
ImageIndex := -1;
end;
</code></pre>
http://stackoverflow.com/questions/1593388/how-do-i-recognize-command-line-parameters-in-my-delphi-program/1593690#15936908Answer by Re0sless for How do I recognize command-line parameters in my Delphi program?Re0sless2009-10-20T10:23:11Z2009-10-20T10:23:11Z<p>If you just want to read any cmd line parameters that were passed to your application at start-up you can use Delphi's inbuild functions.</p>
<pre><code>ParamCount // Number of cmd params passed at startup
ParamStr(0) // string of param zero
</code></pre>
<p>So calling you program like so</p>
<pre><code>c:\myapp.exe -foo -bar
</code></pre>
<p>would give the following result</p>
<pre><code>ParamStr(0) = c:\myapp.exe
ParamStr(1) = -foo
ParamStr(2) = -bar
</code></pre>
http://stackoverflow.com/questions/1445385/how-to-remove-index-php-in-codeigniters-path/1445419#14454191Answer by Re0sless for How to remove "index.php" in codeigniter's pathRe0sless2009-09-18T15:52:01Z2009-09-18T15:52:01Z<p>Have a look in the <em>system\application\config\config.php</em> file, there is a variable named 'index_page'</p>
<p>It should look like this</p>
<pre><code>$config['index_page'] = "index.php";
</code></pre>
<p>change it to</p>
<pre><code>$config['index_page'] = "";
</code></pre>
<p>Then as mentioned you need to add a rewrite rule to the .htaccess file</p>
http://stackoverflow.com/questions/1422268/how-to-get-the-millisecond-value-from-a-timestamp-field-in-firebird-with-delphi-21How to get the millisecond value from a Timestamp field in firebird with Delphi 2007Re0sless2009-09-14T15:28:09Z2009-09-15T15:10:49Z
<p>I have a Firebird database (running on server version 2.1.3) and am connecting to it with Delphi 2007 using the DBExpress objects (using the Interbase driver)</p>
<p>One of my tables in the database looks something like this</p>
<pre><code>CREATE TABLE MYTABLE
(
MYDATE Timestamp NOT NULL,
MYINDEX Integer NOT NULL,
...
Snip
...
PRIMARY KEY (MYDATE ,MYINDEX)
);
</code></pre>
<p>I can add to the table OK, and in Flame Robin it shows the timestamp field as having a millisecond value.</p>
<p>But when I do a select all (<code>select * from MYTABLE</code>) on the table I can not get the millisecond value, as it is always returned as 000.</p>
<p>This causes major problems as it is part of the primary key (unfortunately I didn't design the table and don't have authority to change it).</p>
<p>I have tried the following to get the millisecond value:</p>
<pre><code>sql1.fieldbyname('MYDATE').AsDateTime;
sql1.fieldbyname('MYDATE').AsSQLTimeStamp;
sql1.fieldbyname('MYDATE').AsStirng;
sql1.fieldbyname('MYDATE').AsFloat;
</code></pre>
<p>But they all return 14/09/2009 14:25:06.000 when formatted.</p>
<p>How do I retrieve the millisecond from a timestamp?</p>
<p><strong>UPDATE:</strong>
In case this helps anyone in the future, here are the drivers I tried for DBExpress and the results.</p>
<ul>
<li><a href="http://www.embarcadero.com/" rel="nofollow">Embarcadero - dbExpress Driver for
Firebird</a> (Delphi 2010
Trial Version) - Milliseconds not supported in timestamps.</li>
<li><a href="http://sites.google.com/site/dbxfirebird/" rel="nofollow">Chau Chee Yang's - dbExpress
Driver for Firebird</a> (Delphi 2007) - Milliseconds not supported in timestamps.</li>
<li><a href="http://www.upscene.com/products.dbx.dbx%5Ffb.php" rel="nofollow">UpScene - InterXpress
for Firebird</a> (Delphi
2007) - Milliseconds are supported in timestamps.</li>
<li><a href="http://www.devart.com/dbx/interbase/" rel="nofollow">DevArt - dbExpress Driver for
InterBase</a> (Delphi 2007) - Milliseconds are supported in timestamps.</li>
</ul>
http://stackoverflow.com/questions/1282015/the-fastest-way-to-compare-a-partial-string/1282285#12822850Answer by Re0sless for The fastest way to compare a partial string?Re0sless2009-08-15T16:42:32Z2009-08-15T16:42:32Z<p>If you just what to check the first 4/5 characters you could do</p>
<pre><code>i:= Length('SKILL');
LeftStr('SKILL_______EU_______WAND_______CLERIC_______BASE_____01',i) = 'SKILL'
</code></pre>
http://stackoverflow.com/questions/1268410/how-to-tile-a-image-in-timage/1270915#12709152Answer by Re0sless for How to tile a Image in TImage?Re0sless2009-08-13T09:11:09Z2009-08-13T09:25:49Z<p>Assuming your image is a bitmap and loaded into the TImage you can use the following</p>
<pre><code>procedure TmyForm.Button1Click(Sender: TObject);
var mybmp:TBitmap;
begin
mybmp:= TBitmap.Create();
try
mybmp.Assign(Image1.Picture.Bitmap);
Image1.Picture.Bitmap.SetSize(Image1.Width,Image1.Height);
Image1.Canvas.Brush.Bitmap := mybmp;
Image1.Canvas.FillRect(Image1.BoundsRect);
mybmp.FreeImage;
finally
FreeandNil(mybmp)
end;
end;
</code></pre>
<p><strong>Some notes:</strong></p>
<p>If you save the image after titling it you will save the titled version not the original.</p>
<p>Image1.Canvas and Image1.Picture.Bitmap.Canvas are one and the same, that's why you need to resize the bitmap before painting on the canvas.</p>
<p>If you try and assign the bitmap in the TImage to the brush without assigning it to another bitmap object first like so <em>Image1.Canvas.Brush.Bitmap := Image1.Picture.Bitmap</em> you get an exception "not enough storage".</p>
http://stackoverflow.com/questions/1254772/processing-mysql-query-shown-on-progress-bar/1255117#12551170Answer by Re0sless for Processing MySQL query shown on progress barRe0sless2009-08-10T14:13:49Z2009-08-10T15:11:48Z<p>If you are using a DBExpress <em>TSQLconnection</em>, it has a property <em>ActiveStatements</em></p>
<p>So if you add a timer that fires every N seconds, when it fires check the ActiveStatements property and update your status accordingly. </p>
<p><strong>Update:</strong>
As correctly pointed out by Rob Kennedy in the comments, ActiveStatements does not show insert or update statements so it will not work for what you want.</p>
<p><em>TADOConnecttion</em> does however have the <em>OnWillExecute</em> and <em>OnExecuteComplete</em> events that fire before or after a command is executed, so it may be possible to do something with them, I just tested it and they do work on update statements.</p>
http://stackoverflow.com/questions/1252269/how-to-check-if-form-is-maximized/1252281#12522819Answer by Re0sless for How to check if form is maximized?Re0sless2009-08-09T21:02:36Z2009-08-09T21:02:36Z<p>You can check if a form is maximised by using</p>
<pre><code>Self.WindowState = wsMaximized
</code></pre>
<p>Other states are</p>
<ul>
<li>wsNormal </li>
<li>wsMinimized </li>
<li>wsMaximized</li>
</ul>
<p>Depending on what you are doing, you could also place the control on a panel and align the panel to the bottom of the form, if you turn the borders off and use the parent colour, you cant see the panel, that way it will stay at the bottom of the form without additional code.</p>
http://stackoverflow.com/questions/1249218/html-tables-using-jpg-images-as-borders/1249243#12492430Answer by Re0sless for HTML Tables using JPG images as bordersRe0sless2009-08-08T16:15:45Z2009-08-08T16:15:45Z<p>You can do it by adding <em>valign="top"</em> and <em>valign="bottom"</em> to the center cells in the top and bottom for the table. </p>
<p>like so:</p>
<pre><code><tr>
<td width="74" rowspan="11"><img src="left_image2.jpg" width="70" height="984" align="top" /></td>
<td colspan="5" valign="top"><img src="top_image3.jpg" width="461" height="171" align="left" /></td>
<td width="87" rowspan="11" ><img src="http:right_image2.jpg" border=0 width="71" height="984" align="bottom" /></td>
</tr>
......
<tr valign="bottom">
</code></pre>
http://stackoverflow.com/questions/1248079/ways-to-determine-the-version-of-firebird-sql/1248533#12485333Answer by Re0sless for Ways to Determine the Version of Firebird SQL? Re0sless2009-08-08T10:36:59Z2009-08-08T14:50:02Z<p>If you want to find it via SQL you can use <a href="http://www.firebirdsql.org/refdocs/langrefupd20-get-context.html" rel="nofollow">get_context</a> to find the engine version it with the following:</p>
<pre><code>SELECT rdb$get_context('SYSTEM', 'ENGINE_VERSION')
as version from rdb$database;
</code></pre>
<p>you can read more about it here <a href="http://www.firebirdfaq.org/faq223/" rel="nofollow">firebird faq</a>, but it requires Firebird 2.1 I believe.</p>
http://stackoverflow.com/questions/1244580/how-to-store-and-read-an-array-from-an-ini-file/1244650#12446509Answer by Re0sless for How to store and read an array from an INI file?Re0sless2009-08-07T13:16:25Z2009-08-07T13:42:52Z<p>You can do it like this,</p>
<pre><code>uses inifiles
procedure ReadINIfile
var
IniFile : TIniFile;
MyList:TStringList;
begin
MyList := TStringList.Create();
try
MyList.Add(IntToStr(1));
MyList.Add(IntToStr(2));
MyList.Add(IntToStr(3));
IniFile := TIniFile.Create(ChangeFileExt(Application.ExeName,'.ini'));
try
//write to the file
IniFile.WriteString('TestSection','Val1',MyList.commaText);
//read from the file
MyList.commaText := IniFile.ReadString('TestSection','Val1','');
//show results
showMessage('Found ' + intToStr(MyList.count) + ' items '
+ MyList.commaText);
finally
IniFile.Free;
end;
finally
FreeAndNil(MyList);
end;
end;
</code></pre>
<p>You will have to save and load the integers as a CSV string as there is no built in function to save arrays direct to ini files.</p>
http://stackoverflow.com/questions/1244441/accessviolation-when-using-c-dll-from-delphi/1244540#12445400Answer by Re0sless for AccessViolation when using C++ DLL from DelphiRe0sless2009-08-07T12:50:40Z2009-08-07T12:50:40Z<p>I had a similar problem when loading Dlls with LoadLibrary.</p>
<p>I got round it by calling Application.ProcessMessages before FreeLibrary.</p>
http://stackoverflow.com/questions/30319/is-there-a-html-opposite-to-noscript5Is there a html opposite to noscriptRe0sless2008-08-27T14:44:02Z2009-08-04T19:47:42Z
<p>Is there a tag in html that will only display its content if JavaScript is enabled? I know noscript works the opposite way around, displaying its html content when JavaScript is turned off. but I would like to only display a form on a site if JavaScript is available, telling them why they cant use the form if they don't have it.</p>
<p>The only way I know who to do this is with the document.write(); method in a script tag, and it seams a bit messy for large amounts of html.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows/1212313#12123132Answer by Re0sless for Is there programmatical way to get short day names in windows?Re0sless2009-07-31T12:37:03Z2009-07-31T12:50:16Z<p>You can get the local names for the days of the week with <a href="http://www.delphibasics.co.uk/RTL.asp?Name=ShortDayNames" rel="nofollow">ShortDayNames</a> and <a href="http://www.delphibasics.co.uk/RTL.asp?Name=LongDayNames" rel="nofollow">LongDayNames</a>, and you can use <a href="http://www.delphibasics.co.uk/RTL.asp?Name=DayOfWeek" rel="nofollow">DayOfWeek</a> to get the numeric value for the day.</p>
<pre><code>ShortDayNames[Index]; //Returns Fri
</code></pre>
<p>or</p>
<pre><code>LongDayNames[Index]; //Returns Friday
</code></pre>
<p>The only way I know to shorten them to two chars would be to trim the resulting string</p>
<pre><code>LeftStr(LongDayNames[Index],2);//Returns Fr
</code></pre>
<p>So today's Day would be</p>
<pre><code>LeftStr(LongDayNames[DayOfWeek(date)],2); //Returns Fr
</code></pre>
http://stackoverflow.com/questions/343562/what-is-the-correct-fastest-way-to-update-insert-a-record-in-sql-firebird-mysql2What is the correct/ fastest way to update/insert a record in sql (Firebird/MySql)Re0sless2008-12-05T11:27:44Z2009-07-24T23:01:45Z
<p>I need some SQL to update a record in a database if it exists and insert it when it does not, looking around there looks to be several solutions for this, but I don't know what are the correct/ accepted ways to do this.</p>
<p>I would ideally like it to work on both Firebird 2 and MySQL 5 as the update will need to be ran against both databases, and it would be simpler if the same SQL ran on both, if it worked on more database that would be a plus.</p>
<p>Speed and reliability also factor in, reliability over speed in this case but it will potentially be used to update 1000's of records in quick succession (over different tables).</p>
<p>any subjections?</p>
http://stackoverflow.com/questions/1151069/how-can-i-do-an-image-tile-in-an-mdi-application/1153125#11531251Answer by Re0sless for How can I do an image tile in an MDI application?Re0sless2009-07-20T11:55:50Z2009-07-20T15:36:22Z<p>You can do the following, in the MDI forms OnPaint procedure add the following</p>
<pre><code>Canvas.Lock;
try
Canvas.Brush.Bitmap := MyImg.Picture.Bitmap;
Canvas.FillRect(Rect(0,0,ClientWidth,ClientHeight));
finally
Canvas.Unlock;
end;
</code></pre>
<p>But it still flickers when you manually re-size the form, due to the excessive repaints. There are windows messages saying that a form is been resized that you could hook into, and not update until the form has finished resizing.</p>
<p>These windows messages would do the trick : </p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms632623%28VS.85%29.aspx" rel="nofollow">WM_EXITSIZEMOVE</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms632622%28VS.85%29.aspx" rel="nofollow">WM_ENTERSIZEMOVE</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms632647%28VS.85%29.aspx" rel="nofollow">WM_SIZING</a></li>
</ul>
http://stackoverflow.com/questions/1142254/get-window-to-refresh-etc-without-calling-application-processmessages/1142465#11424651Answer by Re0sless for Get window to refresh (etc) without calling Application.ProcessMessages?Re0sless2009-07-17T10:18:36Z2009-07-17T10:18:36Z<p>Rather than disable the controls, we have a boolean var in the form <em>FBusy</em>, then simply check this when the user presses a button, we introduced it for the exact reasons you mention, users clicking buttons while they wait for long running code to run (it scary how familiar your code sample is).</p>
<p>So you end up with something like</p>
<pre><code>procedure OnClick(Sender:TObejct);
begin
if (FBusy) then
begin
ShowMessage('Wait for it!!');
Exit;
end
else FBusy := True;
try
//long running code
finally
FBusy := False;
end;
end;
</code></pre>
<p>Its impotent to remember to rap the long running code up in a try-finally block in case of exits or exception, as you would end up with a form that will not work.</p>
<p>As suggested we do use threads if its for code that will not affect the data, say running a report or data analysis, but some things this is not an options, say if we are updating 20,000 product records, then we don't want anyone trying to sell or other wise altering the records mid flight, so we have to block the application until it is done.</p>
http://stackoverflow.com/questions/1136581/why-my-child-class-doesnt-inherit-all-methods-from-the-parent-class/1136616#11366162Answer by Re0sless for Why my child class doesn't inherit all methods from the parent class?Re0sless2009-07-16T10:06:59Z2009-07-16T10:06:59Z<p>You should make them <a href="http://www.delphibasics.co.uk/RTL.asp?Name=Protected" rel="nofollow">Protected</a>, instead of <a href="http://www.delphibasics.co.uk/RTL.asp?Name=Private" rel="nofollow">Private</a></p>
<p>like so</p>
<pre><code>type
TMyClass = class(TObject)
Private
procedure OnlyAccessedViaThisClass;
Protected
procedure OnlyAccessedViaThisClassOrSubClasses;
Public
procedure AccessedByAnyone;
end;
</code></pre>
http://stackoverflow.com/questions/1120069/find-the-serial-port-settings-in-delphi0Find the serial port settings in DelphiRe0sless2009-07-13T15:14:10Z2009-07-14T10:17:42Z
<p>Hi I have the need to find the Baud rate and other settings for a serial port, Looking about on the web, it looks like I should be using <a href="http://msdn.microsoft.com/en-us/library/aa363256%28VS.85%29.aspx" rel="nofollow">GetCommConfig</a>, This returns a TCommConfig record with what I assume is the data I need. The problem is the function I wote returns the wrong values.</p>
<p>The code below looks like it is working, but the baud rate is always 1200, which looking in windows device manager (and altering port settings), is wrong.</p>
<p>I have tried calling it like so:</p>
<pre><code>ComPort('com1');
ComPort('COM1');
ComPort('COM1:');
ComPort('COM4');
ComPort('COM9');
</code></pre>
<p>the first 4 are valid but return 1200 and the 5th is invalid and returns 0</p>
<pre><code>function ComPort(l_port:String):TCommConfig;
{Gets the comm port settings}
var
ComFile: THandle;
PortName: array[0..80] of Char;
size: cardinal;
CommConfig:TCommConfig;
begin
FillChar(Result, SizeOf(TCommConfig), 0);//blank return value
try
StrPCopy(PortName,l_port);
ComFile := CreateFile(PortName,GENERIC_READ or GENERIC_WRITE,0,nil,OPEN_EXISTING,0{ FILE_ATTRIBUTE_NORMAL},0);
try
if (ComFile <> INVALID_HANDLE_VALUE) then
begin
FillChar(CommConfig, SizeOf(TCommConfig), 0);//blank record
CommConfig.dwSize := sizeof(TCommConfig);//set size
//CommConfig.dcb.DCBlength := SizeOf(_dcb);
size := sizeof(TCommConfig);
if (GetCommConfig(ComFile,CommConfig,size)) then
begin
Result := CommConfig;
end;
end;
finally
CloseHandle(ComFile);
end;
except
Showmessage('Unable to open port ' + l_port);
end;
end;
</code></pre>
<p>Stepping through the code, the first 4 always hit the line <strong>Result := CommConfig;</strong>, so the GetCommConfig is retuning a valid code, so I must be missing something.</p>
<p>I have tryed verious other things, such as setting the length of the dcb record, but all have the same result, as baud of 1200.</p>
<p>Does anyone know where I am going wrong?</p>
http://stackoverflow.com/questions/1120069/find-the-serial-port-settings-in-delphi/1124526#11245262Answer by Re0sless for Find the serial port settings in DelphiRe0sless2009-07-14T10:17:42Z2009-07-14T10:17:42Z<p>It turns out I was using the wrong function, I should have been using <a href="http://msdn.microsoft.com/en-us/library/aa363262%28VS.85%29.aspx" rel="nofollow">GetDefaultCommConfig</a> and not the <a href="http://msdn.microsoft.com/en-us/library/aa363256%28VS.85%29.aspx" rel="nofollow">GetCommConfig</a> that I was using.</p>
<p>By the look if it, and please correct me if I am wrong, GetDefaultCommConfig returns the settings from windows and GetCommConfig returns the settings of the open connection to the port, writefile opens the port up as it see fit (ignoring the default settings), which is where the 1200 baud rate was coming from.</p>
<p>If this helps anyone in the future, here is the function I came up with.</p>
<pre><code>function ComPort(l_port:String):TCommConfig;
{Gets the comm port settings (use '\\.\' for com 10..99) }
var
size: cardinal;
CommConfig:TCommConfig;
begin
FillChar(Result, SizeOf(TCommConfig), 0);
//strip trailing : as it does not work with it
if (RightStr(l_port,1) = ':') then l_port := LeftStr(l_port,Length(l_port)-1);
try
FillChar(CommConfig, SizeOf(TCommConfig), 0);
CommConfig.dwSize := sizeof(TCommConfig);
size := sizeof(TCommConfig);
if (GetDefaultCommConfig(PChar(l_port),CommConfig,size)) then
begin
Result := CommConfig;
end
//if port is not found add unc path and check again
else if (GetDefaultCommConfig(PChar('\\.\' + l_port),CommConfig,size)) then
begin
Result := CommConfig;
end
except
Showmessage('Unable to open port ' + l_port);
end;
end;
</code></pre>
http://stackoverflow.com/questions/1108799/pos-ui-design-development-what-should-be-included-avoided/1109240#11092402Answer by Re0sless for POS UI design & development: what should be included & avoided?Re0sless2009-07-10T12:27:59Z2009-07-10T12:45:55Z<p>In addition to what has already been posted, here are some tips we picked up along the way.</p>
<p>We use two distinct UI's, one for touch-screen with large bold buttons and one for mouse/keyboard entry. the code behind them is the same just the layout is different.</p>
<p><strong>For touch screens</strong> </p>
<p>Try not to have pop-up messages that take focus away from the main form, as users may not be looking at the screen, for example if they are chatting with the customer. we found that if this happen users will continues scanning products unaware that they are not been entered into the sale. </p>
<p>If using a bar code scanner be aware that they sometimes send an enter key after the bar code, that will active focused controls (saying yes/no to pop-ups). To help prevent this we disable the enter key-press on buttons, so only a mouse/finger press will fire the click event. we also turn tab stop to false (may be called different in you language), to stop controls that are touch only from getting focus.</p>
<p>As far as colours go we try to stick to bold button and font colours that can easily be distinguished/read in poorly lit rooms and on screens with glare, as most times users are not in the position to move the screen should they have problem reading it.</p>
<p>Anything you can do to speed up/ help the user is a good thing, for example on our payment screen, as well as having 0..9 keys for payment entry, we also have £1,£2,£5,£10 etc so users don't have to add up the money they are given, they can just press the key for each coin/note they received from the customer.</p>
<p>The best tip I can give is to remember that you are designing for a completely different environment form a desktop application, that would be used in an office. and that users may of never used a computer before. since POS systems are usually locked down, try to make it as easy to use out of the box as possible.</p>
http://stackoverflow.com/questions/1102407/enumerate-running-processes-in-delphi/1102525#11025251Answer by Re0sless for Enumerate running processes in DelphiRe0sless2009-07-09T08:26:33Z2009-07-09T08:26:33Z<p>This is the function we use to check if a process exists, the FProcessEntry32 holds all the info on the process, so you should be able to extend it to what every you need.</p>
<p>it was taken from <a href="http://www.swissdelphicenter.ch/torry/showcode.php?id=2554" rel="nofollow">here</a></p>
<pre><code> uses TlHelp32
function processExists(exeFileName: string): Boolean;
{description checks if the process is running
URL: http://www.swissdelphicenter.ch/torry/showcode.php?id=2554}
var
ContinueLoop: BOOL;
FSnapshotHandle: THandle;
FProcessEntry32: TProcessEntry32;
begin
FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
FProcessEntry32.dwSize := SizeOf(FProcessEntry32);
ContinueLoop := Process32First(FSnapshotHandle, FProcessEntry32);
Result := False;
while Integer(ContinueLoop) <> 0 do
begin
if ((UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) =
UpperCase(ExeFileName)) or (UpperCase(FProcessEntry32.szExeFile) =
UpperCase(ExeFileName))) then
begin
Result := True;
end;
ContinueLoop := Process32Next(FSnapshotHandle, FProcessEntry32);
end;
CloseHandle(FSnapshotHandle);
end;
</code></pre>
<p>The TProcessEntry32 record looks like so:</p>
<pre><code>tagPROCESSENTRY32 = packed record
dwSize: DWORD;
cntUsage: DWORD;
th32ProcessID: DWORD; // this process
th32DefaultHeapID: DWORD;
th32ModuleID: DWORD; // associated exe
cntThreads: DWORD;
th32ParentProcessID: DWORD; // this process's parent process
pcPriClassBase: Longint; // Base priority of process's threads
dwFlags: DWORD;
szExeFile: array[0..MAX_PATH - 1] of Char;// Path
end;
</code></pre>
http://stackoverflow.com/questions/1088726/safe-dynamic-include/1088788#10887880Answer by Re0sless for Safe Dynamic IncludeRe0sless2009-07-06T19:22:43Z2009-07-06T19:31:21Z<p>I would recommend, checking for invalid file characters in the $page var (ie \ / : * < > ? ) and also check if the files exists using php's <a href="http://us2.php.net/manual/en/function.file-exists.php" rel="nofollow">file_exists()</a> method.</p>
<p>Something like</p>
<pre><code>$bad_chars = array("\\", "/", ":", "*", "?", ">", "<", "Foo", "Bar");
$file = str_replace($bad_chars, "", $file);
if (!file_exists('/' . $file))
{
echo 'bad file name';
}
</code></pre>
http://stackoverflow.com/questions/1071171/where-can-i-find-a-list-of-windows-api-constants-in-a-none-net-enviroment0Where can I find a list of windows API constants, in a none .net enviromentRe0sless2009-07-01T20:20:23Z2009-07-02T11:33:42Z
<p>I would like to find the values of some of windows API constants, such as, but not limited to *<a href="http://msdn.microsoft.com/en-us/library/aa931484.aspx" rel="nofollow">LVM_ENABLEGROUPVIEW</a>* & *<a href="http://msdn.microsoft.com/en-us/library/ms632645%28VS.85%29.aspx" rel="nofollow">WM_SHOWWINDOW</a>*</p>
<p>Looking on the net lead me to <a href="http://msdn.microsoft.com/en-gb/default.aspx" rel="nofollow">MSDN</a> which tells me what they are used for, but not the underlying values.</p>
<p>There is a very similar question on stackOverflow, <a href="http://stackoverflow.com/questions/718975/where-can-i-find-a-list-of-windows-api-constants">Where can I find a list of windows API constants</a>, but all the answers are for .net, or assume that I have the Windows SDK, that as far as I know I don't have.</p>
<p>So where can I find them?</p>
<p>If it makes a difference I am using Delphi 2007, and although it has a lot of the contents in the Messages unit, it does not have all of them, including some of the newest ones.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1072469/php-inside-javascript-no-contents-found/1073093#10730931Answer by Re0sless for php inside javascript - No Contents foundRe0sless2009-07-02T08:04:37Z2009-07-02T08:04:37Z<p>It looks to be a problem with your generated JavaScript, if you look on the line below, you will see that there is a href without an escaped " in it.</p>
<p>on the 5th line of the code below you have </p>
<pre><code><a href="strategies.php?strategy=Asking_a_question_when_you_already_know_the_answer">
</code></pre>
<p>This looks to be coming from the database, and sorted in the <em>$strategies</em> var, I would suggest you do a <a href="http://php.net/manual/en/function.str-replace.php" rel="nofollow">str_replace</a> on all the output from the database to replace " with \" </p>
<p>like so</p>
<pre><code>$strategies = str_replace ('"', '\\"' , $strategies);
</code></pre>
<p><strong>Code from your output</strong></p>
<pre><code>slsContents[1] = "<div class=\"container\"><p class=\"subheadred\">
<a href=\"casestudy.php?id=1\">man</a></p></div>
<div class=\"containerstudy\">" +"<div class=\"column1\">" +
"<p class=\"subheadsmall\">Strategies</p><p class=\"sidebarred\">
<a href="strategies.php?strategy=Asking_a_question_when_you_already_know_the_answer">
Asking a question when you already know the answer</a></p>" +
"<p class=\"sidebargrey\"><a href=\"link\">Target market segmentation // marketing strategy and execution</a></p>" +
"<p class=\"subheadsmall\">Client</p>" +
"<p class=\"sidebargrey\">NZTrio</p>" +"</div>"+
"<div class=\"column2\">" +
"<p class=\"bodygrey\">ftyiuutf<a href=\"casestudy.php?id=1\">...more</a></p>" +
"</div>" +
"<div class=\"column3\"><img src=\"images/tn_tereoposter.jpg\" width=\"275\" height=\"160\" /></div></div>";
</code></pre>
http://stackoverflow.com/questions/840353/delphi-tsqlquery-leaving-a-proccess-on-mysql-even-after-been-freed1Delphi - TSQLQuery leaving a proccess on MySQL even after been freedRe0sless2009-05-08T15:20:48Z2009-06-05T16:54:52Z
<p>I am using DBExpress in Delphi 2007 to connect to a MySQL5 database server on the net.</p>
<p>It all works OK, until I try and upload a large amount of data. I am trying to insert 8000+ records into the database, one at a time in a loop, in the loop I pass the TSQLConection object to a function along with the data to be inserted.</p>
<p>The function creates a TSQLQuery object and runs the insert query, before freeing the TSQLQuery. when I run it on large sets of data, I get a messages saying there the MySQL server has to many connections. Looking in the process list for the MySQL server I see this.</p>
<pre><code>+---------+------+-------------------------------+--------+---------+------+--------+-----------------------+
| Id | User | Host | db | Command | Time | State | Info |
+---------+------+-------------------------------+--------+---------+------+--------+-----------------------+
| 2962500 | name | myispdomain.co.uk:27812 | data | Sleep | 3 | | [NULL] |
+---------+------+-------------------------------+--------+---------+------+--------+-----------------------+
</code></pre>
<p>There is one entriy for every TSQLQuery object I have created, and if I step through the code I can see a new one go in when I run ExecSQL(). I am calling FreeAndNil on the TSQLQuery and have tried calling Close before freeing it.</p>
<p>My MySQL connection settings are as follows</p>
<pre><code> ConnectionName := 'MySQLConnection';
DriverName := 'MySQL';
GetDriverFunc := 'getSQLDriverMYSQL';
KeepConnection := TRUE;
LibraryName := 'dbxmys30.dll';
LoadParamsOnConnect := False ;
LoginPrompt := FALSE;
Name := 'mySQLConnection';
VendorLib := 'LIBMYSQL.DLL';
TableScope := [tsTable,tsView];
Params.Add('DriverName=MySQL');
Params.Add('HostName=www.sample.com');
Params.Add('Database=data');
Params.Add('User_Name=myuser');
Params.Add('Password=mypassword');
Params.Add('BlobSize=-1');
Params.Add('ErrorResourceFile=');
Params.Add('LocaleCode=0000');
Params.Add('Compressed=False');
Params.Add('Encrypted=True');
</code></pre>
<p>If I set KeepConnection to False the problem goes away, but the time to run the queries goes up. </p>
<p>Is there a way to get around this?</p>
http://stackoverflow.com/questions/926845/how-to-group-constant-strings-together-in-delphi6How to group constant strings together in DelphiRe0sless2009-05-29T16:13:42Z2009-05-31T03:07:02Z
<p>I application that uses strings for different status an item can be during its life.</p>
<p>ie</p>
<p>OPEN,
ACTIVE,
CLOSED,
DELETE,</p>
<p>and so on, at the moment they are all hard coded into code like so</p>
<pre><code>MyVar := 'OPEN';
</code></pre>
<p>I am working on changing this as it can be a maintenance problem, so I want to change them all to a constants, I was going to do it like so</p>
<pre><code>MyVar := STATUS_OPEN;
</code></pre>
<p>but I would like to group them together into one data structure like so</p>
<pre><code>MyVar := TStatus.Open;
</code></pre>
<p>What is the best way to do this in delphi 2007?</p>
<p>I know I can make a record for this, but how do I populate it with the values, so that it is available to all objects in the system without then having to create a variable and populating the values each time?</p>
<p>Ideal I would like to have one central place for the data structure and values, and have them easily accessible (like TStatus.Open) without having to assign it to a variable or creating an object each time I use it.</p>
<p>I am sure there is a simple solution that i am just missing. any ideas?</p>
http://stackoverflow.com/questions/842938/determine-parent-component/843044#8430445Answer by Re0sless for Determine Parent ComponentRe0sless2009-05-09T09:47:43Z2009-05-09T09:47:43Z<p>Try</p>
<pre><code> with (sender as TPopupMenu) do
ShowMessage(PopupComponent.Name);
</code></pre>
<p>That should give you the TToolButton that was pressed.</p>
http://stackoverflow.com/questions/828673/delphi-invalid-namespace-uri-in-ixmlnode0Delphi - Invalid namespace URI in IXMLNodeRe0sless2009-05-06T08:48:10Z2009-05-06T14:10:33Z
<p>I am trying to parse a response from a SOAP web service, but part of the data has an invalid xmlns element and I think it is causing me no end of trouble.</p>
<p>The part of the XML that I am working with is as follows.</p>
<pre><code><soap:Body xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<ResponseData xmlns="http://www.example.com/WebServices/Schemas/1">
<ResponseDataResult>
<Messages xmlns="http://www.example.com/WebServices/Schemas/2">
<Message>...</Message>
</Messages>
</ResponseDataResult>
...
</ResponseData>
</soap:Body>
</code></pre>
<p>The xmlns URI in the soap:Body node is OK, its the one in ResponseData that is invalid, it points to a none existent document. It should be noted that the web service is not under my control so fixing this is out of the question :(.</p>
<p>my Delphi (2007) code look, at present, something like this.</p>
<pre><code>var l_tmp,l_tmp2,FSOAPBody:IXMLNode;
begin
...
FSOAPBody := FSOAPEnvelope.ChildNodes.FindNode('Body','http://schemas.xmlsoap.org/soap/envelope/');
//returns the xml above.
if (FSOAPBody = nil) then exit;
l_tmp := FSOAPBody.ChildNodes.FindNode('ResponseData','');
if (l_tmp = nil) or (not l_tmp.HasChildNodes) then exit;
l_tmp2 := l_tmp.ChildNodes.FindNode('ResponseDataResult','');
...
end;
</code></pre>
<p>In the above code, I have had to add the blank namespace url to the <code>FindNode('ResponseData','')</code> code as with out it, it will not find anything and returns nil, with it however it reutrns the expected XML.</p>
<p>The problem is that the next find node (<code>ChildNodes.FindNode('ResponseDataResult','')</code>) raises an access violation when trying to access the ChildNodes of l_tmp, I can look at the xml using l_tmp.xml and see that it is the XML I would expect.</p>
<p>I suspect that it is due to the missing namespace, so I have tried to remove it, but get more errors saying it is a read-only attribute.</p>
<p>Is there anyway to remove the xmlns attribute or select nodes regardless of there NS? or am I going about this wrong?</p>
http://stackoverflow.com/questions/815051/how-to-stop-a-ui-from-locking-up-when-a-second-form-is-shown/815087#8150873Answer by Re0sless for How to stop a UI from locking up when a second form is shown?Re0sless2009-05-02T16:01:46Z2009-05-02T22:03:53Z<p>It's hard to say without seeing code and knowing exactly how your opening/loading the second form, but it sounds like you are opening them with <code>ShowModal</code> which will lock the parent form until the modal form returns a result.</p>
<p>If that is the case then you can simple open it with the Show method and then set the focus back to the main form like so.</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
var obj:TForm2;
begin
obj := TForm2.Create(nil);
try
obj.FormStyle := fsStayOnTop;
obj.show;
Self.SetFocus; //set focus back to the form1
except
FreeAndNil(obj);
end;
end;
</code></pre>
<p>The above also amuses that you are creating the form dynamically at runtime and that the second form is responsible for freeing itself.</p>
http://stackoverflow.com/questions/1361613/how-can-i-interrogate-the-delphi-component-paletteComment by Re0sless on How can I interrogate the Delphi component palette?Re0sless2009-09-01T10:46:38Z2009-09-01T10:46:38Zwhat version of Delphi?http://stackoverflow.com/questions/1260150/permissions-set-to-777-and-file-still-not-writeableComment by Re0sless on Permissions set to 777 and file still not writeableRe0sless2009-08-11T12:55:52Z2009-08-11T12:55:52ZDo you have write permission to the folder?http://stackoverflow.com/questions/1256071/how-to-use-a-bitmap-on-the-buttonComment by Re0sless on how to use a bitmap on the button?Re0sless2009-08-10T17:18:26Z2009-08-10T17:18:26ZWhat type of button TButton/TBitBtn etc and what version of Delphi?http://stackoverflow.com/questions/1248079/ways-to-determine-the-version-of-firebird-sql/1248533#1248533Comment by Re0sless on Ways to Determine the Version of Firebird SQL? Re0sless2009-08-08T14:51:01Z2009-08-08T14:51:01Zoops sorry , I cut and paste it from a SQL string in our Delphi app :P, fixed now.http://stackoverflow.com/questions/1244441/accessviolation-when-using-c-dll-from-delphi/1244540#1244540Comment by Re0sless on AccessViolation when using C++ DLL from DelphiRe0sless2009-08-07T13:18:40Z2009-08-07T13:18:40ZIts in the Forms unit, but as you are using a console app I don't know if you can use it.http://stackoverflow.com/questions/1120069/find-the-serial-port-settings-in-delphiComment by Re0sless on Find the serial port settings in DelphiRe0sless2009-07-13T21:12:37Z2009-07-13T21:12:37ZYes same result, as far as i can tell, GetCommConfig uses GetCommState internally to populate the DCB record.http://stackoverflow.com/questions/1120069/find-the-serial-port-settings-in-delphi/1120161#1120161Comment by Re0sless on Find the serial port settings in DelphiRe0sless2009-07-13T20:57:31Z2009-07-13T20:57:31ZI thought that was what CreateFile was doing, opening a connection to the port?http://stackoverflow.com/questions/308588/where-can-i-find-a-esc-pos-epson-barcode-test-program/308829#308829Comment by Re0sless on Where can I find a "ESC/POS" Epson Barcode Test Program?Re0sless2009-07-01T19:54:45Z2009-07-01T19:54:45ZDid you get it to work? if not I can post the full code (rather than just snippets).http://stackoverflow.com/questions/815051/how-to-stop-a-ui-from-locking-up-when-a-second-form-is-shown/815087#815087Comment by Re0sless on How to stop a UI from locking up when a second form is shown?Re0sless2009-05-02T22:03:57Z2009-05-02T22:03:57ZI was thinking that as it was a chat client it would not take up the whole screen, and the bullet holes would be else were one the screen (ie not over the chat window), but your right about stayOnTop so i have added that to the code. http://stackoverflow.com/questions/815051/how-to-stop-a-ui-from-locking-up-when-a-second-form-is-shownComment by Re0sless on How to stop a UI from locking up when a second form is shown?Re0sless2009-05-02T16:05:31Z2009-05-02T16:05:31ZYou may want to re-think your subject title as "bullet holes" is a little cryptic, something like "How to stop a Delphi from locking up when a second form is shown" may be more appropriate, and would get you better reply.http://stackoverflow.com/questions/576968/delphi-class-tlistview-not-foundComment by Re0sless on Delphi - Class TListView not foundRe0sless2009-03-20T14:13:03Z2009-03-20T14:13:03ZI turned out that there was a unit in the uses clause that we didn't use any more, once that was removed from all the units we do use the problem went away, I am still not sure why it didn't show on the other computers. http://stackoverflow.com/questions/664569/make-an-options-form-in-delphi/664668#664668Comment by Re0sless on Make an options form in DelphiRe0sless2009-03-20T12:50:37Z2009-03-20T12:50:37ZI've fixed the unnecessary typecasting and other syntax errors, so its alot cleaner and easier for beginners. http://stackoverflow.com/questions/664569/make-an-options-form-in-delphi/664668#664668Comment by Re0sless on Make an options form in DelphiRe0sless2009-03-20T02:05:24Z2009-03-20T02:05:24ZIt depends on what else you are doing in the change event I guess, if you are updating the main form or doing some other casting ie form1.caption = (sender as TRadioButton ).captionhttp://stackoverflow.com/questions/308588/where-can-i-find-a-esc-pos-epson-barcode-test-program/624212#624212Comment by Re0sless on Where can I find a "ESC/POS" Epson Barcode Test Program?Re0sless2009-03-08T22:02:16Z2009-03-08T22:02:16ZHi do you mean the escFeedAndCut in my code? if So I'll post it when i get into work tomorrow.http://stackoverflow.com/questions/576968/delphi-class-tlistview-not-found/576973#576973Comment by Re0sless on Delphi - Class TListView not foundRe0sless2009-02-23T10:22:18Z2009-02-23T10:22:18Zplease see my update to the question, thanks.