Installation of Visual Studio.NET
Thu, 16 Feb 2006 21:43:27 -0800
Yeah, new to Visual Studio, but I've been around long enough to know
somethings wrong! I installed the free Visual Web Developer and Visual Basic
Express - went fine. And am having fun with it. I'm working on an MCAD and
bought Visual Studio.NET 2003 Academic (I am a student, a bit older than the
norm) sin ...
|
Date filter on a DataGridView
Tue, 14 Feb 2006 11:16:29 -0800
hello all
i'm using vb2005.
in one of the forms i'm using the filter method of the bindingsource
i've used it before, but not on a date field.
now, any comparison i try produces an error (things like):
If tpToDate.Checked Then
strFilter = "[chqCashDate]<=" & dtDate.Value
ElseIf tpOn ...
|
DataGridView empty after update of database
Tue, 14 Feb 2006 09:26:01 +0100
I'm using VS2005, WinXP, and SQL2005.
My application edits a row in a DataGridView, when a button is pressed
the DB is updated. This is what I do
private void buttonOptShowUpdateDB_Click(object sender,
EventArgs e)
{
try
{
using(Transacti ...
|
www.verbatim.wordpress.com
Mon, 13 Feb 2006 16:25:02 +0100
...
|
BindingManager Backward Navigation Fails (Visual Studio 7.1.3088, .NET Framework 1.1.4322)
Fri, 10 Feb 2006 04:20:11 -0600
I´ve got a strange problem: I´m using about a dozen controls of several types (grid control, text boxes, checked list boxes, list views, combo boxes) in a form with DataBinding. I´ve implemented data row navigation by modifying BindingManager.Position. All works well when moving forward by incrementing BindingM ...
|
Problems with DataView
Thu, 9 Feb 2006 12:15:32 -0800
Hi,
I'm trying to get some data from a DataView, based on a date, with a
RowFilter, like this:
dvInfo.RowFilter = "MyDate >= '" & Format(userDate, "dd/MM/yyyy") & " 12:01
a.m.' AND Fecha <= '" & Format(userDate, "dd/MM/yyyy") & " 11:59 p.m.'"
dvInfo.RowStateFilter = DataViewRowState.CurrentRows
It ...
|
Intellisense
Wed, 8 Feb 2006 00:51:28 -0800
Hi,
My Intellisense is not working.
I've traied the MSDN help, they advice to close the VS and remove the
project .ncb file, then when opening the VS again it will recreated.
The problem is that i do not have this file at all. not in my localhost and
not in the project path.
I've also traied to turn t ...
|
|
|
garbage collection and data connections
Tue, 7 Feb 2006 10:25:32 -0800
I am starting to work with c# having several years of experience with vb6
In the past I have used standard data access functions to either execute
stored procedures or retrieve recordsets.
I would like to achieve something similar in c#. I can see that there are
uses for datasets but I would have thought ...
|
Post success message back to the sender
Sat, 4 Feb 2006 23:58:40 -0800
I am receiving a XML file from a service/port.
Based on the contents of the xml file, I need to post back a success or
failure message. I need to do that through my dotnet program. Can someone
give me an example on how to post the message back to the sender?
...
|
cannot post to MSMQ from dotnet code
Sat, 4 Feb 2006 23:58:39 -0800
I am not able to post a simple message locally to my local MSMQ through this
code although I can post to the same queue using some demo code.
My code is
using System;
using System.Collections.Generic;
using System.Xml;
using System.IO;
using System.Text;
using System.Reflection;
using System.Mess ...
|