Ernesto Perales Soto
Posts
-
Speaking of wallpaper ... [modified] -
Good free email client outside of MS Office?have you tried Thunderbird? eperales
-
CP and Mozilla/FirebirdI've used mozilla with CP for over a year an I have no complaints except that sometimes I've seen links in articles using backslashes instead of slashes and that brokes the link or the image... as an example see the BipBuffer article in mozilla. Maybe could be a recomendation in the guidelines for authors... eperales
-
OPF.Net (Object Persistent Framework for .Net)what about publishing an article about it here in codeguru? eperales
-
I would like to refine an array.are you sure your code is correct? what is the intention of
base.Add(this)
? eperales -
Create DataTable from XML SchemaD, If you want to peek under the hood, maybe taking a look to .cs file generated by your .xsd may shed some light on the issue. On the other hand, if you want to test the FillSchema solution, use a SqlDataAdapter, I gave you the wrong link :~ eperales
-
Create DataTable from XML SchemaHi Douglas, Maybe DataAdapter.FillSchema may help you eperales
-
Cloning Data TablesDataRow[] sourceRows=sourceTable.Select(); DataTable targetTable=sourceTable.Clone(); foreach(DataRow sourceRow in sourceRows) targetTable.ImportRow(sourceRow); :) eperales
-
The worst articles everI don't why I had the feeling that had to be Him :eek: eperales
-
The worst articles everI have a couple of articles sitting on my HD, waiting for the "Worst Author in CodeProject" award, but what is the point if there is not even a page to show that proves it ;) eperales
-
The worst articles ever -
'_OLD_IOSTREAMS_ARE_DEPRECATED' - How do I clear this warning??replace : #include <iostream.h> with #include <iostream> eperales
-
cursor change AGAIN AGAINWhere is this code implemented? Seems like are you assuming that
lParam
holds a handle to the control below the cursor and, if my mind serves me right, this is not how this message works.. :confused: eperales -
GetParent when modelessvoid CPage2Dlg::OnButton() { CPopUpDlg dlg(WHATEVER_TEMPLATE_ID_YOU_ARE_USING,**this**); dlg.DoModal(); // position WRT the modeless parent }
afaik, it should work eperales -
How to get the clicked link's URL?OnBeforeNavigate2? eperales
-
problem with unicode and XMLAll unicode text files must begin with the Unicode char
0xFEFF
eperales -
call W32 API from MFC appI have Platform SDK installed, and I had similar error, after defining:
#define WIN32_WINDOWS 0x0410
in stdafx.h (before any include) they disappeared eperales -
call W32 API from MFC app:confused: And your problem is? Does not compile? Compiles but does not work? Blows your machine? eperales
-
CHtmlView and Excel documentsHi, I'm using CHtmlView as an active document container of Excel files, everything works as expected, except for a little problem : If I already have an excel spreadsheet open ( inside Excel, I mean ) and the open a second spreadsheet using my app I can not longer set the focus on Excel! I tried building a bare bones app with the wizard and it has the same error. Ideas anyone? I'm going nuts on this one :wtf: eperales
-
Rebase does not strip my debug symbolsMicrosoft does it again :mad:! Thanks for your answer Mike, I guess I better start digging MSDN about that new API you are talking about :mad::mad::mad::mad: