Hallo,
I would like to achive an outcome that returns only values that do not repeat in a column.
I have a database with a list of values in a column that are a conbination of driver name and destination.
SmithSydney
JonesSydney
SmithSydney
JonesMelbourne
SmithSydney
JonesMelbourne...
Hi,
I think I figured it out. Using just plain old CDate I converted the string into a date format
Dim TheDate as Date
Dim CurrentDay as String = "1/12/2007"
TheDate = (CDate(CurrentDay))
MessageBox.Show(TheDate)
The problem was I was looking in the code for the values, which by the way...
Hi Bob,
I have checked the regional settings and they are all ok as I suspected that they would have been.
The error must be elswhere, in my code. Its very frustrating I have lost many hours trying to figgure out this problem. Having non US settings have always presented this problem. I have...
Hi All,
Im having real problems with the date formats in VB 2005.
Imports System.Globalization
Dim auCulture As CultureInfo = New CultureInfo("en-AU")
Dim TheDate As DateTime
TheDate = DateTime.ParseExact(CurrentDay, "dd/mm/yyyy", auCulture.DateTimeFormat)
Im trying to convert a string in...
Thanks R937
While your code did not work, due to syntax error It at least showed me that I was heading in the right direction. Most times that is as good as any specific advice.
Through trial and error I came to a working solution,
I WAS SO CLOSE BEFORE
"Select * FROM DHistory,DToday where...
Thanks,
dbase is the data bases, I wouldnt think that that it would matter in the sql statment. The join statment ? In the examples in the tutorial there was no mention of such thing.
Michal
Hi All,
First post and absolute begginer.
I have 2 dbf tables. One has todays drivers and the other has drivers history(ie each past driving job) I want to create a dataset? which has the driving history for each driver engaged today so that I can do some stuff with it.
The drivers(today)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.