we are 3 person working in winfrm base project. each one is handling a module. is it possible to share the poject through the network and work simultaneously. thanks.
himanshu p.taunk
we are 3 person working in winfrm base project. each one is handling a module. is it possible to share the poject through the network and work simultaneously. thanks.
himanshu p.taunk
Hi, I want to insert a record , and I use tableadapter to execute the insert statement, when I run the application and execute the statement , works ok and after I see the datagridview and the new row is there, but the problem is that when I stop the application and look my database in SQL Server 2005 the table don´t have the new row. Somebody knows why? or Any idea to insert or delete or update rows in SQL Server 2005 data base using C# 2005.
himanshu p.taunk
how to insert,update and delete records in a SQL Express 2005 database using typed dataset in c#.net 2005
himanshu p.taunk
can any body tell me where to get msi.lib thanks:~
himanshu p.taunk
how can i read a serial number while running setup and validate it in vs.net 2005 ????
himanshu p.taunk
what changes you want me to do, to make it work well
himanshu p.taunk
is it possible to make a floating panel in vb.net what can be drag and place any where with the form
himanshu p.taunk
my mistake sorry most of my program takes too much time to connect a database (SQL Express /MS Access) making my application to response slow. i access my database using a class where i have declare my statements (currently i am working on vb Project) this is the code i usto access to database do u find any problem with it '''''' Imports System Imports System.Data Imports System.Data.OleDb Public Class dbtask Public Sub New() End Sub Public ReadOnly Property Connection() As OleDbConnection Get Try Return New OleDbConnection(Configuration.ConfigurationManager.AppSettings(0).ToString()) Catch ex As Exception Throw New Exception("OleDbConnection : " & ex.Message) End Try End Get End Property Public Function ExecuteCommand(ByVal statement As String) As DataTable Try Dim adp As New OleDbDataAdapter(statement, Connection()) Dim ds As New DataSet ds.Clear() adp.Fill(ds) ' MsgBox("-->" & ds.Tables.Count) Return ds.Tables(0) Catch ex As Exception Connection.Close() 'Throw New Exception("Oledb Execute Command : " & ex.Message) Return Nothing End Try End Function Public Sub ExecuteNonCommand(ByVal statement As String) Dim cmd As New OleDbCommand(statement, Connection()) Try cmd.Connection.Open() cmd.ExecuteNonQuery() cmd.Connection.Close() Catch ex As Exception cmd.Connection.Close() Throw New Exception("Oledb Execute Non Command : " & ex.Message) End Try End Sub End Class
himanshu p.taunk
SqlConnection con = new SqlConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\\club.mdf"); using this statement u can connect to your club.mdf database
himanshu p.taunk
my problem is most of my project winfrm/webfrm (C#.net) takes too much time to start and to operate. do you think I have to change my programming style. if you have any thing to say about it or have any sample project to study on PLEASE fell free to mail me at :- hptaunk@gmail.com I will be very glad to you. thanks
himanshu p.taunk