Click here to Skip to main content
15,917,652 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: format a time to 24 hours Pin
steve_rm2-Nov-06 23:22
steve_rm2-Nov-06 23:22 
QuestionSwaping Pin
Khan.Bangash2-Nov-06 22:00
Khan.Bangash2-Nov-06 22:00 
QuestionRe: Swaping Pin
Dave Sexton3-Nov-06 0:56
Dave Sexton3-Nov-06 0:56 
AnswerRe: Swaping Pin
OldWarhorse3-Nov-06 3:08
OldWarhorse3-Nov-06 3:08 
QuestionImport C# DLL into vb.net Pin
charchabil032-Nov-06 21:01
charchabil032-Nov-06 21:01 
AnswerRe: Import C# DLL into vb.net Pin
GaryWoodfine 3-Nov-06 0:16
professionalGaryWoodfine 3-Nov-06 0:16 
AnswerRe: Import C# DLL into vb.net Pin
OldWarhorse3-Nov-06 2:18
OldWarhorse3-Nov-06 2:18 
AnswerRe: Import C# DLL into vb.net Pin
Dave Kreskowiak3-Nov-06 6:38
mveDave Kreskowiak3-Nov-06 6:38 
charchabil03 wrote:
ADD REFERENCE,the DLL was added but i couldnt see the Dll in the Solution Exploere


Adding a reference to the DLL does not make it part of your project/solution. It allows you to import and use the objects in that DLL as COM objects. It's not added to your project.


charchabil03 wrote:
thus I coulndt call the DLL


You've made an incorrect assumption. Once you add a reference to the DLL, you either have to Import the namespace(s) that DLL exports or specify the fully qualified name of the object you want to use in your code. For instanceif you added a reference to a COM-based HPortalLib.dll file, and it exported a namespace called HPortalLib, you add an Imports statement to the top of file you want to use it in like this:
Imports System.IO
Imports System.Drawing
Imports System.Text
Imports AxHPortalLib

You would add an Imports statement for the Ax version of the namespace because that would be the .NET Runtime Callable Wrapper around the non-.NET component that you're using.


Dave Kreskowiak
Microsoft MVP - Visual Basic


Questionfile transfer in lan Pin
helpmepls2-Nov-06 20:20
helpmepls2-Nov-06 20:20 
AnswerRe: file transfer in lan Pin
nlarson113-Nov-06 4:06
nlarson113-Nov-06 4:06 
QuestionImageCompression Pin
sheema1232-Nov-06 19:58
sheema1232-Nov-06 19:58 
AnswerRe: ImageCompression Pin
Reuven Elliassi2-Nov-06 21:44
Reuven Elliassi2-Nov-06 21:44 
QuestionRot-13 Pin
UltraCoder2-Nov-06 16:56
UltraCoder2-Nov-06 16:56 
AnswerRe: Rot-13 Pin
Reuven Elliassi2-Nov-06 21:52
Reuven Elliassi2-Nov-06 21:52 
GeneralRe: Rot-13 Pin
UltraCoder3-Nov-06 14:00
UltraCoder3-Nov-06 14:00 
AnswerRe: Rot-13 Pin
Reuven Elliassi3-Nov-06 20:25
Reuven Elliassi3-Nov-06 20:25 
AnswerRe: Rot-13 Pin
ChandraRam3-Nov-06 2:26
ChandraRam3-Nov-06 2:26 
GeneralRe: Rot-13 Pin
UltraCoder3-Nov-06 14:03
UltraCoder3-Nov-06 14:03 
GeneralRe: Rot-13 Pin
ChandraRam3-Nov-06 19:34
ChandraRam3-Nov-06 19:34 
QuestionWeb browser project memory leaking Pin
my_btr2-Nov-06 16:48
my_btr2-Nov-06 16:48 
AnswerRe: Web browser project memory leaking Pin
Dave Kreskowiak3-Nov-06 1:35
mveDave Kreskowiak3-Nov-06 1:35 
QuestionHOW TO TELL AMOUNT IN WORDS Pin
Swiss Mantoro2-Nov-06 16:45
Swiss Mantoro2-Nov-06 16:45 
AnswerRe: HOW TO TELL AMOUNT IN WORDS Pin
UltraCoder2-Nov-06 16:58
UltraCoder2-Nov-06 16:58 
GeneralRe: HOW TO TELL AMOUNT IN WORDS Pin
Dave Sexton2-Nov-06 19:00
Dave Sexton2-Nov-06 19:00 
GeneralRe: HOW TO TELL AMOUNT IN WORDS Pin
Colin Angus Mackay2-Nov-06 23:27
Colin Angus Mackay2-Nov-06 23:27 

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.