| Thread | Last Post | Replies |
|
| binding to a dropdownlist in a datagrid | 01 Sep 2004 00:42 GMT | 4 |
Ok so i've added a ddl to a datagrid in vs.net using the template controls provide in the ide. How then do I bind that ddl to a field in an access database. Incidently, by binding the control, that means it should drop-down all values stored in each record or can I limit the values ...
|
| Postback issues | 31 Aug 2004 22:16 GMT | 5 |
Dim index As Integer index = e.Item.ItemIndex DsSchedule1.Monday_Schedule.Rows(index).Delete() OleDbDataAdapter2.Update(DsSchedule1, "Monday_Schedule")
|
| Creating Procedure in SQL script through command object in VB.net | 31 Aug 2004 21:15 GMT | 1 |
I have a huge SQL script(generated through SQL server enterprise manager) which creates tables, users and procedures. I am using a command object to run it. It works all fine except for the procedures. The error it gives is : " Must declare the variable @vchProperty"
|
| System.Data.DuplicateNameException | 31 Aug 2004 20:50 GMT | 1 |
Please see this error below. This code runs fine in v1.0, but I just compiled it and ran it in v1.1. The first time the page loads, everything is OK, but if you hit refresh or navigate away and come back to the page, the following error occurs:
|
| Updating database for the dataadapter's original query has a select list that has columns from multiple tables | 31 Aug 2004 18:33 GMT | 1 |
I need to write own insert, delete and update command. I have to getchanges first. I am wondeering if there are some sample codes I can find Thanks
|
| Using dataviews in reports | 31 Aug 2004 17:54 GMT | 6 |
I'm creating a report that needs to be split up by a date range, then by employee, then by weeks within the employee daterange. Better to use multiple dataviews to accomplish this or is there a better way? Filtering and refiltering hasn't struck me as being the cleanest method of ...
|
| XML, Dataset & Sql Server | 31 Aug 2004 16:50 GMT | 2 |
Hi, I'm reading XML into a dataset and now I want to insert into Sql Server the data from the XML file. I haven't been able to figure out any other way than to do this than to walk through the dataset and insert each record one at a time.
|
| Empty DataSets | 31 Aug 2004 16:41 GMT | 2 |
Is is possible to bind a datagrid to an empty dataset? Initially, I would like the datagrid to be empty to allow users to insert new rows. I have the code to add new rows to the datagrid and to update the DB.
|
| A question on DataSet.ReadXml. | 31 Aug 2004 16:36 GMT | 2 |
I'm dealing with a buggy-like behaviour when I call ReadXml method of DataSet. Here the scene: I have myCustomDset.xsd and its associated/generated myCustomDset.cs; now my
|
| Compile error in autogenerated dataset module (.xsd) | 31 Aug 2004 15:56 GMT | 1 |
Environment : Visual Studio 2003 v 7.1.3088 (French) Development of a Windows application with SQL Server 2000 I get the following compile error message in the .xsd module : C:\Documents and Settings\TORDEUR.FRYORKF\Mes documents\Visual Studio
|
| Authenticating SQL Users from VB.NET Application. | 31 Aug 2004 14:48 GMT | 1 |
I'm posting this message again cause my lat message was totally wrong. What I'm looking for is how do I authenticate SQL users from a VB.NET application using VB.NET language? I know there is a sp_addlogin stored procedure in the master database, but do I call it from my ...
|
| Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection from ASP.Net pages | 31 Aug 2004 14:36 GMT | 7 |
I am losing lots of hair over this issue. We are trying to implement windows authentication from a web server to a database server. The web server is on a domain; the db server is not... does this matter? the IUSR_machinename user from the web server has been added as an account
|
| Comma delimited file shows date when it is text | 31 Aug 2004 14:30 GMT | 2 |
I have a comma-delimited text file that I am reading via a connection string: junk = "Provider=Microsoft.Jet.OLEDB.4.0;" junk &= "Data Source=\inware\data\df;"
|
| ADO.Net and Left outer join | 31 Aug 2004 04:14 GMT | 1 |
I created a stored proc in SQL Server 2000 that returns the result of a left outer join. For example: CREATE PROCEDURE MyProc ... AS BEGIN
|
| Users from SQL Server. | 31 Aug 2004 00:55 GMT | 1 |
How could I retreive the users and their corresponding passwords from SQL Server 2000? I'm using VS 2003 and VB.NET language. Thanks,
|