Click here to Skip to main content
15,921,793 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionEmbedded OLE objects in VB .NET ? Pin
smritiy11-Aug-04 6:28
smritiy11-Aug-04 6:28 
AnswerRe: Embedded OLE objects in VB .NET ? Pin
ramaseb11-Aug-04 6:56
ramaseb11-Aug-04 6:56 
GeneralRe: Embedded OLE objects in VB .NET ? Pin
smritiy11-Aug-04 7:20
smritiy11-Aug-04 7:20 
GeneralFOXPRO TABLES Pin
ramaseb11-Aug-04 6:05
ramaseb11-Aug-04 6:05 
GeneralPlease Help Me Pin
mohan_balal11-Aug-04 5:50
mohan_balal11-Aug-04 5:50 
GeneralRe: Please Help Me Pin
Dave Kreskowiak11-Aug-04 5:53
mveDave Kreskowiak11-Aug-04 5:53 
GeneralRe: Please Help Me Pin
Nick Seng11-Aug-04 15:11
Nick Seng11-Aug-04 15:11 
GeneralRe: Please Help Me Pin
ramaseb11-Aug-04 6:34
ramaseb11-Aug-04 6:34 
Hi mohan_balal

For Q1. if you mean the RDO for data access , that visual basic 6 and prior uses , i think that is for 32 bit systems ( WINDOWS 95 , 98 , NT , 2000 , XP ) , but im not sure that RDO plays with 64bit windows.

For Q2. the answers are related with "variables" but for different reasons.

a) you can declare a variable in a procedure or function or inside a code block in a procedure or a function and this variable called "local"

b-c) Impicit , Explicit , hmmmm... this is "instructions" to the compiler ( and /or refers to conversion from one type to other ) tell the behaviour about when you try to give a value from a variable to another variable that isnt excacty the same type, or use a variable in a procedure,function or method or property call that isnt actual the same type as in the definitions of all those ( general speaking ).


d) Private. In a class definition you can give a "visibility" to members functions or variables . an examble
.....

class aaaa
private var1 as string
public var2 as string
private sub sub1
end sub
public sub sub2
end sub
end class
.....

when you later in your rest code you use an object of type aaaa you can refer only to var2 and sub2 because are the only visible outside of the class !! the "word" private "hides" the var1 and var2 from outside the class/object

I Hope I helped you ....

Ramaseb







Ramaseb.
Questionis there someone can explain this code? Pin
Lisana11-Aug-04 5:00
Lisana11-Aug-04 5:00 
AnswerRe: is there someone can explain this code? Pin
Anonymous11-Aug-04 14:04
Anonymous11-Aug-04 14:04 
Answeroriginal source code Pin
Anonymous11-Aug-04 14:27
Anonymous11-Aug-04 14:27 
GeneralRe: original source code Pin
Lisana11-Aug-04 14:35
Lisana11-Aug-04 14:35 
AnswerRe: is there someone can explain this code? Pin
Nick Seng11-Aug-04 15:09
Nick Seng11-Aug-04 15:09 
GeneralRe: is there someone can explain this code? Pin
Lisana11-Aug-04 15:24
Lisana11-Aug-04 15:24 
Generalhelp! error: BC30389: 'C' is not accessible in this context because it is 'Private' Pin
isnapols11-Aug-04 3:21
isnapols11-Aug-04 3:21 
GeneralRe: help! error: BC30389: 'C' is not accessible in this context because it is 'Private' Pin
Colin Angus Mackay11-Aug-04 4:00
Colin Angus Mackay11-Aug-04 4:00 
GeneralKodak Image controls Pin
Brad Fackrell11-Aug-04 3:02
Brad Fackrell11-Aug-04 3:02 
GeneralRe: Kodak Image controls Pin
Dave Kreskowiak11-Aug-04 5:18
mveDave Kreskowiak11-Aug-04 5:18 
GeneralRe: Kodak Image controls Pin
Brad Fackrell11-Aug-04 12:12
Brad Fackrell11-Aug-04 12:12 
GeneralWriting data to binary files Pin
Simon Kearn11-Aug-04 0:16
sussSimon Kearn11-Aug-04 0:16 
GeneralRe: Writing data to binary files Pin
Simon Kearn11-Aug-04 5:42
sussSimon Kearn11-Aug-04 5:42 
GeneralRe: Writing data to binary files Pin
Dave Kreskowiak11-Aug-04 6:01
mveDave Kreskowiak11-Aug-04 6:01 
Generalpdf conversion example program Pin
franco_8210-Aug-04 20:30
franco_8210-Aug-04 20:30 
GeneralRe: pdf conversion example program Pin
Member 53081011-Aug-04 3:17
Member 53081011-Aug-04 3:17 
GeneralRe: pdf conversion example program Pin
Dave Kreskowiak11-Aug-04 4:53
mveDave Kreskowiak11-Aug-04 4:53 

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.