Miha
What do I do now with my date, currency, number
columns? Plus I have a AutoNumber column. All of these
columns have data in them and changing them over to a
TEXT field will have a major impact on them.
Mathew
-----Original Message-----
Don't use non alphanumeric characters.
--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com
Miha
Ok...I think I got my question almost answered.
Tell me how I can make sure I can look at all my
column
names when I go through ADO.Net? That is the problem I
am
having. I can see most of my columns but, not all of
them.
Mathew
-----Original Message-----
Hi Mathew,
What about inglsk, strAbc and curDollars.
Those are not variables, they are column names.
And as such they don't need some sort of special
character to determine
their type.
The type is set to column.
--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com
Miha
So how should my variables be set up in ACCESS so
VB.NET will look at each field?
Right now I got them set up like this: inglsk# or
strAbc, or curDollars. Should I reset them up to
look
like this: #inglsk, $strAbc #curDollars?
-----Original Message-----
Hi Mathew,
You really shouldn't use non alfa or numeric
characters.
--
Miha Markic - RightHand .NET consulting &
development
miha at rthand com
www.rhand.com
so basically if I switch all my variables over to
either
a # for numbers or $ for text I should be just
fine?
-----Original Message-----
Hi Matthew,
I guess that fields ending with # are missing?
--
Miha Markic - RightHand .NET consulting &
development
miha at rthand com
www.rhand.com
$a001280a@phx.gbl...
Hi Miha
I don't know if this will help or not but,
here is
the
SQR (from ACCESS).
SELECT tblCattleHistoryTable.[inglsk#],
tblCattleSoldTable.dtmDate,
tblCattleHistoryTable.strFYR,
tblCattleHistoryTable.[ingtag#],
tblCattleHistoryTable.dtmdate,
tblCattleHistoryTable.strbreed,
tblCattleHistoryTable.strColor,
tblCattleHistoryTable.intLbs,
tblCattleHistoryTable.strAge,
tblCattleHistoryTable.strSex,
tblCattleHistoryTable.curPrice,
tblCattleHistoryTable.strWhom,
tblCattleHistoryTable.dtmBredDate,
tblCattleHistoryTable.dtmCastrateDate,
tblCattleHistoryTable.dtmDateDied,
tblCattleHistoryTable.strReason,
tblCattleSoldTable.
[ingLsk#], tblCattleSoldTable.intLbs,
tblCattleSoldTable.curPrice,
tblCattleSoldTable.strWhom,
tblCattleSoldTable.ysnWithCalf
FROM tblCattleHistoryTable LEFT JOIN
tblCattleSoldTable
ON tblCattleHistoryTable.[inglsk#] =
tblCattleSoldTable.
[ingLsk#]
WHERE (((tblCattleSoldTable.dtmDate) Is
Null)) OR
(((tblCattleHistoryTable.strFYR)=Format(Now
(),'yyyy')))
ORDER BY tblCattleHistoryTable.[inglsk#];
-----Original Message-----
Hi Matthew,
How does your query look like?
--
Miha Markic - RightHand .NET consulting &
development
miha at rthand com
www.rhand.com
message
$a101280a@phx.gbl...
I am trying to access a query I wrote in MS
ACCESS.
where I look at my fields from my query (in
Data
Form
Wizzard) not all my fields are there. Can
someone
explan
why that is and how I can fix that?
.
.
.
.
.