Forum: Website Reviews May 3rd, 2006 |
| Replies: 1 Views: 2,283 ASP.NET dating site. Does someone have some souce code to an asp.net web site.
I would really appreciate anyone's help. |
Forum: VB.NET Nov 12th, 2005 |
| Replies: 0 Views: 3,601 DataGrid with ado.net. :rolleyes: I have the following with an ado.net routine called.
Public Sub DoModify()
Dim bm As BindingManagerBase = Me.DataGrid1.BindingContext(Me.DataGrid1.DataSource,... |
Forum: VB.NET Nov 12th, 2005 |
| Replies: 1 Views: 20,864 Check to see if null Dim substr As String = dr.Item(4)
if substr is {System.DBNull}
substr = ""
if substr is "" then
do not do substr = substr.Substring(0, 2)
else
substr = substr.Substring(0, 2) |
Forum: ASP.NET Nov 12th, 2005 |
| Replies: 0 Views: 2,346 Long ado net question but urgent help required I have an sql table that consist of three key constraints
Policy_Nbr, Trans_CodeOrig, Trans_Eff_Date. Now I need to create a stored procedure that will handle
violations on the table. What I mean... |
Forum: VB.NET Nov 12th, 2005 |
| Replies: 0 Views: 2,620 ADO.NET question modification. I have the following procedure
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
/* ------------------------------------------------------------
PROCEDURE: dbo.prc_TransOverride_upd |
Forum: ASP.NET Nov 4th, 2005 |
| Replies: 3 Views: 1,923 Removing prefix XXX\username I need to remove the prefix(domain name) if exist in front of a username from a session variable.
paramsql.Value = Session("ssNtUser")
say the domain is za
username is macupryk
I would like to... |
Forum: VB.NET Sep 22nd, 2005 |
| Replies: 0 Views: 2,168 When I select a row and I click click on modify button?
Public Sub DoModify()
Dim bm As BindingManagerBase = Me.DataGrid1.BindingContext(Me.DataGrid1.DataSource, Me.DataGrid1.DataMember)
===>>> Dim dr As DataRow =... |
Forum: VB.NET Sep 22nd, 2005 |
| Replies: 0 Views: 1,038 Not working syntax on insert? Urgent If you want to insert DON'T do this
Dim dr As DataRow = CType(bm.Current, DataRowView).Row
Dim addform As New AddTransOverride(dr)
Dim retval As DialogResult =... |
Forum: VB.NET Sep 22nd, 2005 |
| Replies: 0 Views: 1,384 Pass a two character How do I pass a two character for dr.Item(4) in the following:
ExecOnTransOverride.ins(dr.Item(1), dr.Item(2), dr.Item(3), dr.Item(4), dr.Item(5), dr.Item(6), dr.Item(8), dr.Item(7), DateTime.Now,... |
Forum: VB.NET Sep 13th, 2005 |
| Replies: 0 Views: 2,073 |
Forum: VB.NET Sep 13th, 2005 |
| Replies: 0 Views: 1,829 Debugging Error When I am in Debug mode, I want to set the value of the textbox on the dialog form.
What happens the dialog form appears before , even when I am starting debug bug mode.
The values of the textbox in... |
Forum: VB.NET Sep 13th, 2005 |
| Replies: 0 Views: 1,697 Compilation error urgent? I have the error coming when I call a dialog form passing a parameter.
An unhandled exception of type 'System.Exception' occurred in microsoft.visualbasic.dll
Additional information: Can't assign... |
Forum: VB.NET Sep 13th, 2005 |
| Replies: 1 Views: 1,587 |
Forum: VB.NET Sep 7th, 2005 |
| Replies: 0 Views: 14,119 Deleting a Row From A DataGrid I have the following two functions. My goal is to highlight a row in a
datagrid and delete a row. Problem arises when I click on the delete button.
Below are two sub routines for DoDelete. Which... |