Preparations before delphi8 Installation

Source: Internet
Author: User
Tags interbase

2003/12/26
Preparations before delphi8 Installation
1. Microsoft. NET Framework Version 1.1 redistributable package
Http://download.microsoft.com/download/a/a/c/aac39226-8825-44ce-90e3-bf8203e74006/dotnetfx.exe

2... NET Framework SDK version 1.1
Http://download.microsoft.com/download/5/2/0/5202f918-306e-426d-9637-d7ee26fbe507/setup.exe

3. Microsoft Visual J #. Net version 1.1 redistributable package
Http://download.microsoft.com/download/0/5/5/055cd070-5455-470e-bc34-075f70c050a0/vjredist.exe

4. Java 2 Runtime
Http://public.planetmirror.com/pub/java-sun/J2SE/1.4.2_03/win32/j2re-1_4_2_03-windows-i586-p.exe
After a try, I wrote a simple program and got it to run on Win98. Run dotnetfx.exe first.

2003/12/27
If IIS is installed after the. NET Framework, ASP. NET must be
Registered with IIS by choosing START | run and entering
Following command:

% Comspec %/K % WINDIR %/microsoft.net/framework/v1.1.4322/aspnet_regiis.exe-I
 
Otherwise, attempting to run an ASP. NET application in the IDE
Will result in the error "unable to attach to ASP. NET worker

