Viewing 15 posts - 121 through 135 (of 214 total)
that did not work. Running a recovery application on the file and it is recovering the db. It must be corrupt.
July 30, 2014 at 10:09 am
what is the sql server service acct (default)?
July 30, 2014 at 8:23 am
That's the first thing I tried, no cigar.
July 30, 2014 at 5:04 am
I found the correct syntax:
Forms(MyFormName).Controls(MyTemplateName).SourceObject = MySubFormsNew
Forms(MyFormName).Controls(MyTemplateName).Name = MySubFormsNew
July 8, 2014 at 12:58 pm
I tried it the first time before replying and it gave me an error msg...i tried again now and it worked...must have fat fingered something. Thanks!
June 20, 2014 at 8:48 am
Only 1 thing i just noticed.
in my loop I declare the @SEQ. I use this to give me the starting number. So if I want to start from...
June 20, 2014 at 8:10 am
Excellent!
This worked and the article is very interesting.
Thanks
June 20, 2014 at 7:56 am
It is a SQL View. I found out what my issue was. It was an ID field that was not set as autoincrement. The table would not...
May 30, 2014 at 7:40 am
I found the answer to my own question:
@MyTable + '.' + REPLACE(@MyFields,',',',' + @MyTable + '.')
May 21, 2014 at 6:59 am
Thanks for the link, it has good information there for what I was looking for and more!
April 8, 2014 at 7:10 am
Yes, ReportListX is the unboound subform2 in my main form. I've close out of my app, but will try again later and reply back if your solution worked.
March 27, 2014 at 6:08 pm
I figured it out.
Reports("mytable").recordsource = "Select * from mytable"
March 18, 2014 at 2:57 pm
found my error, this works. Thanks! higgim, your code gave me the structure I needed for my query below.
;With ClientDomains_CTE3
AS
(
SELECT ClientDomains.DomainType
, ClientDomains.ClientVndNbr
, ClientDomains.ClientVndName
, RTRIM(REPLACE(
REPLACE(
REPLACE(
REPLACE(ClientVndName, ' CO ',...
March 7, 2014 at 10:25 am
Thanks for the reply with good code. Sorry I took long getting back but I went back to the business person and asked for these requirements in the original...
March 7, 2014 at 9:50 am
Here's an attempt at it. I'm getting an error msg on line 9 (Incorrect syntax near '>'. Can anyone tell me why I am getting the error msg?...
March 7, 2014 at 7:29 am
Viewing 15 posts - 121 through 135 (of 214 total)