Viewing 15 posts - 31 through 45 (of 237 total)
as I stated before. it is in MS ACCESS. all the code there is using dao.
while I used this. myConnection is not defined.
Set cmd = New ADODB.Command
Set cmd.ActiveConnection...
June 26, 2009 at 7:23 am
I tried what mark suggestion ,
something like : put the chr etc. it did not work.
strM = "(RehiredStatusMailingList.SUPERVISOR= " & Chr(34) & strM & Chr(34) & "' or RehiredStatusMailingList.MANAGER="...
June 26, 2009 at 7:04 am
Thank you for your time. It is in MS ACCESS. I have combo box which is working fine if the combo text is just text without special character. One person's...
June 26, 2009 at 6:20 am
It is fix width file and suppose to have six fields to import. the first column would be field name.
see attached test file.
PID SPECIALTY PNAME ...
June 18, 2009 at 5:05 am
USE [Clinical_Edu_2006]
DROP TABLE Doc
GO
GO
/****** Object: Table [dbo].[DOC] Script Date: 06/17/2009 13:58:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[DOC](
[PID] [char](17) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[SPECIALTY] [char](21) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[PNAME] [char](55) COLLATE...
June 18, 2009 at 4:53 am
my file is like that.
PID SPECIALTY PNAME ...
June 17, 2009 at 12:31 pm
I set that as link table right now. It should solve the problem.Thx.
March 17, 2009 at 11:10 am
I do not think I understand that quoto well. in the report table name field.
I have those data in the access table
"Abu Al-Hasan Al Madani"
I need to take off the...
March 17, 2009 at 6:09 am
thx. how to explain this syntax:
"""" I assumed this " is escape. Thx.
March 16, 2009 at 9:47 am
but it is in MS ACCESS. I tried to put single quote. It did not work.
March 16, 2009 at 9:37 am
I want to check whether the begining of the data is "
for this case "STICHTING WERELDHULP-BELGIE
select left([name], 1) from table1 where left([name], 1) =" " " and right([name],...
March 16, 2009 at 9:20 am
How can I write select statement for
the data beginning with "
"STICHTING WERELDHULP-BELGIE
and data ending the sentence ?
V.Z.W."
Thx.
March 16, 2009 at 9:06 am
Source is the column name. I still do not understand Source&1 or Source&2 here.
June 25, 2008 at 12:01 pm
Select
PartyId,
FirstName,
LastName,
Case when Source&1<>0 then 1 else 0 End[Source1],
Case when Source&2<>0 then 2 else 0 End[Source2],
Case when Source&4<>0 then 4 else 0 End[Source3],
AddDate,
ModDate
from dbo.ExistingMaster
Will you please let me know what...
June 25, 2008 at 9:16 am
what ever do you get ?
April 24, 2008 at 12:37 pm
Viewing 15 posts - 31 through 45 (of 237 total)