Click here to Skip to main content
15,884,986 members
Home / Discussions / C#
   

C#

 
GeneralConstructing IDL's Pin
Tristan Rhodes28-Dec-03 4:51
Tristan Rhodes28-Dec-03 4:51 
GeneralRe: Constructing IDL's Pin
Heath Stewart28-Dec-03 4:54
protectorHeath Stewart28-Dec-03 4:54 
GeneralRe: Constructing IDL's Pin
Tristan Rhodes28-Dec-03 5:06
Tristan Rhodes28-Dec-03 5:06 
GeneralRe: Constructing IDL's Pin
Heath Stewart28-Dec-03 5:44
protectorHeath Stewart28-Dec-03 5:44 
GeneralRe: Constructing IDL's Pin
Tristan Rhodes28-Dec-03 5:56
Tristan Rhodes28-Dec-03 5:56 
GeneralRe: Constructing IDL's Pin
Heath Stewart28-Dec-03 6:21
protectorHeath Stewart28-Dec-03 6:21 
GeneralINCLUDE Configuration Pin
Tristan Rhodes28-Dec-03 6:38
Tristan Rhodes28-Dec-03 6:38 
GeneralRe: INCLUDE Configuration Pin
Heath Stewart28-Dec-03 6:55
protectorHeath Stewart28-Dec-03 6:55 
Don't include spaces between delimited directories in your INCLUDE env. var. (or PATH, LIB, or any other delimited path env. vars. like that). Also keep in mind that you can use env. vars. even in those env. vars. by defining things like PSDK=F:\MSDN\Vc7\PlatformSDK as another env. var., then using INCLUDE=%PSDK%\Include.

Also, you should download the newest PSDK from MSDN. If you're using the one in your VS.NET directory, you're using an OLD one. Also, don't include directories in your env. var. in quotes. That is one thing that the OS will handle correctly when using the UI. When doing this in a command line, you would have to type it like so:
set INCLUDE=C:\SomeDir;C:\SomeDir\Some Other Dir
Make sure there's no space around the equals (=) sign and don't use quoes there, either. Also note that typing this in the command prompt only makes the INCLUDE env. var. durable for THAT particular command prompt instance. You can also append directories like so:
set INCLUDE=%INCLUDE%;C:\SomeDir;C:\SomeDir\Some Other Dir
Again, if you change the env. vars. through the Advanced tab in the system properties, you must restart any program - including the command prompt - in which you need these changes reflected (for instance, an open Internet Explorer browser window won't benefit from this change, so you don't have to restart it).

Note also that VS.NET maintains it's own list, though there is ways to make it use the system and user environment variables instead. See the Options for details and just try it out.

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: INCLUDE Configuration Pin
Tristan Rhodes28-Dec-03 7:08
Tristan Rhodes28-Dec-03 7:08 
GeneralRe: INCLUDE Configuration Pin
Heath Stewart28-Dec-03 7:17
protectorHeath Stewart28-Dec-03 7:17 
GeneralRe: INCLUDE Configuration Pin
Tristan Rhodes28-Dec-03 8:48
Tristan Rhodes28-Dec-03 8:48 
GeneralRe: INCLUDE Configuration Pin
Nick Parker28-Dec-03 7:13
protectorNick Parker28-Dec-03 7:13 
GeneralJava sux! Pin
Tristan Rhodes28-Dec-03 8:06
Tristan Rhodes28-Dec-03 8:06 
GeneralRe: Java sux! Pin
Nick Parker28-Dec-03 8:29
protectorNick Parker28-Dec-03 8:29 
GeneralRe: Java sux! Pin
Tristan Rhodes28-Dec-03 8:34
Tristan Rhodes28-Dec-03 8:34 
GeneralRe: Java sux! Pin
Heath Stewart28-Dec-03 8:55
protectorHeath Stewart28-Dec-03 8:55 
GeneralRe: Java sux! Pin
Nick Parker28-Dec-03 9:25
protectorNick Parker28-Dec-03 9:25 
GeneralRe: Java sux! Pin
Heath Stewart28-Dec-03 9:28
protectorHeath Stewart28-Dec-03 9:28 
GeneralRe: Java sux! Pin
Nick Parker28-Dec-03 9:35
protectorNick Parker28-Dec-03 9:35 
GeneralRe: Java sux! Pin
Heath Stewart28-Dec-03 8:52
protectorHeath Stewart28-Dec-03 8:52 
GeneralHosting ActiveX Pin
Wizard_0128-Dec-03 2:30
Wizard_0128-Dec-03 2:30 
GeneralRe: Hosting ActiveX Pin
Heath Stewart28-Dec-03 3:58
protectorHeath Stewart28-Dec-03 3:58 
Generalfiltering properties Pin
Roger Alsing28-Dec-03 1:34
Roger Alsing28-Dec-03 1:34 
GeneralRe: filtering properties Pin
Wizard_0128-Dec-03 2:53
Wizard_0128-Dec-03 2:53 
GeneralRe: filtering properties Pin
Roger Alsing28-Dec-03 3:37
Roger Alsing28-Dec-03 3:37 

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.