Forum: C#
Oct 19th, 2007, 6:43 AM
|
|
Replies: 23
Views: 1,542
Re: C# Beginner
Hi,
Try this book
"Database programming using visual Basic, C# and sql server 2005 (http://www.vkinfotek.com)".
|
Forum: Visual Basic
Oct 19th, 2007, 6:34 AM
|
|
Replies: 31
Views: 1,374
Re: What can you do with vb?
Hi,
you can also refer this book
"Develop an accounting package using vb and sql server (http://www.vkinfotek.com)"
Secrets of coding techniques used by professionals who develop quickbooks, SAP,...
|
Forum: Visual Basic .NET
Oct 3rd, 2007, 11:52 PM
|
|
Replies: 4
Views: 287
.Net framework 2.0
Hi,
The .NET Framework 2.0
.Net framework is a environment for developing and running both services and applications, for different devices. We can develop windows based applications, distributed...
|
Forum: Visual Basic .NET
Oct 3rd, 2007, 11:47 PM
|
|
Replies: 3
Views: 285
Good VB.net book
Hi,
Try this book
Database programming using Vb.net, C# and Sql server 2005
This book teaches you the complete database application development based on three-tier architecture like prsentation...
|
Forum: C#
Oct 3rd, 2007, 11:40 PM
|
|
Replies: 8
Views: 424
programming combo box in C#
Hi,
Your code worked for me. I have given full code for this exercise. Hope it helps.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using...
|
Forum: C#
Oct 3rd, 2007, 9:20 PM
|
|
Replies: 23
Views: 1,542
For C# beginner
Hi,
For a beginner, you can learn about variables, strings, loops, functions, procedures in the first capsule.
Once you are familiar with this, you should learn about OOPs programming which...
|
Forum: Visual Basic .NET
Aug 9th, 2007, 2:26 AM
|
|
Replies: 18
Views: 496
Sending emails from ASP.Net page
Hi,
string sURL, sFullURL, sBody, URLText;
sURL = "http://www.jobssite.com/sitejob/ractken.aspx";
sFullURL = sURL + "?Code=" + sCode;
URLText = "Jobsken Site";
...
|
Forum: Visual Basic .NET
Aug 9th, 2007, 2:18 AM
|
|
Replies: 2
Views: 203
variable scope in vb.net
Hi,
Info on varaible scope:
In addition to its type, a variable also has a scope. A programming element is available throughout the region in which we declare it. All code in the same region can...
|
Forum: C#
Aug 9th, 2007, 2:05 AM
|
|
Replies: 8
Views: 264
|
Forum: C#
Aug 9th, 2007, 2:02 AM
|
|
Replies: 7
Views: 305
Hi,
How to set the Startup form in C#
When the...
Hi,
How to set the Startup form in C#
When the application starts up, the first form to be displayed, has to be specified in the Project properties window. In C#, in the ‘Startup object’ drop down...
|
Forum: Book Reviews
Aug 9th, 2007, 1:34 AM
|
|
Replies: 0
Views: 353
Book on C#
Hi,
Good book on Database programming.
Jumpstart your career in the Microsoft's .Net world with this book.
Develop a complete accounting application using Microsoft's VB 2005 and C# 2005 which...
|
Forum: ASP.NET
Aug 16th, 2006, 12:20 AM
|
|
Replies: 2
Views: 359
|
Forum: ASP.NET
Aug 16th, 2006, 12:02 AM
|
|
Replies: 3
Views: 330
|
Forum: Visual Basic .NET
Aug 15th, 2006, 11:47 PM
|
|
Replies: 3
Views: 141
Hi,
Back in the Visual Basic 4 through Visual...
Hi,
Back in the Visual Basic 4 through Visual basic 6 days, we almost always thought of components and classes together. For instnace, when you created an ActiveX DLL in Visual Basic 4 through 6,...
|
Forum: Visual Basic .NET
May 18th, 2005, 4:11 AM
|
|
Replies: 1
Views: 259
Hi,
Try this code.
Purpose :To retrieve data...
Hi,
Try this code.
Purpose :To retrieve data from the database using Data Reader and Data Commands. When this code is executed, the data in a database is displayed in two textbox controls....
|
Forum: Visual Basic .NET
May 18th, 2005, 4:05 AM
|
|
Replies: 2
Views: 284
|
Forum: Visual Basic .NET
May 18th, 2005, 3:47 AM
|
|
Replies: 8
Views: 401
Hi,
Learning from the books is not at all bad....
Hi,
Learning from the books is not at all bad. To learn any language, I always buy good books and I personally code the entire package.
I referred on book Titled:"Database Programming using vb.Net...
|
Forum: Visual Basic .NET
May 18th, 2005, 3:41 AM
|
|
Replies: 4
Views: 378
|
Forum: Visual Basic .NET
May 18th, 2005, 3:36 AM
|
|
Replies: 10
Views: 331
|
Forum: Visual Basic .NET
Apr 21st, 2005, 2:35 AM
|
|
Replies: 2
Views: 431
|
Forum: Visual Basic .NET
Apr 21st, 2005, 2:16 AM
|
|
Replies: 2
Views: 1,094
Implement Validations in Datagrid
Hi,
I have placed Datagrid and 4 command button controls for
1.Add data to the grid.
2.Edit data in the grid.
3.Delete data in the grid.
4.Cancel data which is entered in the grid.
I have done...
|
Forum: Visual Basic .NET
Apr 21st, 2005, 2:08 AM
|
|
Replies: 1
Views: 295
|
Forum: Visual Basic .NET
Apr 21st, 2005, 1:53 AM
|
|
Replies: 2
Views: 488
Solution for Connection problem
Hi,
To retrieve data from the database using Data Reader and Data Commands. When this code is executed, the data in a database is displayed in two textbox controls.
Preparation:
Design a form...
|
Forum: Visual Basic .NET
Apr 21st, 2005, 1:50 AM
|
|
Replies: 1
Views: 223
About datagrids
Hi,
Refer these books for datagrid usage.
Application Series Books teach the reader how to develop an accounting package for a client server network. These books also teach all the secrets and...
|
Forum: Visual Basic .NET
Apr 21st, 2005, 1:47 AM
|
|
Replies: 17
Views: 964
Button control to link two forms
Hi,
In the Form1, write the code for the okbutton_click() event as shown below.
Private Sub okbutton_Click()
Load Form2
Form2.Caption="This is second form"
Form2.Show
End Sub
|
Forum: Visual Basic
Apr 21st, 2005, 1:35 AM
|
|
Replies: 18
Views: 727
Free VB compiler
Hi,
You wont get free VB compiler.
Application Series Books teach the reader how to develop an accounting package for a client server network. These books also teach all the secrets and logics...
|
Forum: Visual Basic
Apr 21st, 2005, 1:25 AM
|
|
Replies: 16
Views: 393
Free? VB?
Hi,
I do not think you will get a free VB compiler any where.
Regards
Bharathi
Books for developing your own Accounting and Inventory Management Application.
http://www.vkinfotek.com
|
Forum: Visual Basic
Apr 21st, 2005, 1:16 AM
|
|
Replies: 4
Views: 596
Need a bit of help understanding some codes.
Hi,
We will tackle one problem at a time. Mention where you want to start.
Regards
Bharathi
Books for developing your own Accounting and Inventory Management Application.
http://www.vkinfotek.com
|
Forum: Visual Basic
Apr 21st, 2005, 1:11 AM
|
|
Replies: 3
Views: 235
Disconnected Recordset
Hi,
Post the code. I will go through it and give you the solution. I have already worked on discooneted recordset.
Application Series Books teach the reader how to develop an accounting package...
|
Forum: Visual Basic
Apr 21st, 2005, 12:56 AM
|
|
Replies: 5
Views: 237
Book may help you
Hi,
Application Series Books teach the reader how to develop an accounting package for a client server network. These books also teach all the secrets and logics required to develop an accounting...
|
Forum: Visual Basic
Apr 21st, 2005, 12:50 AM
|
|
Replies: 2
Views: 188
Sample Project code
Hi,
Check whether the name property of the command button control placed on the form is correct or not. To do: First double click on the command button then sub procedure will be displayed. Place...
|
Forum: Visual Basic
Apr 21st, 2005, 12:25 AM
|
|
Replies: 9
Views: 471
New to VB programming
Hi,
Log on to :http://www.vkinfotek.com and see whether those are helpful for you.
Regards
Bharathi
|