Viewing 12 posts - 1 through 12 (of 12 total)
TheSQLGuru (3/6/2015)
Scott Coleman (3/6/2015)
March 9, 2015 at 7:11 am
seshurtz (3/6/2015)
I would usually start troubleshooting an issue like this by using the "SET STATISTICS IO ON" and "SET STATISTICS TIME ON" feature in my script, turning on actual...
March 9, 2015 at 7:06 am
TheSQLGuru (3/6/2015)
Oh, I should also ask WHY do you want to bring back the entire table to SSMS?
I'm actually trying to trouble shoot poor performance with the Suite CRM application....
March 6, 2015 at 11:57 am
Bummer, us Phillies fans were hoping to see him take the hill one last time here later this month. I'll always remember him digging up the rubber and leaving the...
June 1, 2012 at 12:33 pm
This may be a bit over simplified, but I usually do something like this:
Set the form's Record Source:
SELECT tblQuote.QuoteDate FROM tblQuote WHERE Quote = '2007-5434A';
Then adjust the Record Source via...
December 23, 2010 at 7:17 am
View the properties for the field, on the data tab make sure Enabled = Yes and Locked = No. Also view the properties for the form and make sure that...
December 22, 2010 at 6:51 am
Moneyball - the movie? With Brad Pitt playing Billy Bean? Great book that made me see the game differently, but I'm not sure about how it will translate to the...
August 4, 2010 at 2:10 pm
I've used the following to restrict user access. Usually by locking controls on a form or making things invisible
Dim stUser As String
stUser = GetLoginName
Select Case stUser
Case "DAVID", "KATHY", "JO", "Micheal"
...
August 4, 2010 at 1:41 pm
Could you possibly save the reports as PDF?
June 18, 2009 at 7:02 am
I have had similar issues when the table included a column that used the bit datatype. Setting a default value of 0 fixed the problem.
March 23, 2009 at 7:12 am
Yes, in my example "Me.FilePath" is a reference to the field on my form that contains the path and file name of the file to be opened.
November 26, 2008 at 6:42 am
I have used the following to hyperlink to any file type. I assume it would work with Crystal Reports.
I keep the list of files in a table and use contents...
November 25, 2008 at 7:13 am
Viewing 12 posts - 1 through 12 (of 12 total)