Setup With Msde And Attaching DB?
Aug 23, 2009How can i create a setup that should also install MSDE and attached the database
View 16 RepliesHow can i create a setup that should also install MSDE and attached the database
View 16 RepliesI have a small problem, I have written a small application to update a database table. Now on my computer I have a copy of the database but using MSDE 2000 and when I run my application it works perfectly, however I also have a copy of the database attached to MS SQL 2005 on another computer. Now when I got an run my application on this machine, it fails with a "Time out" error. I have changed the timeout settings on the SQL Server however it then just sits there for ages, whereas when I run it on my development machine MSDE 2000 it loops through the code quickly.
[Code]...
I want to create a real setup project for my application so when someone want to download it he can run only setup, not default setup that provide me VB . How can I do that?
View 4 Repliesadd serial number requirement to Setup & deployment > setup wizard for VB.net application
View 16 RepliesI am developing a desktop application in VB.NET 2005. I have a requirement whereby a user need to select a .txt file from his machine (client) and after clicking the save button, i need this file to be saved in the server into a specific folder. Similarly, i should be able to retrieve the file as well.
View 3 RepliesI am using following code to attach my database to SQL Server. The problem is if I create a new file and attach it through my code but when I detach the file using SSMS and again run the same code, it gives error. [code] All the permissions are the same even first time.Also what should be the connection string if I need to use DB with uid sa and pwd abc123?
View 1 RepliesI don't know if I am asking the question correctly, but I want to keep a program I use all the time in memory (running).So instead of closing the program (main form), I would like to simply set it's visible =false. This is easily done and works.Then on restart (I already know how to check to see if it is running) I would like to attach to it and make that running version's main form be visible again.
View 5 RepliesJust after installing my application, I need to attach my DB to SQL server. I am using following code for it.
Dim cmd As New SqlCommand()
Dim vrMyConString As String = "Data Source=.SQLExpress; INITIAL CATALOG=master; uid=sa; pwd=sa;"
Dim conn As System.Data.SqlClient.SqlConnection = New SqlConnection(vrMyConString)
cmd.CommandText = "sp_attach_db 'e:dbTest.mdf', 'e:dbTest.ldf'"
' conn.ConnectionString = "Data Source=.SQLExpress; INITIAL CATALOG=master; uid=sa; pwd=sa;"
conn.Open()
[Code]...
It returns an error:"Login failed for user 'sa'. The user is not associated with a trusted SQL Server connection."
I am trying to write code to send a mail message with an attached file.my code works fine if I don't try to attach a file but crashes when I do. I have not been able to figure this out.[code]
View 2 RepliesI have a project that I am doing which is as follows and need your help to complete the last section I can start word no problem with process.start("winword.exe")the problem is the attachment I attached the documents using project resources and then add exisiting text files and attach it to the project but when I debug I get the following error the code used is as follows
Process.Start(My.Resources.Results
How to attach any type of file in VB.NET.I want information or if possible code to attach any type of file in VB.NET.
View 4 RepliesI already made a .VB project using MVS 2010,I'm new in attaching database to SQL server and I'm confused attaching which database I'm going to attach because in the same folder i found that there's two
View 2 RepliesJust after installing my application, I need to attach my DB to SQL server. I am using following code for it.[code]It returns an error: "Login failed for user 'sa'. The user is not associated with a trusted SQL Server connection."
View 11 RepliesI've written a simple program for viewing images. My issue is how someone would view these images If I deployed my project to a client. To display the images, I have an Access 2007 database with the full path written for each and the program reads the full path into the Picturebox.ImageLocation property. I've also stored the full, root, and relative paths in the database as separate fields. My issue is how to add these pictures to my project. and which project to add them to.
Do I add them to the main project with my forms?Do I add them to the installer/setup-wizard Project?Should I all the files individually or as a compressed .zip file? Additionally, I don't know how to point to these files once they're installed on a different machine/network. Do I write a different root path to the database when the program is installed somehow?
say I have a library, in which I added a few Console.WriteLine(..) statements tot during the implementation and see w going on when I use the library in a Console AppNow I want to use the same library in an ASP.NET app. Ideally I would be able to log on to the production webserver, and somehow start a command prompt and attach it to the website and see the messages in real time as they occur. How do I do that?
View 2 RepliesI want the program I am making to show the cursors position on the process it is attached to. Sorry if this is a lot to ask for. Can you tell me how to.
1. Make a drop down menu with the list of process.
2. When i click on one of the processes, my program attaches to it.
3. When I move the cursor over the process, my program tells me the co-ordinates of the mouse on the process.
4. When i press F3, Timer3 Starts.
5. Make the mouse move to a co-ordinate on this process.
If it is too much to ask for, can you just tell me how to do 1 of them and hopefully someone else will tell me to do the others.
if user needs to attach the databases to the instance of server manually before being able to use the application?I have added the mdf file to my Setup project. It installs and copies the file to application folder. I donot know if the file needs to be attached or there is a way that application could do it automatically (attach to MyComputerSQLExpress)
View 1 RepliesI'm trying to make a mouse over for a stack panel in WPF using a custom DependencyProperty (StackPanels do not handle the MouseEnter event).
I've created a class for the DependencyProperty like so:
Public Class MouseEnterBehavior
Public Shared Property MouseEnterProperty As DependencyProperty =
DependencyProperty.RegisterAttached("MouseEnter",
[Code]....
I was able to get the code to compile and run, however the binding doesn't occur.
simple way of attaching a progress bar to the tasks of a button.When I press a button, several tasks will commence and I want a progress bar to show it's... well... progress.
View 5 RepliesI am using the following VB code to attach my DBs to server.
Dim cnnConnection As New SqlConnection("Data Source=.SQLEXPRESS;AttachDbFilename=" & Application.StartupPath + "datafiles" + TextBox1.Text + ".mdf" & ";Integrated Security=True;Database='" & TextBox1.Text & "';Connect Timeout=30")
cnnConnection.Open()
But it gives an error:
Unable to open the physical file "D:.Net ProgramsSQLDBAttachExperimentsSQLDBAttachExperimentsinDebugdatafilesdbSQLtest.mdf". Operating system error 5: "5(error not found)". Cannot attach the file 'D:.Net ProgramsSQLDBAttachExperimentsSQLDBAttachExperimentsinDebugdatafilesdbSQLtest.mdf' as database 'dbSQLtest'.
I am currently using the follwoing in my install routine, the idea is to check if the db exists. if the db does exist then leave the mdf name as is and attach it as a temp db then i can run a compare between the 2 db. however if the db does not exist i want to rename the mdf and attach it. however after renaming the mdf i cant attach the file.[code]
View 1 Repliesattaching filesI am using VB2005 and MS access as a database.I have created a project where a user can add a new record and sometimes with adding the new record you also need to add backup, example a picture,excel, word, txt,pdf.I need to know how to do this?It can be save either on a folder on a local drive or database.I would like to be able to select a file and save it, and if
View 2 RepliesI am attaching DBs using following code.
Dim conn As New SqlConnection("Server=MyHomeServerSQLExpress;Database=master;Integrated Security=SSPI")
Dim cmd As New SqlCommand("", conn)
cmd.CommandText = "CREATE DATABASE dbNoPWD ON ( FILENAME = 'd:dbNoPWD.mdf' ), ( FILENAME = 'd:dbNoPWD_log.ldf' ) FOR ATTACH"
conn.Open()
cmd.ExecuteNonQuery()
cmd.Dispose()
conn.Dispose()
I do not want to give any username and password. When I ran the above code and then checked SSMS, I found my attach DB was not checked in Roles (pls. see pic.) The problem with this is my network computers can not access this DB. I want to run some code like above (without sa password) and want that all my network computers can access the DB without my user get involved in setting up SSMS.
i have a list of links on a form and when you click one, it will set a specific groupx visible to true in a set position. So I have about 8 groupbopx control on this form. When I drag one out of the way and another in the form in design time, it seems they stay inside one another at times if they overlay. I don't understand this. Then some will not show at runtime depending where they arer left from design time even though I set the position to be in the form. This is completely different from vb6. Why are they staying inside other groupbox controls rather than being independent?
View 1 RepliesI am using VS 2008 VB and setup my application software in Win XP without any issue. But after installed in Win 7, it doesn't work well (it show one file not found, but I saw the file in the right folder). Could it be the incompatibility of VS 2008 and Win 7? If I upgrade to VS 2010, will the issue be fixed?
View 10 RepliesI am trying to attach my mdf files to SQL server (using windows XP) but it gives operating system error (error 5), saying Access is denied to the dbMaster.mdf
View 1 RepliesI'm using Redumption to send a mail using VB.NET, I've stored a file with an unique name exg.c:docs123.pdf which I'm supposed to attach to the mail with a different name "Appliaction.pdf".
[Code]...
how can i attach a progress bar to a crystal report progress control, my code extracts the data from the SQL Server database and displays it on a crystal report. all this process may take long time as the data size may be large or joins may take time, so how can i display this progress in a progress bar. How to attach hidden processes to the progressbar.
View 1 Repliesis there any way to attach a sql mdf by filename but actually make the database name something else?
the problem i'm having is that my connection string attaches the database just fine, but it gives the database a name of it's full path on the hard drive when i pull it up in SSMSE. ie. "c:program filesmy programmy database.mdf" is shown as the name when i do a sqlcmd and issue a select name from sys.databases
the snag is being hit due to the fact that i'm trying to do a "bcp in" and because a: there are spaces in the database name, and b: there's the .mdf extension also added to the database name that when i run my bcp in command it errors out, even if i use the -q option of bcp.
if i start SSMSE and right click the database and rename it, bcp works great - so my question is, how do i correctly format my connection string to attach to c:program filesmy programmy database.mdf, yet have it attach the database as "mydatabase" for use in bcp statements?
i've been to connectionstrings.com and they only cover the standard connection strings
in summary - i want to attach an mdf file programmatically and specify the name that ssmse see's it as....
I am trying to attach files that get emailed along with the text data from my text boxes on buttonclick.
Here is what part of my code looks like:
mail.To.Add(TextBox2.Text)
mail.Subject = ComboBox1.SelectedItem.ToString
[code].....