|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ADO.NETmicrosoft.public.dotnet.framework.adonet
share dataset between 2 forms?
Rain County -
7 Jan 2006 10:33 PM - 6 messages
I am using VS2005 standard edition. I have a database (MSACCESS) with a Customer table. On the main form (frmMain) of my windows application, I have used the wizards to create a connection, a tableadapter, and a dataset. frmMain has a datagridview for selecting a Customer (and then displaying ...
Using Objects as Data Sources
Otis Mukinfus -
7 Jan 2006 9:30 PM - 14 messages
VS 2005 has the option of using objects as datasources. I'm able to add a an object to my project as a datasource by using the Data Source Configuration Wizard, but can't seem to make it do anything. For example when I bind a list<> object to a DataGridView ...
Trying to find the currently logged on user
Marc Scheuner [MVP ADSI] -
7 Jan 2006 2:16 PM - 7 messages
Folks, I'm new to ASP.NET development accessing a SQL Server database, and I was wondering if there's any way in ADO.NET to find out what user account is being used to access a SQL Server database. ...
Select in ado.net oledb
JR -
7 Jan 2006 1:53 PM - 2 messages
Hi, Can I use wildcards in a select command. My command is like this: SELECT ID FROM songs WHERE (Title LIKE in(?,?)) if I remove the 'like' or the 'in' it works. together it doesn't of course without the in I need the correct names and with the like I add ...
Any idea why my BindingSource won't update?
Mike -
7 Jan 2006 4:07 AM - 2 messages
I have the following: 1 x .NET 2.0 .DLL Containing one public DataSet (CustomerHandler) which contains one table and a tableadapter to fill a datatable 1 x .NET 2.0 EXE With a single form containing a DataSet (CustomerHandler1), a BindingSource ...
Architecture Advice
kcamhi -
7 Jan 2006 3:39 AM - 17 messages
I'm going to be using SQL Server (thanks for that advice) for a distributed application and I'd appreciate any advice on architecture. The application is similar to a membership management system at a multi-site chain -- like a fitness center chain. ...
How do I change a Datagridview column type?
sfsmith_1313 -
7 Jan 2006 1:00 AM - 2 messages
I am running an SQL query against a Teradata database that returns a datatype of system.byte. When I map this to a datagridview using the datasource property I receive errors as it tries to display the byte column as an image ...
Please help me evolve this concept
jonefer -
7 Jan 2006 12:11 AM - 3 messages
Can someone help me upgrade a concept / thinking which I currently use when I develop Access databases – to how you would do it in ASP.NET / ADO.NET - SQL Server ?- if the concept or method is not correct, please suggest how it ...
Low-overhead database to use with .NET 1.1?
Dathon -
7 Jan 2006 12:03 AM - 8 messages
I have a product (running on .NET 1.1) that needs to maintain a local database on the machine it's installed on. I want something with extremely low resource overhead (i.e. no SQL Server, no MSDE). It needs to be quick ...
SqlDataSource / manually searching the selected rows.
Brian Mitchell -
6 Jan 2006 10:21 PM - 5 messages
How do I iterate through the records returned by a SqlDataSource through code? I have it set to return the results to a dataset but I don't know how to access that dataset. This is for an ASPX page and I don't have the ...
Upgrading VB6 VS2005
Jerome -
6 Jan 2006 9:50 PM - 8 messages
Hoi, Some advice about VS2005 needed I have a major project written in VB6 where all database interactions are nicely combined in one ClassModule witch gave me the opportunity to work with the Connection.Execute method. The ClassInitialise makes the connection and from then ...
ChangeDatabase and connection pooling
Nate -
6 Jan 2006 7:45 PM - 4 messages
Hello All, I have a web application that uses multiple databases all residing on the same SQL Server with similar info, thus 1 aspx page will reference one of 10 possible databases depending on what the user is doing. Now, I want all my ...
Saving records that a users has in a specific order?
Brian Mitchell -
6 Jan 2006 5:37 PM - 4 messages
I am trying to save items from a datagrid to a database, but I want to give the user control over the order of items. For example if I have a grid with the items: First Second Third Fourth Fifth ...
Restart SQL Server
Steve -
6 Jan 2006 5:18 PM - 3 messages
Is it possible to detect or more importantly allow the app to continue to work with sql server after it has been restarted. I imagine my users to have this app open all day but don't want them all to ...
DataView ListChanged?
mikeisman -
6 Jan 2006 2:31 PM - 1 message
When I build my DataGrid, I have a session variable that holds an ordered list of record numbers that I use elsewhere in the application. I allow sorting on a few columns, and that works great. But I can't ...
Databinding Combobox
Danny -
6 Jan 2006 2:25 PM - 4 messages
I want to start using databinding in a new winforms application. I am using VB.Net 2003. The database has several fields that contain a numeric code that translates to a text status. For example 1=Open, 2=Closed, etc. ...
Using CrystalReportViewer
rbutch@coair.com -
6 Jan 2006 12:33 PM - 1 message
hopefully someone out there is using the CrystalReportViewer besides me and can give me some feedback. i've literally been on the internet for weeks looking at all sorts of approaches, all sorts of code that exports the data once it displays inside of the control. ...
Using CrystalReportViewer
rbutch@coair.com -
6 Jan 2006 12:33 PM - 1 message
hopefully someone out there is using the CrystalReportViewer besides me and can give me some feedback. i've literally been on the internet for weeks looking at all sorts of approaches, all sorts of code that exports the data once it displays inside of the control. ...
Mirroring: Client-side redirect problem
William Buchanan -
6 Jan 2006 11:48 AM - 3 messages
If I unplug my primary server from the network, the client side redirect fails to work. I have the connection string “Data Source=primaryserver;Failover Partner=backupserver;….â€. If the data source machine is not present on the ...
specified cast is not valid
jonefer -
6 Jan 2006 8:40 AM - 3 messages
I know the connection works, but maybe it's the fact that I am referrring to a View for this DataAdapter? Does anyone know what would cause the following code to generate a: "Specified Cast is not valid"? Dim sMemberCon As String = ConfigurationSettings.AppSettings("SQLConn") ...
SqlTransaction won't commit
jack-b -
6 Jan 2006 6:27 AM - 2 messages
Hi, I'm running a process which takes records from an XML file and inserts them one at a time into a database table. I'm using an SqlTransaction to commit after each record is inserted but it doesn't seem to work. (I ...
reconcile db-changes back to dataset
Suranga -
6 Jan 2006 6:02 AM - 7 messages
Hello! How do I read back values into a DataTable within a Dataset after an "insert" or "update" (via SqlDataAdapter.Update() method) to the database? After "inserts" or "updates", table columns may change, some via triggers, and others like "timestamp", and these changes do not ...
Navigating through a dataset
Ant -
6 Jan 2006 4:06 AM - 2 messages
Hi, Is there a way to navigate through the rows of a dataset without having to bind to a control? (at a guess, something like .Current +1) Thanks for any ideas Ant ...
To Speed up merge, should I use BeginLoadData()
va -
6 Jan 2006 2:01 AM - 1 message
I want to speed up a merge. Would calling BeginLoadData() before the merge and EndLoadData() speed up the actual merge process? ...
Need WILDCARD search to find rows in a DataTable
va -
6 Jan 2006 1:58 AM - 6 messages
The rowExpression documentation states --------------- begin copy ----------- A wildcard is allowed at the beginning and end of a pattern, or at the end of a pattern, or at the beginning of a pattern. For example: "ItemName LIKE '*product*'" "ItemName LIKE '*product'" ...
in VS 2005, how to drag and drop tables to create usable objects
va -
6 Jan 2006 1:33 AM - 1 message
In VS 2003, I used to go to the server window, open a listed SQL server on the tree and drag and drop a table or Stored Proc on my form to create datasets and SqlCommands objects. I tested this with VS 2005 and SQL 2005 ...
Why won't my DataTable.Update?
Mike -
6 Jan 2006 1:02 AM - 8 messages
Dear Group, I have a .NET 2.0 .DLL assembly containing a dataset with three tables. I reference this from a standalone .NET 2.0 EXE. I am writing a login form which uses the single Dataset from the .NET 2.0 .DLL. One of the tables ...
DataTable or DataSet for Updating Data?
Mike Wilson -
5 Jan 2006 10:46 PM - 5 messages
I have a heirarchical set of data that I need to read into a DataGrid. I'm using SQL in the TableAdapter portion of the main table in the DataSet to retrieve a set of rows which I bind to my DataGrid. ...
Creating XSD for Sql Parameters
Curtis Justus -
5 Jan 2006 9:34 PM - 1 message
Hello everybody, I am working on a class that will return an XSD that will be used to verify data entered for searching. A "search" stored procedure will be created in the database, and a method will use DeriveParameters to get the parameters ...
Business Object Building Parent - Child Relation
Josue Avila Mendoza -
5 Jan 2006 9:06 PM - 1 message
Hi every One . Im Working on an application where im using Business Objects DEvelpment Oriented schema , now since I Have ti deploy and Invoce Class I facing some troubles with the LineItems design I don't if any one of you have seen an example or any link or has any ...
Select Where Clause
nbohana -
5 Jan 2006 8:23 PM - 4 messages
I am having a problem coding thw following stayement: strSQL1 = "SELECT [service-order-number], taskid, [task-desc], [start-date], [start-time]" + " ,[task-status], [complete-date], [complete-time], [task-cost], [service-provider]" + " FROM [details] WHERE [service-order-number] = ...
DB2 and OLEDBDataReader
Dirk Behnke -
5 Jan 2006 6:58 PM - 4 messages
I have a very strange problem: I'm connecting ok to a DB2 database The I'm executing several SQL commands using OleDBDataReader which works fine. I'm closing only the reader not the connection after each Reader operation. Exactly the 1327th ExecuteReader operation triggeres a ...
DisplayExpression
William (Bill) Vaughn -
5 Jan 2006 6:11 PM - 2 messages
I just heard from the Microsoft development team that the DisplayExpression property is supposed to be marked as "obsolete". It's not enabled (or only partially so) in the 2.0 Framework. (This is in response to a question asked quite some time ago). I wanted to get this into Google where developers can find it when they trip over this property. ...
note getting returned data and asp.net 2
TdarTdar -
5 Jan 2006 5:40 PM - 6 messages
i have this store procedure. ============================= CREATE PROCEDURE TEST @TNUMBER NVARCHAR (10) , @TRANSNUM NVARCHAR(10) Output, @OrderCom Nvarchar(500) Output, @RTask Nvarchar(100) Output AS SET @TRANSNUM = @TNUMBER SET @TRANSNUM = 'TEST' SET @RTASK = 'TESTTEST' -- also used SELECT Instead of SET ...
MarshalDirectiveException reading OracleType.TimestampWithTZ
pfluft -
5 Jan 2006 4:50 PM - 4 messages
Microsoft .NET Framework 2.0.50727 ..NET Framework Data Provider for Oracle Oracle9i Release 9.2.0.7.0 Some TimestampWithTZ values (e.g. "01-JAN-70 01.00.00.000000 AM EUROPE/BERLIN") can not be read from an oracle database. ...
EntLib and Oracle Packages
smay -
5 Jan 2006 4:25 PM - 1 message
I'm trying to use the June 05 EntLib to call an Oracle 9i stored proc. Do do this I have to specify the package the sp is in. If I put the package name in front of the sp name in my vb (i.e. Dim spName As String = ...
Code Samples to Test If a SQL Server is Available
Andy -
5 Jan 2006 12:56 PM - 5 messages
I am trying to find a way to verify if a SQL server is available before I try to make a connection to it. My process is pulling data from SQL into a spreadsheet, but when the primary SQL server is unavailable, the sheet locks ...
Can't Get Column Description from SQL Server - HELP!
gj_williams2000 -
5 Jan 2006 12:28 PM - 6 messages
Hi, I have an SQL Server2000 database and I am trying to obtain column descriptions programmatically in vb.net (VS2003). If I edit the design of one of my tables in Enterprise Manager I can add a description to each column but I have so far been unable to ...
working with relationships
papalazarou -
5 Jan 2006 11:27 AM - 2 messages
Hi, I am working on an SQL Server client for .NET and I have created a simple recordlist class that accepts a table or row-returning sql command on construction and provides a list view of the resultant query. It would be good if i could create a relationship-aware version of the ...
Counting rows
Michael Wong -
5 Jan 2006 10:27 AM - 2 messages
Hi, I'm currently using the following code to count non-deleted rows in a DataTable. Is there another more efficient method? int count = (int)myDataSet.myDataTable.Computer("Count(columnId)",""); // The following will also count the deleted rows int count = myDataSet.myDataTable.Count ...
imports and sqlclient
TdarTdar -
5 Jan 2006 1:28 AM - 4 messages
Hello, I have this page however the sqlclient is not defined, i thought you just had to put Imports system Imports System.Data Imports System.Data.SqlClient into the page but that just gives me syntax errors. what am I missing to get sqlclient to work. ...
Problems with return parameter from Oracle function
Chris DiPierro -
4 Jan 2006 7:58 PM - 2 messages
I have an oracle function that looks like this: AuthenticateUser(UserName IN VARCHAR2, pPassword IN VARCHAR2, AppName IN VARCHAR2) RETURN VARCHAR2 Using the Oracle client provider, I'm setting up my command text as: I then add parameters as follows: ...
How to flush DataSet data back to the database
Jaime Stuardo -
4 Jan 2006 7:19 PM - 4 messages
Hi all I have a SQL Server database where I need to save some data. By using the VS.NET wizard, I created a typed dataset. To fill a table with data, I use the corresponding DataAdapter Fill method. After Fill method ...
Convert
nbohana -
4 Jan 2006 5:06 PM - 2 messages
I have to convert a textbox field that looks like "$800.00' that was setup by using 'txtServiceCost.Text = ynum.ToString("C");'. When I try to insert the record into my SQL database I get a message that i need to use the convert ...
Columns system.dbnull
Buho -
4 Jan 2006 3:32 PM - 1 message
The example would be like this: <<<query analizer>>> sp1 param1,param2 --shows col1 col2 col3 col4 ---- ---- ---- ---- 1 1 2 3 ...
Problem adding records with SQLDataadapter to SQL Server database
Rob Smeets -
4 Jan 2006 1:29 PM - 2 messages
Hi, I'm building an application, to edit data on a SQL Server database. Database has a table Jobs with primary key (JobID) with identity seed = 1 and identity increment = 1 I'm using SQLConnection and SqlDataAdapters, DataSet, datagrid and DataViews ...
something about stored procedure not returning the result
jonefer -
4 Jan 2006 10:39 AM - 6 messages
I have succesfully passed parameters to the stored procedure... but i keep getting no rows. I notice that if I generate a dataset with the wizard it creates a 'ReturnValue' parameter Do I need to be using this @ReturnValue parameter somehow? ...
ADO.NET Update SQL View
graigcrawford -
4 Jan 2006 4:31 AM - 5 messages
I have created a view in SQL server 2000 that joins two one-to-one tables. This view is updateable from SQL enerprise manager as all of the keys are present to perform updates. In VB6, I could simply create ...
too many arguments specified...
jonefer -
4 Jan 2006 1:49 AM - 3 messages
I have an ASP.NET app that searches for members using 5 parameters. I finally wrote a nifty Stored procedure to account for all or anything in between - parameters - that could be used out of 5. And the stored procedure works fine while using Query Analyzer in SQL ...
Email message using MS Sql Server
Just D. -
4 Jan 2006 1:41 AM - 2 messages
All, What is the simplest way to send an email message through the MS SQL Server? There was a method to send email messages using a standard C# way via SMTP server, but the required port was blocked on our server for the security ...
Selecting, Inserting and Updating Relational Data (SQLServer/ADO.NET)
Mike Wilson -
4 Jan 2006 1:26 AM - 7 messages
Dear Group, I have a heirarchical set of database tables, say - "order" and "order_type" and want to display a series of orders in a grid control, and in place of the order_type foreign key identifier, I would like a dropdown combo box ...
SQL Server processes and ADO.NET
Abelardo Vacca -
3 Jan 2006 9:30 PM - 4 messages
Hello, I have a web application accessing SQL Server 2K through ADO.NET The application is working fine, but while monitoring the processes in SQL Server Enterprise Manager, I noticed each user connecting to the application creating a NEW process in "awaiting command" state. ...
How to initialice a default value for a column in a typed DataSet
Jaime Stuardo -
3 Jan 2006 9:16 PM - 3 messages
Hi all... I have a typed dataset that corresponds to a SQL Server database model. I have in a table a datetime column that cannot be null, but it has a default value of getdate(). How can I set the default value for the corresponding DataSet table? I tried ...
dataset.writexml different output depending on overload param type
CVillalba -
3 Jan 2006 9:11 PM - 1 message
Why when using Dataset.WriteXml("C:\somefile.xml") is there a xml declaration added to the top of the xml document created. However, when using Dataset.WriteXml(StreamWriter) there is no xml declaration? The same dataset is used in both WriteXml. ...
Where are the IsNull methods on my DataSet
Harry Keck -
3 Jan 2006 9:01 PM - 4 messages
Usually, when I create a typed DataSet using the Visual Studio designer, IsColumnNameNull methods are automatically generated for each column in my tables. However, this time these methods were not created. I can not figure out how to get them. Any advice? Thanks. ...
Trouble with DefaultValue on Typed DataSet
Harry Keck -
3 Jan 2006 8:21 PM - 2 messages
Using the Visual Studio designer, I can easily create a typed dataset. It is possible to set default values for table columns by setting the default in the designer. I can do this easily for boolean and integer types, but if I ...
parameter question
Jon -
3 Jan 2006 8:19 PM - 8 messages
Is it possible to use a parameter in conjuntion with an IN statement? For example, if I have the following SQL, select * from table where key in ('1','2','3') How can I make the values in the IN be a param? If I do the following. ...
Remoting/Web service/sqlClient performance
millner,kim -
3 Jan 2006 7:28 PM - 2 messages
Hi, In our project we are using sqlClient to communicate with the database server(SQL Server 2005). It's running great. Our project is doing lots of sql queries. We are planning to put our code in the web server or a remote server and use ...
Deleting rows in dataset
dotnetlover -
3 Jan 2006 7:15 PM - 2 messages
How can i delete a row in dataset based on the column value, i have four columns in a row and i want to delete the row based on the column1 value. ...
Access queryDef as stored procedure
jonefer -
3 Jan 2006 7:07 PM - 4 messages
in the 'Access Cookbook' by Getz, Litwin and Baron, it shows how to get a qryAlternativeAlbums query as an OleDbDataReader: 'Construct an OleDbCommand to execute the query Dim AltRock as OleDbCommand = _ New OleDbCommand("qryAlternativeAlbums", cnx) 'Odd as it may seem, you need to set the CommandType ...
Updating - let me count the ways
Vayse -
3 Jan 2006 6:14 PM - 9 messages
There are several ways of updating a database through ADO.Net 2. In my case, I'm interested in using queries to update my Access data. I'm not sure what all the pros and cons are for each method. ...
Newbie Client-Server select Query Question
jepsen,andy -
3 Jan 2006 5:21 PM - 7 messages
It might be a very basic question, but I don't the answer. Please clear my boubt. From the client system when we execute "select * from Employee" where does the execution takes place. Does it execute it at server or at client. ...
Specify alternative base class for strongly-typed DataSet
Mark Rendle -
3 Jan 2006 1:24 PM - 1 message
Our application, currently in .NET 1.1, uses strongly-typed DataSets as business objects. These have been created using a third-party generator (from AdoGuy.com) which reproduced the standard Microsoft STD code, but added a couple of extra things to make deriving from the generated ...
SqlServer Express, Firebird & stored procedure question
Lloyd Dupont -
3 Jan 2006 12:03 PM - 5 messages
I want to toy with an embeded database for shareware application. I would like to know better SqlServer as well. However, correct me if I'm wrong, but it seems that as much as I would like to play with SqlServerExpress it seems higly unfit to this kind of ...
Problem OLEDB Oracle with .Net 1.0 - Exeption when i have date fie
Luis Augusto M. Barbosa -
3 Jan 2006 11:59 AM - 2 messages
Hi, We have one application that return the exception below, when retrieve any date fields: "Specified argument was out of the range of valid values. Parameter name: Hour, Minute, and Second parameters describe an unrepresentable DateTime." If change from OLEDB to Oracle Provider the exception disappear, however we ...
data access block for ADo.NET 2.0
guy -
3 Jan 2006 11:27 AM - 1 message
Does anyone know when the data access block for ADO.NET 2.0 will be released? (or has it - and i cant find it?) guy ...
Newbee: Help on child-parent relation and binding to Forms
Thomas Ströehm -
3 Jan 2006 10:08 AM - 6 messages
Hello, i'm a newbee to ADO.Net. I need to create a Form that contains values of a Childtable 'artikel' and the corresponding value of the field 'lieferant.firma' which connects through a FL-constraint to the table 'lieferant'. ...
Deleting a bound DataGridView row?
Michael Wong -
3 Jan 2006 9:57 AM - 6 messages
I have a DataGridView which is bound to a dataset. When I delete rows from the DataGridView, should it delete the same rows from the dataset also? I have tried the following code, but apparently, the dataset isn't updated. Did I miss (understood) something? ...
Connect to Foxpro Data (*.DBF) in VB.Net
EricLun -
3 Jan 2006 8:52 AM - 10 messages
Dear All We are currently write a program to "Transfer" Data from old system. How can i connect to a set of DBF files by What is the connection string to connect the DBF? I have try this one but error. ...
Use ADO.NET to keep data between client and server in sync
Anthony Malt -
3 Jan 2006 8:20 AM - 4 messages
Hi, my server has a database table. I read this table on the server into a dataset and my client retrieves it through a webservice. No changes on the client and server happen. What's the best way to keep the ...
Can't open two DataReaders to the same connection
Cyril Gupta -
3 Jan 2006 7:58 AM - 2 messages
I don't know if I am outdated or is my grouse still valid. I am trying to connect two concurrent DataReader objects to the same connection, but the attempt fails with the error "Another DataReader is already open, it needs to be closed.. bla..bla.." ...
Random 'Invalid Row Handle'
Cyril Gupta -
3 Jan 2006 1:23 AM - 5 messages
Hello, I am facing a weird problem using the DataReader. This is what my code looks like. --------------- Dim dbCommand As OleDbCommand Dim dReader As OleDbDataReader dbCommand = New OleDbCommand("SELECT * FROM CmpDet where cmpDet_CompanyID = " & CurrentCompany.CompanyID, DBCompany) dReader = dbCommand.ExecuteReader 'Retrieve info from the database ...
SQL Server Starting Points
kcamhi -
2 Jan 2006 11:25 PM - 8 messages
Greetings - Several of you were helpful in disuading me from using Jet in a prior post. I'm developing an application that needs a "person manager" attached to it, with typical interfaces like "add person" "edit person" "get list of people" ...
Copy just some rows from a datatable to another datatable.
UJ -
2 Jan 2006 8:50 PM - 4 messages
I have a datatable with a field in it that tells me where the data belongs (let's say the values are 'A' and 'B'). I want to split the table into two other tables where in one there are only the 'A' records and the other one ...
DataSet.Clear required before loading new data?
Rick Lederman -
2 Jan 2006 8:45 PM - 4 messages
Is a DataSet.Clear required before new data is brought into the dataset? I.E. daMyDataset.Fill(dsMyDataset) Can I simply refill the dataset with new data intended to totally replace the old data, or must I do a .Clear first? ...
cool list of threads for clearing Software Interviews
C# -
2 Jan 2006 4:22 AM - 1 message
..NET Interview Questions [link] [link] [link] [link] ...
2nd layer of filtering?
jonefer -
2 Jan 2006 1:34 AM - 7 messages
I have a paramaterized command for a data adapter SELECT MRN, Name, Sex, DOB, SSN FROM dbo.Membership WHERE (MRN = @MRN or @MRN is null) AND (Name like @Name or @Name is null) AND (Sex = @Sex or @Sex is null) ...
Dataadapter produces error: Syntax error in INSERT INTO statement
William LaMartin -
2 Jan 2006 1:08 AM - 2 messages
The code below loads an Access table with one row. It then adds a row and displays all this in a datagridview. So far so good. But when I use the dataadapter's update command to update the database ...
Code reuse and DataSet generation from XML schema
Vagif Abilov -
1 Jan 2006 10:09 PM - 1 message
Hello, I have several strongly typed DataSet classes that encapsulate the same table. My challenge is that I can't reuse the wrapper code for this table generated by Visual Studio, because although wrapper classes represent identical structures, they have different identities. ...
Problem connecting to sql server
Ajak -
1 Jan 2006 9:32 AM - 16 messages
Hi, I am using XP Pro SP2, VS.NET 2003 & IIS 5. I used to develop an ASP.NET application on my PC on my local IIS, connecting to a LAN server which hosts my MSSQL database. I have no problem running the web app locally. ...
use sql mdf from application folder
aamirghanchi -
1 Jan 2006 1:30 AM - 6 messages
Hi, I need to deploy my simple windows application to client's pc so that the database it requires is packaged along with it in the application folder. I have done it through the setup project but after installation it throws exception of being unable to acess the database. Please note ...
|
|||||||||||||||||||||||