1
Answer

How do you create deployment when data on CD?

repasky

repasky

20y
1.5k
1
I am trying to create a Install of a VB.NET program that I have written. I am using an Access DB and it will be large enough that I want the user to access this from the CD. How can I do this? How can you have your data separated like this and put into another area than the program is in? I will not know what drive letter the user is using. Thanks, Al
Answers (1)
0
Nazmul Badsha

Nazmul Badsha

NA 505 13.3k 7y
  1. SELECT Empid,Empname,Deptname  
  2. FROM Employee  
  3. INNER JOIN Department ON Department.Deptid = Employee.Deptid  
This is the best code.
0
Tapan Patel

Tapan Patel

NA 8.1k 101k 7y
  1. SELECT Empid,  
  2.             Empname,  
  3.             Deptname  
  4. FROM Employee   
  5. INNER JOIN Department ON Department.Deptid = Employee.Deptid