The example worldtravel (webdb) requires interbase7.1 (http://www.interbase.com), with "localhost: C:/program files/Borland/bds/2.0/demos/webdb/worldtravel. GDB" set bdpconnection. Test passed.

Example dB/aspportal
1. Restore database d4netsoft (mssql2k) from owebackup. Bak. Note that the location of database files must be specified on disk C;
2. Copy the directory bdswebexample to the wwwroot of IIS and rename it octanewebexample.
3. Run
Test passed.

An error occurred while registering the user:
Page. isvalid cannot be called before validation has taken place. It shocould be queried in the event handler for a control with causesvalidation = true or after a call to page. Validate.

2003/12/30

Follow the delphi8 online help
Building an ASP. NET "Hello World" Web Services Application successful
Accessing an ASP. NET "helloworld" Web Services Application encountered the following problem:
Procedure twinform1.button1 _ click (Sender: system. object; E: system. eventargs );
Begin
New WS: = webservice1 ();
Button1.text: = ws. helloworld ();
End;
The following error occurs during compilation:
[Error] winform1.pas (93): '('pected but identifier 'ws' Found
[Error] winform1.pas (94): Missing operator or semicolon
[Fatal error] project2.dpr (19): cocould not compile used unit 'winform1. pa'

If it doesn't work, modify it by yourself and add the following line to the Code:
Uses localhost1.webservice1;
Then modify the Code as follows:
Procedure twinform1.button1 _ click (Sender: system. object; E: system. eventargs );
VaR WS: localhost1.webservice1. twebservice1;
Begin
WS: = localhost1.webservice1. twebservice1.create ();
Button1.text: = ws. helloworld ();
End;
Compiled successfully.

Both clients have tried. Successful!
The WebService under Tomcat written in jbuilder9 is tested by a client written in delphi8.

2004/01/03
Delphi8 provides a new database technology ADO. net and BDP. net, including BDE for backward compatibility, dbexpress for creating cross-platform applications, ibx. net (Interbase. net), datasnap.. net.

2004/01/05
Two different applications can be created in delphi8. VCL Forms Application and Windows Forms Application also have. Net VCL Component and. NET component .. Net VCL component is designed to be compatible with previous versions. Ado. Net connector is such a control, but it cannot be found in the toolbar. Many controls do not appear, including many Active X controls.

2004/01/10
When developing ASP. NET applications using delphi8, the server-side scripting language also uses C #.

2004/01/12
General steps for developing ASP. NET Applications with delphi8:
1. Establish bdpconnection
2. Create bdpdataadapter, set connection in bdpdataadapter, select table, and select Dataset
3. Set tables-columns in Dataset
4. Create dbwebdatasource
5. Create dbwebgrid and dbwebnavigator, set their dbdatasource and tablename, and set columns of dbwebgrid (which can include button column, edit, delete, etc)

2004/03/15 vs. NET 2003
Vs. NET 2003 English version is installed, and no msdn disc is available. However, you can view it online at the following address:
Http://msdn.microsoft.com/library/default.asp? Url =/library/en-US/dnanchor/html/vsnetanchor. asp

Vs. NET 2003 supports windows ce.net application development.

2004/03/18 vs. NET 2003
The following problems occur when creating a multi-layer application:
D:/My Documents ents/Visual Studio projects/authorswebservice/authorswinclient/web references/localhost/reference. map (1): custom tool warning: discocodegenerator unable to initialize code generator. no code generated.

2004/03/19 vs. NET 2003
After redo once, the winclient is successful without any of the above issues.
However, when doing WebClient, update encountered the following problems:
Specified cast is not valid.
Description: An unhandled exception occurred during the execution of the current Web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception details: system. invalidcastexception: specified cast is not valid.

Source error:

Line 81: For (INT I = 1; I <= authordata. Authors. Columns. Count; I ++)
Line 82 :{
Line 83: textbox t = (textbox) (E. Item. cells [I]. controls [0]);
Line 84: datarow ROW = authordata. Authors [E. Item. datasetindex];
Line 85: Row [authordata. Authors. Columns [I-1]. Caption] = T. text;
 

Source File: C:/inetpub/wwwroot/authorswebclient/webform1.aspx. CS line: 83

Stack trace:

[Invalidcastexception: specified cast is not valid.]
Authorswebclient. webform1.datagrid1 _ updatecommand (Object source, datagridcommandeventargs E) in C:/inetpub/wwwroot/authorswebclient/webform1.aspx. CS: 83
System. Web. UI. webcontrols. DataGrid. onupdatecommand (maid E)
System. Web. UI. webcontrols. DataGrid. onbubbleevent (Object source, eventargs E)
System. Web. UI. Control. raisebubbleevent (Object source, eventargs ARGs)
System. Web. UI. webcontrols. datagriditem. onbubbleevent (Object source, eventargs E)
System. Web. UI. Control. raisebubbleevent (Object source, eventargs ARGs)
System. Web. UI. webcontrols. linkbutton. oncommand (commandeventargs E)
System. Web. UI. webcontrols. linkbutton. system. Web. UI. ipostbackeventhandler. raisepostbackevent (string eventargument)
System. Web. UI. Page. raisepostbackevent (ipostbackeventhandler sourcecontrol, string eventargument)
System. Web. UI. Page. raisepostbackevent (namevaluecollection postdata)
System. Web. UI. Page. processrequestmain () + 1277

 
2004/03/22 vs. NET 2003
The msdn simplified version is installed.
Windows2000big5 + vs. NET 2003 English + msdngb
Available.

2004/03/24 vs. NET 2003
101 Visual Basic and C # code samples
Http://www.microsoft.com/downloads/details.aspx? Familyid = 08e3d5f8-033d-420b-a3b1-3074505c03f3 & displaylang = en

2004/03/25 vs. NET 2003
Database Application Development Tools
Http://www.deklarit.com
Try getting started. It feels good.
VSS and vision must be separately installed

2004/03/27 delphi8
Borland's products emphasize modeling. Both delphi8 and C # builder support UML class diagrams.
Vs. NET 2003's modeling tool is Visio.

2004/04/01 delphi. net
The following error occurs in Asp.net created by delphi.net: "unable to attch to Asp.net worker process (typically aspnet_wp.exe or w3wp.exe )"
This error is generally caused by the installation of IIS only after the. NET Framework is installed. The solution is to execute the following command in the command line
% Comspec %/K % WINDIR %/microsoft.net/framework/v1.1.4322/aspnet_regiis.exe-I
This error may occur again later. Just try again.
In this way, a sub-directory aspnet_client will be created under the directory of the web site.

2003-12-26 15:09:00
Comment & raquo;

16:39:54. Net frameworkvbc.exe in/winnt/Microsoft. NET/framework/v1.1.4322
Samples in/program files/Microsoft. NET/SDK/V1.1

2004/01/02
Yesterday, vs. Net was installed, and the "Hello World" example of Web Service was tried. This method is very similar to delphi8. Debugging is not supported. Check and solve the problem according to the online help. Replace the IP address with the computer name.

2004/01/07
Press online help to use vs. Net for Web pages. Click a button to bring up a message box, which is very convenient. C # can replace JScript.

2004/07/12
Download the IBM Rational xde developer. Net evaluation version (valid for 15 days), which is closely integrated with vs.net.

**************************************** *

I recently started learning Delphi again. I stopped for several years. I looked for some information and found it. I don't have time to read it. I installed it here first, and I will read it later. I saw Li Wei's D8 video lecture last night. I found that D8 is just like. Borland approached. net. Is it the same way ?! However, we are still happy to see features like D8.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.