Click here to Skip to main content
15,885,141 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralThread Pooling Pin
Mycroft Holmes8-Apr-08 22:56
professionalMycroft Holmes8-Apr-08 22:56 
GeneralRe: Thread Pooling Pin
Dave Kreskowiak9-Apr-08 5:27
mveDave Kreskowiak9-Apr-08 5:27 
GeneralRe: Thread Pooling Pin
Mycroft Holmes9-Apr-08 12:39
professionalMycroft Holmes9-Apr-08 12:39 
GeneralRe: Thread Pooling Pin
Dave Kreskowiak9-Apr-08 14:54
mveDave Kreskowiak9-Apr-08 14:54 
GeneralRe: Thread Pooling Pin
Mycroft Holmes9-Apr-08 16:52
professionalMycroft Holmes9-Apr-08 16:52 
GeneralRe: Thread Pooling Pin
Mark Churchill9-Apr-08 21:28
Mark Churchill9-Apr-08 21:28 
GeneralRe: Thread Pooling Pin
Mycroft Holmes9-Apr-08 22:47
professionalMycroft Holmes9-Apr-08 22:47 
GeneralFind my dll's Pin
helelark1238-Apr-08 22:06
helelark1238-Apr-08 22:06 
Hello,

I am writing a program in VB.NET (VS2005)

I need to know which references are in used in my project. I wrote the following code:

Imports EnvDTE80
Imports Microsoft.VisualBasic
Imports System.Windows
Imports System.Windows.Forms
Imports System

Dim DTE As Object
DTE = System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.8.0")

Dim myProj As Integer
Dim prjVSProject As VSLangProj.VSProject

Try
For myProj = 1 To DTE.Solution.Projects.Count - 1

prjVSProject = DTE.Solution.Projects.Item(myProj).Object

Dim myRef As VSLangProj.Reference
For Each myRef In prjVSProject.References
MsgBox(myRef.Identity)
Next
Next

Catch err As System.Exception
MsgBox(err.Message)
End Try

The code is working well but the problem is that I didn't get the entire list of dlls, for example I didn't get a dll that I wrote and add to the reference.

Please help.

Thank you

Shay Noy

QuestionProcess Naming Pin
Maffyx8-Apr-08 18:28
Maffyx8-Apr-08 18:28 
GeneralRe: Process Naming Pin
Dave Kreskowiak9-Apr-08 2:34
mveDave Kreskowiak9-Apr-08 2:34 
GeneralRe: Process Naming Pin
Maffyx9-Apr-08 4:47
Maffyx9-Apr-08 4:47 
GeneralRe: Process Naming Pin
Dave Kreskowiak9-Apr-08 5:03
mveDave Kreskowiak9-Apr-08 5:03 
GeneralRe: Process Naming Pin
Maffyx9-Apr-08 5:05
Maffyx9-Apr-08 5:05 
GeneralRe: Process Naming Pin
Dave Kreskowiak9-Apr-08 12:13
mveDave Kreskowiak9-Apr-08 12:13 
GeneralRe: Process Naming Pin
Maffyx9-Apr-08 13:36
Maffyx9-Apr-08 13:36 
GeneralRe: Process Naming Pin
Dave Kreskowiak9-Apr-08 14:47
mveDave Kreskowiak9-Apr-08 14:47 
GeneralRe: Process Naming Pin
Maffyx9-Apr-08 14:52
Maffyx9-Apr-08 14:52 
GeneralRe: Process Naming Pin
Dave Kreskowiak10-Apr-08 1:40
mveDave Kreskowiak10-Apr-08 1:40 
GeneralRe: Process Naming Pin
Maffyx10-Apr-08 5:49
Maffyx10-Apr-08 5:49 
GeneralRe: Process Naming Pin
Dave Kreskowiak10-Apr-08 12:32
mveDave Kreskowiak10-Apr-08 12:32 
GeneralRe: Process Naming Pin
Maffyx10-Apr-08 12:51
Maffyx10-Apr-08 12:51 
GeneralRe: Process Naming Pin
Dave Kreskowiak10-Apr-08 13:36
mveDave Kreskowiak10-Apr-08 13:36 
GeneralRe: Process Naming Pin
Maffyx10-Apr-08 13:51
Maffyx10-Apr-08 13:51 
GeneralRe: Process Naming Pin
Dave Kreskowiak10-Apr-08 16:04
mveDave Kreskowiak10-Apr-08 16:04 
GeneralRe: Process Naming Pin
Maffyx10-Apr-08 16:32
Maffyx10-Apr-08 16:32 

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.