Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~22.0K People Reached
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for tashiDuks

Hi EveryOne, I have a following controls in my vb.net form: txtID txtName btnAddNew btnSave This form will be storing a values to the SQL Database (SQL Server 2005). In the txtID textbox the auto id should be generated when ever user clicks on btnAddNew. The ID should be generated …

Member Avatar for Syed Hassan Abbas
0
2K
Member Avatar for tashiDuks

Hi Everyone, I have one text box named txtYear.text and this text box will accept only Year Value i.e. 2011, 2012 and so on. Now i want to put a validation on the text box like, if user enters the value like 1,03,54 in text box then the system should …

Member Avatar for azareth
0
2K
Member Avatar for tashiDuks

Hi EveryOne, I have some problem in validating duplicate values while saving & updating my records to SQL database. I have following codes: [B]1. Decalaration Code[/B] [CODE] #Region "Declarations" 'Declaration for Navigation Dim inc As Integer Dim maxRows As Integer Dim ds As DataSet = New DataSet Dim dvEmpDesignation As …

Member Avatar for tashiDuks
0
133
Member Avatar for tashiDuks

Hi Everybody, I have a desktop application designed (VB.NET 2008 and SQL2005) which consists of user login and some access level for the users. The user class which i have classified are : 1. Administrator 2. Operator 3. Report User This user has got a few access in my application. …

Member Avatar for tashiDuks
0
166
Member Avatar for lanitooot

Thanks for your Guidence for above post by : [B]lanitooot[/B]. But i hope [B]lanitooot[/B] and definately wants to know HOW TO? can you help please. If you could provide us some code or some url link where we can find and learn how to do? TashiDuks

Member Avatar for lolafuertes
0
1K
Member Avatar for tashiDuks

Hi Everyone, Recently my organization (where m working) has decided to host web locally rather then hosting in ISP. We have purchased a new server which will be used only for web. My Company has got new public IP for web from ISP i.e. 119.2.116.190. I am trying to configure …

Member Avatar for CimmerianX
0
205
Member Avatar for tashiDuks

Hello Everyone, I have designing a desktop application using VB.NET 2008 & SQL Server 2005. In my Application i have a frmUserRegistration to add a user & frmLogin to login to my application. i can add the user details in the database but my password seems to be in characters. …

Member Avatar for BigJames
0
3K
Member Avatar for tashiDuks

HI Everyone, I have designing a desktop application with SQL SERVER 2005. I have one form where user can take a full backup of SQL Database in one File. I have following controls : 1. txtSQLServerName 2. txtSQLDBName 3. txtSQLSQUserID 4. txtSQLSAPassword 5. txtBackupLocation 6. btnStart 7. btnCancel When user …

Member Avatar for kvprajapati
0
142
Member Avatar for tashiDuks

HI, I have a form with a datagrid, few buttons, and textboxes. I can add the new record in data table and can display in datagrid. The problem is that... the new record which i have inserted in data table is been displayed at the last row of datagrid which …

Member Avatar for tashiDuks
0
114
Member Avatar for tashiDuks

This post is continuation to the post which was posted by [B]StatiX[/B] on Oct 23rd, 2007 regarding "Get The Selected row in DatagridView". Addition to this post i have a question. The answer was given by [B]manoshailu[/B] as follows: [code] Private Sub DataGridView1_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) …

Member Avatar for kvprajapati
0
489
Member Avatar for djinn1971

This post really helped me. I have another question, continuation to before thread. I dont how to code for textbox keypress, where i want user to enter only numbers (e.g. 0009, 0010.. so on..) and deny rest. Please help..!! TashiDuks

Member Avatar for kvprajapati
-2
1K
Member Avatar for S2009

SqlConnection connect; string con1 = @"Data Source=" + newForm.ServerName + ";Initial Catalog=" + listBox2.SelectedItem + ";Persist Security Info=True;User ID=" + newForm.ID + ";Password=" + newForm.Pass; connect = new SqlConnection(con1); connect.Open(); SqlCommand command; command = new SqlCommand(@"backup database " + listBox2.SelectedItem + " to disk ='" + path + "\\" + …

Member Avatar for Ivan_86
0
12K

The End.