Delphi and Delphi for .NetIt seems that Delphi for .Net is slower than Delphi Win32 native applicaiton.
I would like to know is it true all .Net application is slower than Win32 native applicaiton or it is Delphi for .Net only.
Your information is great appreciated,
Inung
On 2011-06-21 18:20:17 +0100, Inung Huang said:
> It seems that Delphi for .Net is slower than Delphi Win32 native applicaiton.
> I would like to know is it true all .Net application is slower than
> Win32 native applicaiton or it is Delphi for .Net only.
If you are only running the code in the application once then, yes, yo...
Converting Delphi for Win32 to Delphi .Net(Prism)Hi,
I am currently migrating a project from Delphi for Win32 to Delphi.net.
Part of my code currently goes into a directory and pulls out a random file from this directory and loads the contents of the file for me. This code doesn't seem to work in Delphi.Net. It uses PString and a number of functions in SysUtils that don't seem to be present in Delphi.net's SysUtils file.
If anyone can help me please, it would be greatly appreciated!
Many thanks,
Jonathan Mackey
Jonathan Mackey a écrit :
> I am currently migrating a project from Delphi for Win32 to
&...
Convert Delphi 5 ADO App to Delphi 2007 ADO.NETI have an appliction tha that is writen in Delphi 5 with ADOConnetion, ADOTable, and ADOQuery components.
I need to upgrade to Delphi 2007 and use ADO.NET.
I have the program building in with Delphi 2007. Is there anything I need to do to convert the ADO to ADO.NET?
> I need to upgrade to Delphi 2007 and use ADO.NET.
Why ?
--
With best regards,
Dmitry Arefiev
AnyDAC (www.anydac.com) - Oracle, MS SQL Server, IBM DB2, MySQL,
Firebird, Interbase, PostgreSQL, Sybase ASA, SQLite, MS Access, DBX,
ODBC, InMem - universal high-speed native data access engine
Reasons for ...
How to convert C#.Net code to VB.Net code ???...
HI,
i was searching something new, then i suddenly find some tips to convert C#.Net code to VB.Net but i did not do well.
i am puttint its url here plz tell me how to convert C#.Net code to VB.Net.
http://www.dotnetspider.com/code/C-273-Convert-C-VB-NET.aspx
Jasim...Please remember to click “Mark as Answer” on the post that helps youJasim AkhtarNew Delhi ( INDIA )
It would be better if you write the problem you having, while converting from C# to VB.NET. You cannot completely rely on online converters.
ThanksMark post(s) as "Answer" that helped youElectronic ScrewWebsite||Bl...
Api to skydrive delphi or delphi.netDear Good afternoon ...
Does anyone have any idea or some documentation on how to implement or delphi.net via delphi api to access skydrive files. Thank you for your help.
...
delphi.Net Delphi 2005 Project Upgrades?Our company aquired the software property from another last year.
Most of the projects were written in Delphi 2007. We purchased Delphi XE which gave us access to previous versions, including D 2007... all is well.
However, 3 projects were written Delphi 2005 for .Net.
The VM we received from this company included D2005 but it was licensed from the previous developer.
I've contacted Embarcadero about obtaining a copy and or a license+registration for Delphi 2005 and was told this product is no longer available.
I'm under the impression Delphi for .Net was abandoned.
My qu...
Delphi.NET loading Delphi.Win32 DriverHi,
What I'm trying to do is marshal an array of cardinal (or integer) back into managed memory from a win32 dll.
I know how to pass managed memory into a win32 dll
{code}
var aa : array of Integer;
Buffer : IntPtr;
begin
SetLength(aa,2);
aa[0] := 1;
aa[1] := 80;
if not Supports(ExtractFilePath(Application.ExeName)+'Win32_Library\SDK_Driver.Win32.io', TypeOf(IMyFunctions), MyFunctions) then Exit; //loads the driver into memory. MyFunctions contains the method names found in the SDK_Driver.
Buffer := Marshal.AllocHGlobal(2 * {Marshal.SystemDefaultC...
delphi Win32 using delphi .NET dllHi,
I'm trying to use a delphi.NET dll in delphi.WIN32. I am currently using CodeGear Delphi 2007 with version2(base version) of .NET
I can get the dll to import into the WIN32 application the only problem is when i include things such as: "using Classes,DateUtils, SysUtils" in the .NET dll the win32 application will instantly hang when any of the dll functions are called.
Any help would be great thanks.
Also I have tried this example and it also crashes for me? http://cc.embarcadero.com/Item/22688
-Braden
I also found this..
"The problem is that, wehn you instal...
converting to vb.net from c#.net authorize.net
authorize.net offered me some sample code when I signed up with them the only problem is the sample code is in c#.net but my page that they type all of their credit card into is vb.net
<code><%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.IO" %>
<script language="C#" runat="server">
void Page_Load(Object Src, EventArgs E) {
myPage.Text = readHtmlPage("https://certification.authorize.net/gateway/transact.dll");
}
private String readHtmlPage(string url)
{
...
Delphi 7.0 code convert to delphi XE ...Hello All,
I create an application using Web Server Application then CGI stand alone... In WebModule I add ModuleController component and IWPageProcedure...
Below is my code in Delphi 7.0, this is how to call another units in webmodule...
....
....
procedure TWebModule1.proMainGetForm(ASender: TIWPageProducer; AWebApplication: TIWApplication; var VForm: TIWPageForm);
begin
VForm := TfrmMain.Create(AWebApplication);
end;
procedure TWebModule1.proLogInGetForm(ASender: TIWPageProducer; AWebApplication: TIWApplication; var VForm: TIWPageForm);
begin
VForm := TfrmLogIn.Create(AWebA...
Convert a Win32 to Delphi .NET in D2006The win32 app is a D2006 app as well. How do I convert it to be a Delphi .NET app short of recreating the forms and copy/pasting code? Is there a conversion tool in Delphi to do this?
I would think with VCL .NET there would be a way to change the target project type.
--
Don Gollahon
Don Gollahon wrote:
> The win32 app is a D2006 app as well. How do I convert it to be a
> Delphi .NET app short of recreating the forms and copy/pasting code?
> Is there a conversion tool in Delphi to do this?
>
> I would think with VCL .NET there would be a way to change the...
from .net to delphiI have a working app in .net using the remote desktop activex. I imported it
into Delphi and try to access it. So far w.o. luck. I'm trying to conver the
following code:
IMsTscNonScriptable secured = (IMsTscNonScriptable)rdp.GetOcx();
secured.ClearTextPassword = txtPassword.Text;
rdp.Connect();
The problem is that IMsTscNonScriptable is declared in Delphi as:
IMsTscNonScriptable = interface(IUnknown)
['{C1E6743A-41C1-4A74-832A-0DD06C1C7A0E}']
function Set_ClearTextPassword(const Param1: WideString): HResult;
stdcall;
Also the GetOcx() is not a member...
converting delphi 2007 code to delphi XE2 -- emptyparam problemHi, I am trying to convert my applicantion code from delphi 2007 to delphi XE2 and i got stuck in this error "[DCC Error] ADODB_TLB.pas(4888): E2033 Types of actual and formal var parameters must be identical". This happens when we use emptyparam as an argument in a function that wants an olevariant.
Example:
function TAcadDatabase.CopyObjects(Objects: OleVariant): OleVariant;
begin
Result := DefaultInterface.CopyObjects(Objects, EmptyParam, EmptyParam); //this is where we get the ERROR
end;
The coyobjects function as this signature: " function CopyObjects(Object...
Delphi 2005Hello,
does anybody know where to find a code-sample or tutorial for DELPHI 2005
and ASA 9 ?
I want to build Web applications with DELPHI 2005.NET (ASP.NET) and I'm a
bit confused with the terms: ADO.NET, BDP.NET,....
Is it possible to use BDP.NET components to access the excellent SQLAnywhere
9 ?
Thanks
Thomas
Em, 18/04/2005 09:08, Thomas Auer escreveu
> Hello,
>
> does anybody know where to find a code-sample or tutorial for DELPHI 2005
> and ASA 9 ?
> I want to build Web applications with DELPHI 2005.NET (ASP.NET) and I'm a
> bit...