Yeh, i have searched the Google and codeproject but the demo project in codeproject is not working . Regarding the documentation it is showing to use the firebird database . then i need to change all the code, that's the problem.
praveenvkumarv
Posts
-
How can i embed database in my setup file -
How can i embed database in my setup fileyeh, i have tried using setup and deployment project , i need to embed sqlserver in it.
-
How can i embed database in my setup fileI want to include the database in my setup file itself . i don't want to setup the database manually. So, how can i do it.
-
System.Data.SqlClient.SqlClientpermission,System, publickey token='......' failed exceptionMy project is a windows application. After i install the setup file of this project. I am getting the first form, i need to select from four options i,e. four buttons. When i press a button, next form is displayed asking for username and password. After giving username and password, when i press login button then i am getting that exception. If i run normally in visual studio 2005 , it is executing
-
how to create sub tables in sql serverI want to create sub table in sql server . can any suggest me the process.
-
System.Data.SqlClient.Sqlclientpermission,system,.........,publickey token='......' failed exceptionMy project is a windows application. After i install the setup file of this project. I am getting the first form, i need to select from four options i,e. four buttons. When i press a button, next form is displayed asking for username and password. After giving username and password, when i press login button then i am getting that exception. If i run normally in visual studio 2005 , it is executing .
-
System.Data.SqlClient.Sqlclientpermission,system,.........,publickey token='......' failed exceptionI have created a setup file in windows application and then i installed it in my system only. After giving userid, password for authentication from the database,even if the userid and password is contained in the database, i am getting the exception "System.Data.SqlClient.Sqlclientpermission,system,.........,publickey token='......' failed"
-
installing application only once at one clientI want to create a key to my application. When installed at client for the first time it should install. If the client want to install again it should not install.And if the client want to copy the setup file it should not be copied to any other location.
-
displaying imagesusing the timer control, u can do this. in the event of the timer , include some code. First, you need to add some images in the imagelist control. Than, in the timer event display a image from the imagelist use the break statement to break the loop . when ever the timer event occurs then the image changes . After the imageslist reaches the last index then make the control value as 0 to repeat the loop
-
Print Previewbutton click() { capturescreen(); printpreviewdialog pd=new printpreviewdialog(); pd.showdialog(); printdocument1.print(); } bitmap memimage; graphics g=this.creategraphics(); size s=this.size; memimage=new bitmap(s.width,s.height,g); g.graphics.fromimage(memimage); g.copyfromscreen(this.location.x,this.location.y,s,0,0,s); } void printdocument1_printpage() { e.graphics.drawimage(memimage,0,0); }
-
should client machine contain sqlserver installed , if i am using sqlserver as backendmy application is a windows application.
-
should client machine contain sqlserver installed , if i am using sqlserver as backendi have used backend as sqlserver, is it necessary that the client machine, where i'll be deploying my application that machine should have sqlserver installed in it. Otherwise, any prerequisites i should include while creating setup file.
-
deployment using sqlserver and c#i want to create a setup file. i used sqlserver 2005 as backend and c# as frontend.Now i want to create a setup file, i have created tables in sqlserver and creating setup file in vs 2005, how do the tables from sqlserver will be created when creating setup file in visual studio 2005 .
-
Application shuts down and not just the formthe form which you want to close. the deactivated() event of that form include code this.close();
-
sending message to a mobile through the software developed in c#.net by using bluetoothThe client who install my software connects a bluetooth device. When some event occurs then this software should send an sms to the adjacent mobile through the bluetooth.For doing this, what should i do.
-
sending message to a mobile through the software developed in c#.net by using bluetoothI am doing a project, which had a requirement of sending an sms message to a mobile from the c#.net.How can i do this.If i need to add any .dll files how can i add those file.
-
printing a windows form through print preview control in c#.net 2005i want to print a windows form by using a printpreview control in vs 2005.I used but i am not able to get it. please lemme know the possible solution. I had to print the full windows form as it was designed.
-
How to print a windows form from a printdialog box in c#.net 2005I want to print a windows form in the same design manner with all the controls in the form.