Viewing 15 posts - 5,521 through 5,535 (of 9,643 total)
Can you post the table DDL and some test data as recommended in the first link in my signature?
March 31, 2009 at 7:29 am
When you create your dataset, you select Command Type - Stored Procedure. This will get the parameters for you and use the correct ADO.NET command type with parameters.
March 31, 2009 at 7:26 am
If you are using the OLEDB Provider you need to replace the "@" with "?".
March 31, 2009 at 7:13 am
What is the user being used to connect using the VB app? Does the user have permissions to execute sp_SQLSMTPMail?
I typically recommend against sending email from a trigger, unless...
March 31, 2009 at 7:11 am
Read/Write permissions to what?
Does the person executing the procedure have permissions to manage security on the database (dbo, db_securityadmin)? If not you need to look at managing...
March 31, 2009 at 7:07 am
It sounds like the array is only being populated by the selected items, so if only 1 item is selected you only have 1 value in the array. Try...
March 31, 2009 at 7:01 am
I just wish I had a door that someone could close. I'd keep mine closed. You'd have to see our space, but we have a hall with 4...
March 31, 2009 at 5:04 am
Lynn Pettis (3/30/2009)
Jack Corbett (3/30/2009)
Lynn Pettis (3/30/2009)
Jan Van der Eecken (3/30/2009)
March 30, 2009 at 3:44 pm
Lynn Pettis (3/30/2009)
Jan Van der Eecken (3/30/2009)
March 30, 2009 at 3:38 pm
If you do a sp_helptext on sys.server_principals or sys.database_principals you can see that MS is only showing roles and default logins/users and the logged in user intentionally. I would...
March 30, 2009 at 3:18 pm
I'll chime in, can you connect to the database server from another application like SSMS?
It looks like a similar issue with a resolution can be found here
I found the link...
March 30, 2009 at 1:59 pm
I think you just want a LEFT OUTER JOIN. Something like this:
DECLARE @funds TABLE (fund VARCHAR(10), isopen BIT)
DECLARE @trans TABLE (fund VARCHAR(10), createDate DATETIME, ticketAmt DECIMAL(10, 2))
INSERT INTO @funds...
March 30, 2009 at 1:50 pm
You can use an expression in the ToolTip property and if you set it to Nothing then you will not have a tooltip. Something like this:
IIF(Fields.ColumnName.Value = "A", "Show...
March 30, 2009 at 12:53 pm
Viewing 15 posts - 5,521 through 5,535 (of 9,643 total)