0

objectoriented programming with php5 source code

Source code Server.doc

Source code Server.doc

Công nghệ thông tin

... Source code ServerSub connectserver(ddriver As String, sserver As String, uuid As String, ppw As...
  • 6
  • 1,002
  • 2
SOURCE CODECLIENT.doc

SOURCE CODECLIENT.doc

Công nghệ thông tin

... Source CodeClientSub export(fname As String, daty As String)On Error GoTo loiDim sconnect As StringDim ... frmtm.dbs.TableDefs(tname).CreateIndex(idx.name) With idxnew .Fields = idx.Fields .Unique = idx.Unique .Primary = idx.Primary .Required = idx.Required .IgnoreNulls = idx.IgnoreNulls End With frmtm.dbs.TableDefs(tname).Indexes.Append ... dbs.TableDefs(tname).CreateIndex(idx.name) With idxnew .Fields = idx.Fields .Unique = idx.Unique .Primary = idx.Primary .IgnoreNulls = idx.IgnoreNulls .Required = idx.Required End With dbs.TableDefs(tname).Indexes.Append...
  • 13
  • 551
  • 0
Java Programming with Oracle ODBC

Java Programming with Oracle ODBC

Kỹ thuật lập trình

... following code. In both the <EMBED> and <APPLET> tags, replace code, codebase, and archive with values appropriate for the applet you are running. <! The following code is repeated ... architectures lies in whether a given driver is implemented in native code or in Java code. By native code, I mean whatever machine code is supported by a particular hardware configuration. For example, ... pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html" ' + ' code= " code. class" ' + ' codebase=" codebase" ' + ' archive=" archive" '...
  • 389
  • 638
  • 4
Lab 5 Parallel Programming with MPI

Lab 5 Parallel Programming with MPI

Công nghệ - Môi trường

... 1, MPI_LONG, MPI_ANY _SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status); /* SV xac dinh process gui ket qua ve va gui tiep du lieu cho no ??? */ sender = status.MPI _SOURCE; row = status.MPI_TAG...
  • 5
  • 469
  • 1
Thủ thuật xem source code của các trang web cấm chức năng xem source code

Thủ thuật xem source code của các trang web cấm chức năng xem source code

Tư liệu khác

... Thủ thuật xem source code của các trang web cấm chức năng xem source code Đã bao giờ các bạn muốn xem source code của một trang web nhưng khi bấm phải chuột và dùng chức năng view source thì không ... _http://www.viewhtml.com ra và pasteđường link đó vào mục URL rồi bấm nút View HTML Source. Trang web này sẽ tự động trả lại toàn bộ Source Code HTML của đường link trên. Sau đó bạn dùng chức năng Searchđể ... chức năng View Source được.Chúng tôi giới thiệu một thủ thuật đơn giản và hiệu quả để thực hiện công việc đó. Ví dụ: đường dẫn đầy đủ đến flash tên là MyLove của trang tialia.com là Code: http://www.tialia.com/pmusic.php?onlinemusicid=83100Bạn...
  • 2
  • 934
  • 1
Java Programming with Oracle ODBC - Preface

Java Programming with Oracle ODBC - Preface

Kỹ thuật lập trình

... Oracle grew up with Unix and therefore carries an open-systems attitude that has fostered innovation and acute customer awareness. Configurable resources The Oracle RDBMS resources, such as ... system. With the release of Oracle RDBMS Version 6, you could develop a database schema on your desktop knowing it could be implemented unchanged on multiple large-scale platforms. With the ... tested with JDK Version 1.2.2 and J2EE Version 1.2. Don't be discouraged if you're still using JDK 1.1.x. Most of the examples, except for some of the J2EE stuff, work fine with JDK...
  • 5
  • 324
  • 0
Web Client Programming with Perl-Chapter 3: Learning HTTP- P3

Web Client Programming with Perl-Chapter 3: Learning HTTP- P3

Quản trị Web

... "d2VibWFzdGVyOnpycW1hNHY=" is decoded using base 64, it translates into webmaster:zrqma4v. Here's a verbose example: When a client requests information that is secure, the server responds with response code 401 ... client might also use a Content-type header with the POST or PUT method. Most commonly, with many CGI applications, clients use a POST or PUT request with information in the entity-body, and supply ... information along with a new account ID, and sends it back in the response: HTTP/1.0 200 OK [Server headers here] Set-Cookie: acct=04382374 The client saves the cookie information along with the...
  • 27
  • 521
  • 0
Practical Database Programming With Visual C#.NET- P6

Practical Database Programming With Visual C#.NET- P6

Cơ sở dữ liệu

... Click method. Enter the codes shown in Figure 5.74 into this method. Most codes in the top section are identical with those codes in the TabLogIn button ’ s method with two exceptions. First, ... the View Code button to open its code window. Enter the following codes, which are shown in Figure 5.47 , into the constructor of the SelectionForm. Let ’ s see how this piece of code works. ... FacultyForm.cs and click on the View Code button to open the code window. On the opened code window, scroll down to fi nd the FacultyForm_Load method. Enter the codes shown in Figure 5.52 into this...
  • 50
  • 638
  • 0
Web Client Programming with Perl-Chapter 4: The Socket Library- P1

Web Client Programming with Perl-Chapter 4: The Socket Library- P1

Quản trị Web

... the previous code to work with a web server instead of the daytime server. Also, instead of embedding the machine name of the server into the source code, let's modify the code to accept ... uses two file handles. The one we've been dealing with so far is a generic file handle associated with the socket. In the above example code, we've called it F. This is passed in as the ... figure out which headers to use, the parameters with each header, and special cases like dealing with HTTP version differences and URL redirections. With the socket library, you do all of this...
  • 26
  • 491
  • 0
Web Client Programming with Perl-Chapter 4: The Socket Library- P2

Web Client Programming with Perl-Chapter 4: The Socket Library- P2

Quản trị Web

... server.\n"; print "By default, the response code, header, and data are printed\n"; print while (<F>); } The full source code looks like this: #!/usr/local/bin/perl -w ... Socket; # include Socket module require 'tcp.pl'; # file with Open_TCP routine require 'web.pl'; # file with parseURL routine use vars qw($opt_h $opt_H $opt_r $opt_d); ... the web server you specify. This allows you to do things like HTML form postings with POST, or a file upload with PUT, and selectively look at the results. At this point, it's really all...
  • 26
  • 463
  • 0
Practical Database Programming With Visual C#.NET- P7

Practical Database Programming With Visual C#.NET- P7

Cơ sở dữ liệu

... namespace in the code window of each added form is still the old one, AccessSelectRTObject, since we just add them into our new project without touching any code part. In order to use these codes on ... selected database or the data pro-vider, most other codes can be used for this project without any modifi cation. 5.19.2.1.1 Connect to Data Source with Runtime Objects Since the connection job is ... Type the following code line in the namespace declaration section, which is in the top part, of this code window: using System.Data.SqlClient; An easy way to develop the codes for this section...
  • 50
  • 646
  • 1
Practical Database Programming With Visual C#.NET- P8

Practical Database Programming With Visual C#.NET- P8

Cơ sở dữ liệu

... other codes, open the code window of the Student form, select those codes, copy, and then paste them to our new SP form code window. One point you need to note is that when you copy the codes ... this SP form code window. The only difference is the codes for the Select button Click method, cmdSelect_Click(). Don ’ t copy this piece of code since we need to develop new codes to test ... simplify our coding process. Open the code window of the LogInForm and enter the codes shown in Figure 5.143 into this code section. Let ’ s look at this piece of code to see how it works. A. The...
  • 50
  • 507
  • 0

Xem thêm