User Fabio Gomes - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T22:45:39Zhttp://stackoverflow.com/feeds/user/727http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250844/how-can-i-enable-full-text-indexing-using-sql-server-management-studio-in-sql-ser2How can I enable Full-Text indexing using SQL Server Management Studio in SQL Server 2008 Express?Fabio Gomes2008-10-30T16:34:12Z2009-11-12T07:20:28Z
<p>I did it using the commands as described <a href="http://www.wherecanibuyit.co.uk/ASP/full-text-search.html" rel="nofollow">here</a> and it works but <strong>I want to do it using the SQL Management Studio</strong>.</p>
<p>SQL Server 2008 Books Online says this:</p>
<blockquote>
<p>To create a full-text catalog:</p>
<ol>
<li><p>In Object Explorer, expand the server,
expand <strong>Databases</strong>, and expand the
database in which you want to create
the full-text catalog.</p></li>
<li><p>Expand
<strong>Storage</strong>, and then right-click
Full Text Catalogs.</p></li>
</ol>
<p>Select <strong>New Full-Text Catalog</strong>. </p>
<p>In the New <strong>Full-Text Catalog</strong> dialog
box, specify the information for the
catalog that you are re-creating. For
more information, see New Full-Text
Catalog (General Page).</p>
<p>Click <strong>OK</strong>.</p>
</blockquote>
<p>There's no such option as Storage in my SQL Server Management Studio.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/94684/how-to-automate-the-test-running-process-using-testcomplete3How to automate the test running process using TestComplete?Fabio Gomes2008-09-18T17:28:01Z2009-11-09T08:39:33Z
<p>We are trying to integrate tests in our daily builds using TestComplete, so far we have a machine dedicated for testing and our build script copies to this machine everything TestComplete needs for its tests (Application, Database, Test script project and source files, etc).</p>
<p>Basically we can open the TestComplete project manually and run the tests.</p>
<p>Now we want to automate that process, so how do you do it? Or how do you think would be the simplest and best way to make this automation?</p>
<p>Keeping it short, we want to automate the process of opening TestComplete after each build, run all the tests and send an email with the test results.</p>
<p>Anyone can share some experience about this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/8213/generate-insert-sql-statements-from-a-csv-file3Generate Insert SQL statements from a csv fileFabio Gomes2008-08-11T20:59:11Z2009-11-07T13:41:34Z
<p>I need to import a csv file into Firebird and I've spent a couple of hours trying out some tools and none fit my needs.</p>
<p>The main problem is that all the tools I've been trying like <a href="http://www.sqlmanager.net/products/ibfb/dataimport" rel="nofollow" title="Cocoa Programming for Mac OSX">EMS Data Import</a> and <a href="http://www.sqlmaestro.com/products/firebird/datawizard/help/06_01_05_csv/" rel="nofollow" title="Using Subversion hooks to send out build emails">Firebird Data Wizard</a> expect that my csv file contains all the information needed by my Table.</p>
<p>I need to write some custom SQL in the insert statement, for example, I have a cvs file with the city name, but as my database already has all the cities in another table (normalized), I need to write a subselect in the insert statement to lookup for the city and write its ID, also I have a stored procedure to cread GUIDS.</p>
<p>My Insert statement would be something like this:</p>
<p>INSERT INTO PERSON (ID, NAME, CITY<em>ID) VALUES((SELECT NEW</em>GUID FROM CREATE<em>GUID), :NAME, (SELECT CITY</em>ID FROM CITY WHERE NAME = :CITY_NAME)</p>
<p>I know that it is very easy to write an application to do this, but I don't like to reinvent the wheel, and I'm sure that there are some tools out there to do it.</p>
<p>Can you guys give me some advice?</p>
http://stackoverflow.com/questions/1600340/is-there-some-way-to-load-the-tsqlconnection-params-from-an-ini-file-in-design-ti1Is there some way to load the TSQLConnection params from an ini file in design time?Fabio Gomes2009-10-21T11:48:53Z2009-11-03T13:08:01Z
<p>I have a SQLConnection which is shared between projects, in runtine it reads the configuration from an ini file, is there some way to load this same configuration in design time?</p>
http://stackoverflow.com/questions/1589699/how-to-send-e-mail-using-gmails-smtp-and-indy-101How to send e-mail using gmail's smtp and Indy 10?Fabio Gomes2009-10-19T16:25:16Z2009-10-19T19:40:49Z
<p>I'm using Delphi 2009 and the lastest Indy 10 from svn to send e-mails using SMTP, but it doesn't work with gmail (Google Apps hosted domain). When I try to send an e-mail I get "Must issue a STARTTLS command first".</p>
<p>I tried googling about it but I found several forums and several solutions, but they all just bashed some code or just said I needed a OpenSLL dll, which so far isn't very clear to me exactly what I need.</p>
<p>Can someone please tell exactly which dll I need and what do I have to change in the my TIdSMTP and TIdMessage objects in order to send the e-mails through gmail's smtp server?</p>
<p>Also, an explanation about why this authentication is different and what the dll is for is very welcome.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1513983/which-features-of-delphi-2010-enterprise-version-are-valuable-to-you-and-why/1519506#15195061Answer by Fabio Gomes for Which features of Delphi 2010 Enterprise version are valuable to you, and why?Fabio Gomes2009-10-05T11:23:25Z2009-10-05T11:23:25Z<p>Dbx drivers (Firebird) and DataSnap.</p>
<p>But its way cheaper to just buy a third party driver and a third party SDK for the multi-tier connectivity and stick with the professional version.</p>
http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/11473#1147345Answer by Fabio Gomes for What is the worst interview question?Fabio Gomes2008-08-14T18:39:26Z2009-10-04T18:53:09Z<ol>
<li>Are you available to work overtime?</li>
<li>Can you work on saturdays?</li>
</ol>
<p>Yes, I truly believe that working less enhances productivity.</p>
http://stackoverflow.com/questions/1022034/jggrid-doesnt-respect-my-imgpath0jgGrid doesn't respect my imgpathFabio Gomes2009-06-20T17:09:50Z2009-09-25T12:15:31Z
<p>I'm trying to use jqGrid, but it doesn't respect the imgpath, it always defaults to </p>
<pre><code>"\themes\default\images"
</code></pre>
<p>I'm setting:</p>
<pre><code>imgpath: "..\..\Content\themes\default\images";
</code></pre>
<p>But it doesn't respect that and uses the default path, am I missing something?</p>
http://stackoverflow.com/questions/1022034/jggrid-doesnt-respect-my-imgpath/1476977#14769770Answer by Fabio Gomes for jgGrid doesn't respect my imgpathFabio Gomes2009-09-25T12:15:19Z2009-09-25T12:15:19Z<p>I've downloaded by mistake an ancient version of jqGrid (v0.01) which everything was hardcoded, thats why it wasn't working.</p>
http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx2How can I execute a sql command with a blob param in dbx?Fabio Gomes2008-11-28T14:26:38Z2009-09-24T15:29:15Z
<p>I have a TSqlDataSet which has a blob field, I need to get the data of this blob field in the BeforeUpdateRecord event of the provider and execute an update command, I've tried this:</p>
<pre><code>Cmd := TSQLQuery.Create(nil);
try
Cmd.SQLConnection := SQLConnection;
Cmd.CommandText := 'UPDATE MYTABLE SET IMAGE = :PIMAGE WHERE ID = :PID';
Cmd.Params.CreateParam(ftBlob, 'PIMAGE ', ptInput).Value := DeltaDS.FieldByName('IMAGE').NewValue; //blob field
Cmd.Params.CreateParam(ftString, 'PID', ptInput).Value := DeltaDS.FieldByName('ID').NewValue;
Cmd.ExecSQL;
finally
Cmd.Free;
end;
</code></pre>
<p>When I execute that I get an EDatabaseError with message: 'No value for parameter PIMAGE.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1009034/any-way-to-find-out-which-tfield-is-raising-edbclient-with-message-field-value-r2Any way to find out which TField is raising EDBClient with message 'Field value required.'?Fabio Gomes2009-06-17T19:19:14Z2009-08-26T11:54:12Z
<p>I have one TClientDataSet with several Fields and I'm getting this exception, I'm sure that I forgot to set one field value, but the question is, which Field?</p>
<p>Is there some way to find out quickly which field is raising this exception?</p>
<p><strong>EDIT</strong></p>
<p>I solved the problem, I was connecting the TClientDataSet to the wrong provider, which had a required field on the server but didn't have this field on the client.</p>
<p>But it still doesn't invalidate my question, I lost a lot of time to figure it out, and if I had some way to know which server side required field was raising this error it would be very quick to realise what was my mistake.</p>
<p><strong>EDIT 2</strong></p>
<p>Related QCs:</p>
<p><a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=5557" rel="nofollow">#5557</a> - Solved as "As Designed".</p>
<p><a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=54380" rel="nofollow">#54380</a> - Open</p>
http://stackoverflow.com/questions/743713/newly-created-modal-window-loses-focus-and-become-inacessible-in-windows-vista4Newly created modal window loses focus and become inacessible in Windows VistaFabio Gomes2009-04-13T12:09:17Z2009-08-05T19:06:08Z
<p>Sometimes when I open a modal window in my Delphi application it takes a while to show up, then I notice that the application is kind of blocked, and what happened was that the modal form was open with ShowModal but wasn't displayed and the application became locked as if the Modal Window was in the first layer.</p>
<p>Usually when this happens I have to use Alt + Tab or Windows + Tab to find the "hidden" modal window, but this doesn't work everytime.</p>
<p>This behavior just happens in Vista, but its quite annoying.</p>
<p>Is there some way to prevent this "focus weirdness" from happening?</p>
<p>Thanks.</p>
<p><strong>* EDIT *</strong></p>
<p>Apparently setting Application.MainFormOnTaskbar := True solved the problem, but it is still too early to jump to conclusions because this happens randomly.</p>
<p><strong>* EDIT 2 *</strong></p>
<p>ModalFormOnTaskbar didn't solve the problem, after that I tried setting PopupMode = pmAuto , but that just made the problem worst.</p>
<p>Right now I'm trying to set the PopupParent explicitly and will let you know if the problem is solved.</p>
http://stackoverflow.com/questions/1194223/runtime-error-r6034-when-trying-to-use-firebird-server-2-1-on-windows-server-20030Runtime Error R6034 when trying to use Firebird Server 2.1 on Windows Server 2003 (Cannot Load gds32.dll)Fabio Gomes2009-07-28T13:50:17Z2009-07-28T14:07:23Z
<p>I'm getting this runtime error R6034 when I try to execute an application in a Windows 2003 Server.</p>
<blockquote>
<p>Microsoft Visual C++ Runtime Library</p>
<p>Runtime Error!</p>
<p>R6034</p>
<p>An application has made an attempt to
load the C runtime library
incorrectly. Please contact the
application's support team for more
information.</p>
</blockquote>
<p>This server had Firebird 2.0 installed, and it works, I uninstalled it and installed Firebird 2.1, but Firebird 2.1 doesn't work at all.</p>
<p>When I use instclient to see which dll is installed it returns the correct result, which is the Firebird version I'm using 17910:</p>
<pre><code>>instclient.exe query gds32
Installed GDS32.DLL version : 6.3.1.17910 (shared DLL count 1)
</code></pre>
<p>I also looked for other dll which could be lost in the system but there's none, the system is clean, but I can't get Firebird to work.</p>
<p>If you are wondering why do I need the gds32, it's because I use the TIBBackupService component and it uses gds32 by default (or worst, hardcoded) so it can't be changed to fbclient.dll.</p>
<p>Any ideas to solve this are welcome, thanks.</p>
http://stackoverflow.com/questions/268583/unit-sysutils-was-compiled-with-a-different-version-of-sysconst-smonitorlockexcep0Unit SysUtils was compiled with a different version of SysConst.SMonitorLockException when trying to compile project in Delphi 2009Fabio Gomes2008-11-06T12:53:49Z2009-07-18T11:45:12Z
<p>I'm trying to compile a project and I'm getting this error.</p>
<p>The error occurs in a RemObjects source file, but I think it doesn't have anything to do with RemObjects.</p>
<p>Anyway this error is too generic, and I don't quite get why it happens, so how can I solve it?</p>
http://stackoverflow.com/questions/1063617/how-can-i-temporarily-disable-all-constraints-in-a-table-in-firebird-2-12How can I temporarily disable all constraints in a Table in Firebird 2.1?Fabio Gomes2009-06-30T13:13:53Z2009-07-01T00:03:39Z
<p>I want to disable all Foreign key constraints and re-enable them after, is there some way to do that?</p>
<p>I know that SQLServer allows that, but what about Firebird?</p>
http://stackoverflow.com/questions/1056457/simplest-way-to-protect-whole-folder-with-authentication-using-asp-net-mvc-and1Simplest way to protect whole folder (with authentication) using asp.net MVC and OpenIDFabio Gomes2009-06-29T03:31:41Z2009-06-29T12:04:52Z
<p>I'm really new to asp.net and mvc, so I'm a bit lost.</p>
<p>I'm managed to log in with OpenID in my application using this <a href="http://blog.dantup.me.uk/2009/04/using-openid-in-your-aspnet-mvc.html" rel="nofollow">Tutorial</a>.</p>
<p>But I'm not sure if just setting Session["Admin"] = true is the right path to follow, so far my code is something like this:</p>
<pre><code>switch (openid.Response.Status)
{
case AuthenticationStatus.Authenticated:
if (openid.Response.ClaimedIdentifier.ToString() == Settings.Default.AdminClaimedIdentifier)
Session["Admin"] = true;
FormsAuthentication.RedirectFromLoginPage(openid.Response.ClaimedIdentifier, false);
break;
...
}
</code></pre>
<p>The application I'm trying to write only needs one Administrator right now, and I found it to be very easy to just have this admin's OpenID in the Settings.</p>
<p>Basically what I want to do is have one Admin's OpenID in the Settings and them protected a whole folder based on this authentication, so every action inside it and it's subfolders needs Admin rights, something like: ~/Admin/whatever/edit/1 needs authentication.</p>
<p>Which would be the simplest and cleanest possible way to do this kind of authentication?</p>
http://stackoverflow.com/questions/1056473/asp-net-mvc-site-master-link-using-html-actionlink/1056534#10565340Answer by Fabio Gomes for ASP.net MVC site.master link using HTML.ActionLinkFabio Gomes2009-06-29T04:17:41Z2009-06-29T04:47:19Z<p>try:</p>
<pre><code>Html.ActionLink("My Contact Info", "DetailsbyUserName", "Users", new { loginName = Html.Encode(Page.User.Identity.Name), null);
</code></pre>
<p>if your controller is something like this:</p>
<pre><code>public ActionResult DetailsbyUserName(string veryVeryLongParameterName);
</code></pre>
<p>I guess you have to use new { veryVeryLongParameterName = "YourParamValue" } in the ActionLink's routeValues parameter.</p>
<p>And also, you need a route for that.</p>
<p>I'm very new to this too, at least that's what I understood about ActionLinks, hope someone can explain it better.</p>
http://stackoverflow.com/questions/1053541/problem-with-check-for-updates-in-rad-studio/1053908#10539083Answer by Fabio Gomes for Problem with Check for updates in RAD studioFabio Gomes2009-06-28T00:14:51Z2009-06-28T00:14:51Z<p>I had this problem also, you don't have to reinstall Delphi!</p>
<p>I can't remember the exact location, but you have to find were the update started downloading the update (I don't remember if it is on the Documents folder or the user folder) and execute the update manually.</p>
<p>Try searching for BDS, Codegear or RadStudio under you User's folder, I'm sure you will find the temp location, from there you can just execute the update and it will resume.</p>
http://stackoverflow.com/questions/905723/most-inappropriate-function-or-variable-names-you-have-encountered/1022349#10223490Answer by Fabio Gomes for Most inappropriate function or variable names you have encountered?Fabio Gomes2009-06-20T19:29:54Z2009-06-20T19:29:54Z<p>I once saw some code from a guy how was lazy about naming variables, so he named them like:</p>
<pre><code>var
A, B, C: string;
X, Y, Z: Integer;
</code></pre>
<p>I guess he understood what he was doing at the moment, but nor him nor anyone else could understand his code later.</p>
<p>Luckly he was an intern which just stayed for a couple of days, until people started to saw his code and fired him.</p>
<p>Every time somebody stepped into his code they just deleted everything and wrote all again from scratch.</p>
<p>No, they didn't use source control, nor had code reviews, they just shared a network folder where everyone changed everything right there, I bet that some of this guy's code are still there :)</p>
http://stackoverflow.com/questions/1022247/enable-drag-and-drop-into-visual-studio-2008-from-windows-explorer/1022314#10223143Answer by Fabio Gomes for Enable drag and drop into Visual Studio 2008 from Windows ExplorerFabio Gomes2009-06-20T19:17:51Z2009-06-20T19:17:51Z<p>This works out of the box.</p>
<p>However, if you are running Visual Studio as Administrator or as another user (diferent user from your currently logged in Windows user) Windows doesn't allow this kind of operation.</p>
http://stackoverflow.com/questions/1021666/how-do-you-set-the-result-value/1021745#10217456Answer by Fabio Gomes for How do you set the Result value?Fabio Gomes2009-06-20T14:38:57Z2009-06-20T14:38:57Z<p>This really depends on the method's complexity, you should always aim for readability, these examples for me are all fine</p>
<pre><code>function MyFunc: Boolean;
begin
Result := False;
if (Something or SomethingElse) and Whatever then
Result := True;
end;
function MyFunc: Boolean;
begin
Result := (Something or SomethingElse) and Whatever;
end;
function MyFunc: Boolean;
begin
Exit((Something or SomethingElse) and Whatever);
end;
function MyFunc: Boolean;
begin
if (Something or SomethingElse) and Whatever then
Result := True
else
Result := False;
end;
</code></pre>
<p>I, personaly, like to avoid else statments and write as few lines of code as possible, so I would go with example 2, but example 1 is fine too, options 3 and 4 isn't much readable IMO.</p>
<p>I think that if you give this 4 examples to a beginner, the first one is the easiest to understand.</p>
http://stackoverflow.com/questions/652836/used-web-platform-installer-to-install-the-mvc-framework-but-the-mvc-template-isn0Used Web Platform installer to install the MVC Framework but the MVC template isn't availableFabio Gomes2009-03-17T02:26:24Z2009-06-20T12:37:34Z
<p>I just installed Visual Web Developer and the MVC Framework using the Web Platform installer, I used the ASP.NET option and it says that MVC is installed, but it doen's show up in the templates list when I open a new project.</p>
<p>I installed in Windows XP with a limited user (typed the Administrator password to allow the install) I guess this is the problem, but, how can I fix it?</p>
<p>I tries logging in with the Administrator account and executing the MVC installer but still can't get the Template in Visual Web Developer.</p>
<p>Any clues? Or any way to register the templates manually?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/826231/0-0-is-not-a-valid-timestamp-when-accessing-oldvalue-of-tclientdatasets-tdatef1'0.0' is not a valid timestamp when accessing OldValue of TClientDataSet's TDateFieldFabio Gomes2009-05-05T18:17:16Z2009-06-04T22:29:13Z
<p>When I use the following code in a newly inserted record in a TClientDataSet:</p>
<pre><code>cdsMyDateField.OldValue <> Null
</code></pre>
<p>I get an EConvertError:</p>
<pre><code>''0.0' is not a valid timestamp'.
</code></pre>
<p>Looking at Delphi's VCL's code, it tries to convert the value to TDateTime which results in this Exception because the value (Null) is an invalid DateTime, but as I'm comparing Variants I thought that it would return a variant, which would be Null in this case, but that doesn't happen, instead I get this exception.</p>
<p>I know that I can just check if the DataSet.State = dsInsert before comparing the values, as if the State = dsInsert every OldValue is Null, but I want to understand why the OldValue tries to convert the value instead of Just returning Null in all Fields when the State = dsInsert.</p>
<p>Can anyone please give me some light?</p>
http://stackoverflow.com/questions/271850/how-to-track-down-tricky-memory-leak-with-fastmm1How to track down tricky memory leak with fastMM?Fabio Gomes2008-11-07T11:52:01Z2009-06-03T12:01:42Z
<p>After upgrading a project from Delphi 2007 to Delphi 2009 I'm getting an Unknown memory leak, so far I've been tryin to track it down using fastMM, here is what fastMM stack trace reports:</p>
<pre><code>A memory block has been leaked. The size is: 20
This block was allocated by thread 0x111C, and the stack trace (return addresses)
at the time was:
40339E [System.pas][System][@GetMem][3412] 534873 [crtl][_malloc]
56D1C4 [canex.cpp][MidasLib][DllGetDataSnapClassObject][3918]
56D316 [canex.cpp][MidasLib][DllGetDataSnapClassObject][3961]
56D5EE [canex.cpp][MidasLib][DllGetDataSnapClassObject][4085]
562D48 [DBCommon.pas][DBCommon][TFilterExpr.PutExprNode][1583]
408E46 [System.pas][System][DynArraySetLength][20464]
56D5EE [canex.cpp][MidasLib][DllGetDataSnapClassObject][4085]
408E92 [System.pas][System][@DynArraySetLength][20486]
528C1B [Forms.pas][Forms][TCustomForm.DoCreate][3260]
171A1A [GetRawStackTrace]
The block is currently used for an object of class: Unknown
The allocation number is: 302844
</code></pre>
<p>And sometimes I get this:</p>
<pre><code>A memory block has been leaked. The size is: 20
This block was allocated by thread 0x111C, and the stack trace (return addresses)
at the time was:
40339E [System.pas][System][@GetMem][3412]
534873 [crtl][_malloc]
56D1C4 [canex.cpp][MidasLib][DllGetDataSnapClassObject][3918]
56D316 [canex.cpp][MidasLib][DllGetDataSnapClassObject][3961]
77DC921A [RtlAnsiStringToUnicodeString]
56D5EE [canex.cpp][MidasLib][DllGetDataSnapClassObject][4085]
7726B8F5 [GetProcAddress]
7726B907 [GetProcAddress]
589B1E [ossrv.cpp][MidasLib][DllGetDataSnapClassObject][3163]
56D5EE [canex.cpp][MidasLib][DllGetDataSnapClassObject][4085]
408E92 [System.pas][System][@DynArraySetLength][20486]
The block is currently used for an object of class: Unknown
</code></pre>
<p>Is there some better way to figure out what really is causing the Memory leak?</p>
http://stackoverflow.com/questions/271850/how-to-track-down-tricky-memory-leak-with-fastmm/944345#9443452Answer by Fabio Gomes for How to track down tricky memory leak with fastMM?Fabio Gomes2009-06-03T12:01:42Z2009-06-03T12:01:42Z<p>This memory leak was being caused by a Delphi bug, QC <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=67709" rel="nofollow">#67709</a></p>
<p>It was fixed by the last Delphi 2009 update, no wonder I wasn't able to fix it.</p>
http://stackoverflow.com/questions/883809/why-does-strtointx5-returns-5-in-delphi4Why does StrToInt('X5') returns 5 in Delphi? Fabio Gomes2009-05-19T16:31:41Z2009-05-20T09:48:35Z
<p>Why does StrToInt('X5') returns 5 in Delphi? Is X some scientific notation or something like it? Are there some other chars which will be converted to Integer as well?</p>
http://stackoverflow.com/questions/752822/smtp-incoming-data-timeout-when-sending-email-with-inline-images-using-indy-101"SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP Fabio Gomes2009-04-15T17:26:04Z2009-04-15T19:06:40Z
<p>I'm getting the error "SMTP incoming data timeout" when I try to send an email with inline images in Windows XP, I'm using the tiburon branch of Indy 10 with the following code to send emails with inline images:</p>
<pre><code> MB := TIdMessageBuilderHtml.Create;
try
MB.PlainText.Assign(Text);
MB.Html.Assign(FHTML);
MB.HtmlFiles.Add('c:\Path\to\My\Image.jpg');
MB.FillMessage(IdMessage);
finally
MB.Free;
end;
if not IdSMTP.Connected then
IdSMTP.Connect;
IdSMTP.Send(IdMessage);
</code></pre>
<p>It just happens in Windows XP, in Windows Vista the email and the inline image are sent just fine.</p>
<p>Apparently it isn't sending anything to the server, it appears to become stuck enconding the image before sending.</p>
<p>Here is the call stack:</p>
<pre><code> IdReplySMTP 497 +1 TIdReplySMTP.RaiseReplyError
IdTCPConnection 574 +1 TIdTCPConnection.RaiseExceptionForLastCmdResult
IdTCPConnection 724 +10 TIdTCPConnection.CheckResponse
IdTCPConnection 563 +2 TIdTCPConnection.GetResponse
IdTCPConnection 583 +4 TIdTCPConnection.SendCmd
IdTCPConnection 696 +4 TIdTCPConnection.SendCmd
IdSMTP 377 +2 TIdSMTP.DisconnectNotifyPeer
IdTCPConnection 517 +5 TIdTCPConnection.Disconnect
IdSMTP 476 +2 TIdSMTP.Disconnect
IdTCPConnection 828 +2 TIdTCPConnection.Disconnect
Email 130 +11 TEmail.Destroy
System 9806 +1 TObject.Free
EnviarEmail 322 +38 TFormEnviarEmail.Enviar
System 12106 +38 @HandleFinally
RtlUnwind
System 11589 +83 @HandleAnyException
KiUserExceptionDispatcher
RtlAppendUnicodeToString
IdMessageClient 873 +4 EncodeAttachment
IdMessageClient 1213 +252 TIdMessageClient.SendBody
IdMessageClient 1244 +283 TIdMessageClient.SendBody
IdMessageClient 1269 +12 TIdMessageClient.SendMsg
IdSMTPBase 251 +6 TIdSMTPBase.SendNoPipelining
IdSMTPBase 436 +4 TIdSMTPBase.InternalSend
IdSMTPBase 457 +1 TIdSMTPBase.Send
IdSMTP 415 +6 TIdSMTP.Send
IdSMTPBase 449 +6 TIdSMTPBase.Send
</code></pre>
<p>Any clues about what is causing it and how can I solve the problem?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/752822/smtp-incoming-data-timeout-when-sending-email-with-inline-images-using-indy-10/753242#7532420Answer by Fabio Gomes for "SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP Fabio Gomes2009-04-15T19:06:40Z2009-04-15T19:06:40Z<p>Problem solved.</p>
<p>I'm parsing an HTML file to load the images and attach them in the email, but in windows XP the path is:</p>
<pre><code>C:\Documents And Settings\User\Desktop\....
</code></pre>
<p>And in the html file this path was</p>
<pre><code>C:\Documents%20And%20Settings\User\Desktop\....
</code></pre>
<p>So a File not Found exception was being raised internally and stopping the process, till timeout, and Indy wasn't raising it.</p>
<p>After attaching a remote debugger in the process running on the Windows XP machine I got the exception in the first try.</p>
<p>I don't think its correct for Indy to "engulf" the exception, but that's another history.</p>
http://stackoverflow.com/questions/714241/images-arent-being-displayed-as-embedded-in-email-sent-by-my-application0Images aren't being displayed as embedded in email sent by my applicationFabio Gomes2009-04-03T14:46:09Z2009-04-06T12:57:46Z
<p>I'm trying to send an email with embedded images through a delphi application using Indy, but somehow it isn't working.</p>
<p>I compared the contents of the email I sent with one sent from gmail, and everything seens fine, but I might be missing some little detail.</p>
<p>Gmail shows the attached image of my email as a normal attachment, but it is set correctly as inline.</p>
<p><strong>EDIT</strong></p>
<p>Solved using the <a href="http://www.indyproject.org/Sockets/Blogs/RLebeau/20080116.EN.aspx" rel="nofollow">TIdMessageBuilderHtml</a> it worked perfectly on the first try.</p>
http://stackoverflow.com/questions/714241/images-arent-being-displayed-as-embedded-in-email-sent-by-my-application/715209#7152094Answer by Fabio Gomes for Images aren't being displayed as embedded in email sent by my applicationFabio Gomes2009-04-03T19:00:25Z2009-04-03T19:00:25Z<p>Solved using the <a href="http://www.indyproject.org/Sockets/Blogs/RLebeau/20080116.EN.aspx" rel="nofollow">TIdMessageBuilderHtml</a> it worked perfectly on the first try.</p>
<p>Just a few lines of code:</p>
<pre><code> with TIdMessageBuilderHtml.Create do
try
Subject := 'example';
Html.Text := 'HTML goes here';
HtmlFiles.Add('c:\folder\image1.jpg');
HtmlFiles.Add('c:\folder\image2.jpg');
FillMessage(IdMessage1);
finally
Free;
end;
</code></pre>
http://stackoverflow.com/questions/1649071/how-can-i-get-an-e-mail-address-out-of-a-string-of-keyvalue-pairsComment by Fabio Gomes on How can I get an e-mail address out of a string of key=value pairs?Fabio Gomes2009-10-30T12:06:55Z2009-10-30T12:06:55Z@Skuta Then why didn't you just added an answer with that then? Did you think we would downvote you?http://stackoverflow.com/questions/1600340/is-there-some-way-to-load-the-tsqlconnection-params-from-an-ini-file-in-design-ti/1601005#1601005Comment by Fabio Gomes on Is there some way to load the TSQLConnection params from an ini file in design time?Fabio Gomes2009-10-30T11:50:33Z2009-10-30T11:50:33ZI think you didn't understand my question. I want to load the settings in design time, the only way I can connect to a Database in design time is by configuring the connection in the dfm, and I don't want to do that.http://stackoverflow.com/questions/1639538/how-to-detect-when-the-laptop-is-running-on-batteries/1639567#1639567Comment by Fabio Gomes on How to detect when the laptop is running on batteries?Fabio Gomes2009-10-28T19:59:08Z2009-10-28T19:59:08ZAre you trying to code in Brainf*ck's syntax? Why not just Result := not Boolean(SysPowerStatus.ACLineStatus). You test a condition for True then return False... O_ohttp://stackoverflow.com/questions/1589699/how-to-send-e-mail-using-gmails-smtp-and-indy-10/1589906#1589906Comment by Fabio Gomes on How to send e-mail using gmail's smtp and Indy 10?Fabio Gomes2009-10-20T10:34:05Z2009-10-20T10:34:05ZThat worked, thanks, one thing that I'm still not sure, do I really need the OpenSSL dlls? The article says nothing about it, but when I tested it gives me an exception "Cannot load library" if I try to send e-mails without the dlls. This is still not very clear to me. Thanks.http://stackoverflow.com/questions/1583828/how-can-i-get-embarcadero-quality-central-to-do-something-about-my-bug-reportComment by Fabio Gomes on How Can I Get Embarcadero Quality Central To Do Something About My Bug ReportFabio Gomes2009-10-19T10:54:36Z2009-10-19T10:54:36Z@ldsandon So true! I need a fix for a bug which is opened since Delphi 6: <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=2334" rel="nofollow">qc.embarcadero.com/wc/qcmain.aspx?d=2334</a>http://stackoverflow.com/questions/1194223/runtime-error-r6034-when-trying-to-use-firebird-server-2-1-on-windows-server-2003/1194340#1194340Comment by Fabio Gomes on Runtime Error R6034 when trying to use Firebird Server 2.1 on Windows Server 2003 (Cannot Load gds32.dll)Fabio Gomes2009-07-28T17:01:32Z2009-07-28T17:01:32ZI installed the Microsoft Visual C++ 2005 SP1 and it worked right away! Thanks!http://stackoverflow.com/questions/1059166/how-to-indent-long-conditionals-for-if-statements/1059194#1059194Comment by Fabio Gomes on How to indent long conditionals for 'if' statements?Fabio Gomes2009-06-29T16:23:35Z2009-06-29T16:23:35ZThis is much more readable IMO.http://stackoverflow.com/questions/1021666/how-do-you-set-the-result-value/1021745#1021745Comment by Fabio Gomes on How do you set the Result value?Fabio Gomes2009-06-20T15:09:58Z2009-06-20T15:09:58ZThats right, example 3 is new to Delphi 2009.http://stackoverflow.com/questions/1020749/what-are-public-private-and-protected-in-object-oriented-programming/1020776#1020776Comment by Fabio Gomes on What are public, private and protected in object oriented programming?Fabio Gomes2009-06-20T03:06:20Z2009-06-20T03:06:20ZSome languages have some particularities. Like in Delphi, private members are acessible by other classes on the same unit, and you have to use strict private if you don't want this behavior.http://stackoverflow.com/questions/1009034/any-way-to-find-out-which-tfield-is-raising-edbclient-with-message-field-value-r/1009187#1009187Comment by Fabio Gomes on Any way to find out which TField is raising EDBClient with message 'Field value required.'?Fabio Gomes2009-06-18T11:50:00Z2009-06-18T11:50:00ZNo, what I'm saying is: it is raised in line 2861 in DBClient.pas, which has this code: Check(FDSCursor.InsertRecord(ActiveBuffer)); the funcion InsertRecord is:
function InsertRecord( { Insert new record }
pRecBuf : Pointer
): DBResult; stdcall;
And if I'm not mistaken, is from midas, so, how do I debug it?http://stackoverflow.com/questions/1009034/any-way-to-find-out-which-tfield-is-raising-edbclient-with-message-field-value-r/1009187#1009187Comment by Fabio Gomes on Any way to find out which TField is raising EDBClient with message 'Field value required.'?Fabio Gomes2009-06-18T00:13:37Z2009-06-18T00:13:37ZThe problem is that I can't debug it, it is raised by and stdcall on TClientDataSet's InternalPost, it passes the validation of TDataSet's InternalPost method.http://stackoverflow.com/questions/826231/0-0-is-not-a-valid-timestamp-when-accessing-oldvalue-of-tclientdatasets-tdatefComment by Fabio Gomes on '0.0' is not a valid timestamp when accessing OldValue of TClientDataSet's TDateFieldFabio Gomes2009-05-27T16:18:01Z2009-05-27T16:18:01ZThanks Fabricio, already voted on it :)http://stackoverflow.com/questions/883809/why-does-strtointx5-returns-5-in-delphi/883845#883845Comment by Fabio Gomes on Why does StrToInt('X5') returns 5 in Delphi? Fabio Gomes2009-05-19T16:48:21Z2009-05-19T16:48:21ZNope, 010 is converted to 10, it just understands decimal and hexadecimal.http://stackoverflow.com/questions/752822/smtp-incoming-data-timeout-when-sending-email-with-inline-images-using-indy-10/752892#752892Comment by Fabio Gomes on "SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP Fabio Gomes2009-04-15T18:06:03Z2009-04-15T18:06:03ZChanging the ReadTimeOut to 20000 resulted in an EIdReadTimeOut exception, what does it mean?http://stackoverflow.com/questions/708847/delphi-is-it-ok-for-an-object-to-free-it-self/708978#708978Comment by Fabio Gomes on Delphi: Is it ok for an object to free it self?Fabio Gomes2009-04-02T12:26:44Z2009-04-02T12:26:44ZYes, but you should remember that Delphi's TComponent overrides the interface's reference counting, which often causes confusion.