Viewing 15 posts - 706 through 720 (of 13,445 total)
MessageBox can only display strings, and RecordCount is an integer,so simply convert the value you want to display.
MessageBox.Show(RecordCount.ToString)
December 28, 2016 at 9:22 am
Public Sub Main()
'
' Add your code here
...
December 28, 2016 at 8:54 am
bzoom100 (12/28/2016)
I have a table called "tblDataPermit"
My DataSet1 includes the column "Type"
The Type column has numeric values 1-54.
In my report if...
December 28, 2016 at 7:46 am
not efficiently, because you would have to manipulate each column value.
what are we doing? stripping out just two specific values? stripping all non numeric characters? what about alpha characters?
with a...
December 28, 2016 at 6:38 am
no functions are allowed in a filtered index definition, so the ISNULL is not compliant with teh syntax.
also, OR statements are not valid either; the filter has to be...
December 27, 2016 at 10:53 am
I'm with Sue;
either an invalid email is being used(ie someone@gmailcom, missing the period) or a null a missing semicolon between multipel addresses, or something for one of your new report...
December 27, 2016 at 10:36 am
Welsh Corgi (12/23/2016)
Lowell (12/23/2016)
Welsh Corgi (12/23/2016)
Lowell (12/21/2016)
is your account used by a team of users, and not an individual?
Trivially adapted from part of an answer ...
December 23, 2016 at 8:02 pm
Welsh Corgi (12/23/2016)
Lowell (12/21/2016)
is your account used by a team of users, and not an individual?
Trivially adapted from part of an answer I posted for...
December 23, 2016 at 4:47 am
djj (12/22/2016)
If you haven't guessed I need mine out.
I...
December 22, 2016 at 12:20 pm
look to see what database mail has to say about the specific message; it could be that a firewall issue prevents connections, or you misspelled a password or something:
SELECT top...
December 21, 2016 at 4:06 pm
Dts.Events.FireError is what you want.
is your account used by a team of users, and not an individual?
Trivially adapted from part of an answer I posted for you yesterday @4:40pm(less...
December 21, 2016 at 2:07 pm
thakur.bhagat24 (12/20/2016)
But I have one new requirement of order by color what we get using below case.
CASE WHEN (ROW_NUMBER() OVER (ORDER BY [SpecialOfferID]))%2...
December 21, 2016 at 6:24 am
here's a C# code example, change directory to file, and
try
{
string FileName = (string)Dts.Variables["BHCS_InPatient_File"].Value;
...
December 20, 2016 at 2:40 pm
Welsh Corgi (12/20/2016)
There is an issue with the last line of code.Any ideas?
what is the issue? you've been around long enough to know exact errors and a description of the...
December 20, 2016 at 12:11 pm
Welsh Corgi (12/20/2016)
What am I missing?
also a try catch to capture any errors raised you did not expect.
December 20, 2016 at 12:09 pm
Viewing 15 posts - 706 through 720 (of 13,445 total)