Click here to Skip to main content
15,922,894 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHelp for beginnner Pin
seccard129-Mar-09 7:45
seccard129-Mar-09 7:45 
AnswerRe: Help for beginnner Pin
Yusuf29-Mar-09 8:42
Yusuf29-Mar-09 8:42 
seccard1 wrote:
I have not used vb is about 15 years,


wow, Is that mean the last version you use was VB3.0? It was released around 1993. What made you come back?


seccard1 wrote:
I was wondering what I needed to do to get my program to allow me to pick a directory and load 3 dbf files in to the program so I can modify them if some one can point me in the right direction that would be great


You are trying to read dbase databse? here is what you need

Add Microsoft DAO reference to your project then the following code will do some magic tricks

Dim sql As String
sql = "Select * From table"

Dim db As Datbase
Set db = DBEngine.OpenDatabase("C:\Database", False, False, "dBASE III;")

Dim recset As RecordSet
Set recset= db.OpenRecordset(sql)


This is may not compile, you will need to tweak it. It has been that long since working with vb

Yusuf

Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]

GeneralRe: Help for beginnner Pin
LloydA1114-Apr-09 13:02
LloydA1114-Apr-09 13:02 
QuestionProblem related to multiline textbox Pin
nazimghori28-Mar-09 21:28
nazimghori28-Mar-09 21:28 
AnswerRe: Problem related to multiline textbox Pin
Luc Pattyn28-Mar-09 22:33
sitebuilderLuc Pattyn28-Mar-09 22:33 
AnswerRe: Problem related to multiline textbox Pin
Eddy Vluggen28-Mar-09 22:45
professionalEddy Vluggen28-Mar-09 22:45 
QuestionRe: Problem related to multiline textbox Pin
nazimghori29-Mar-09 6:32
nazimghori29-Mar-09 6:32 
AnswerRe: Problem related to multiline textbox Pin
Eddy Vluggen29-Mar-09 6:40
professionalEddy Vluggen29-Mar-09 6:40 
QuestionRe: Problem related to multiline textbox Pin
nazimghori29-Mar-09 7:28
nazimghori29-Mar-09 7:28 
AnswerRe: Problem related to multiline textbox Pin
Eddy Vluggen29-Mar-09 7:33
professionalEddy Vluggen29-Mar-09 7:33 
AnswerRe: Problem related to multiline textbox Pin
Luc Pattyn29-Mar-09 6:55
sitebuilderLuc Pattyn29-Mar-09 6:55 
AnswerRe: Problem related to multiline textbox Pin
dineshrajputglobal29-Mar-09 22:55
dineshrajputglobal29-Mar-09 22:55 
QuestionUse { and & _ in string.Format Pin
mehrdadc4828-Mar-09 20:43
mehrdadc4828-Mar-09 20:43 
AnswerRe: Use { and & _ in string.Format Pin
Henry Minute28-Mar-09 23:43
Henry Minute28-Mar-09 23:43 
QuestionVisual Basic integration to SAP though RFC [modified] Pin
yog211228-Mar-09 7:33
yog211228-Mar-09 7:33 
AnswerRe: Visual Basic integration to SAP though RFC Pin
Dave Kreskowiak28-Mar-09 12:43
mveDave Kreskowiak28-Mar-09 12:43 
QuestionWHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
JUNEYT28-Mar-09 1:52
JUNEYT28-Mar-09 1:52 
AnswerRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
Alan N28-Mar-09 5:17
Alan N28-Mar-09 5:17 
GeneralRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
JUNEYT28-Mar-09 6:31
JUNEYT28-Mar-09 6:31 
GeneralRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
Alan N28-Mar-09 7:06
Alan N28-Mar-09 7:06 
GeneralRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
JUNEYT28-Mar-09 21:54
JUNEYT28-Mar-09 21:54 
GeneralRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
Alan N28-Mar-09 22:41
Alan N28-Mar-09 22:41 
GeneralRe: WHY MCISENDSTRING DOESN'T PLAY THE FILE? Pin
Eddy Vluggen28-Mar-09 23:48
professionalEddy Vluggen28-Mar-09 23:48 
QuestionQuestion about .dll in VB.NET Pin
Xavious27-Mar-09 17:12
Xavious27-Mar-09 17:12 
AnswerRe: Question about .dll in VB.NET Pin
Dave Kreskowiak27-Mar-09 17:58
mveDave Kreskowiak27-Mar-09 17:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.