Click here to Skip to main content
15,886,055 members
Home / Discussions / C#
   

C#

 
Questionset to 640x480 wmv files Pin
is90057james12-Jan-12 19:28
is90057james12-Jan-12 19:28 
AnswerRe: set to 640x480 wmv files Pin
Abhinav S12-Jan-12 20:57
Abhinav S12-Jan-12 20:57 
Generalhi frnds Pin
mbjino12-Jan-12 18:31
mbjino12-Jan-12 18:31 
GeneralRe: hi frnds Pin
Calla12-Jan-12 20:50
Calla12-Jan-12 20:50 
GeneralRe: hi frnds PinPopular
V.12-Jan-12 20:53
professionalV.12-Jan-12 20:53 
GeneralRe: hi frnds Pin
Abhinav S12-Jan-12 20:55
Abhinav S12-Jan-12 20:55 
QuestionOS architecture vs compiling issues Pin
turbosupramk312-Jan-12 16:49
turbosupramk312-Jan-12 16:49 
AnswerRe: OS architecture vs compiling issues Pin
Luc Pattyn12-Jan-12 17:15
sitebuilderLuc Pattyn12-Jan-12 17:15 
There is no general solution, applicable to all applications. The fundamental rule is a process must be homogeneous, i.e. consist of all x86 or all x64 code; so e.g. you can't build a plug-in that works for both a 32-bit and a 64-bit native app (say Internet Explorer).

However, if app and plug-in are both managed code, then building for x86 should always work, as each x64 processor and Windows version (at this moment) is able to execute x86 code as well. One caveat: you need all referenced files on your machine, and that may be tricky in some situations.

Remark: Visual Studio Express doesn't let you choose, it generates "AnyCPU" (Google will yield some work-arounds though). Full Visual Studio lets you choose, unfortunately the default is "AnyCPU", which may cause your app to start as a 64-bit process, to later discover some needed native file isn't available for 64-bit (warning: on Win64, 64-bit system code resides in system32, and 32-bit code in systemWow64!).

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

GeneralRe: OS architecture vs compiling issues Pin
turbosupramk312-Jan-12 17:27
turbosupramk312-Jan-12 17:27 
AnswerRe: OS architecture vs compiling issues Pin
Luc Pattyn12-Jan-12 17:47
sitebuilderLuc Pattyn12-Jan-12 17:47 
GeneralRe: OS architecture vs compiling issues Pin
turbosupramk312-Jan-12 17:58
turbosupramk312-Jan-12 17:58 
GeneralRe: OS architecture vs compiling issues Pin
turbosupramk313-Jan-12 4:11
turbosupramk313-Jan-12 4:11 
AnswerRe: OS architecture vs compiling issues Pin
Luc Pattyn13-Jan-12 4:24
sitebuilderLuc Pattyn13-Jan-12 4:24 
GeneralRe: OS architecture vs compiling issues Pin
turbosupramk313-Jan-12 4:46
turbosupramk313-Jan-12 4:46 
AnswerRe: OS architecture vs compiling issues Pin
Luc Pattyn13-Jan-12 5:26
sitebuilderLuc Pattyn13-Jan-12 5:26 
QuestionOperator '==' cannot be applied to operands of type 'string' and 'int' Pin
bigphish12-Jan-12 8:01
bigphish12-Jan-12 8:01 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Luc Pattyn12-Jan-12 8:10
sitebuilderLuc Pattyn12-Jan-12 8:10 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
bigphish12-Jan-12 8:13
bigphish12-Jan-12 8:13 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' PinPopular
Luc Pattyn12-Jan-12 8:28
sitebuilderLuc Pattyn12-Jan-12 8:28 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Pete O'Hanlon12-Jan-12 8:48
mvePete O'Hanlon12-Jan-12 8:48 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
harold aptroot12-Jan-12 8:18
harold aptroot12-Jan-12 8:18 
GeneralMessage Removed Pin
12-Jan-12 10:44
professionalN_tro_P12-Jan-12 10:44 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
harold aptroot12-Jan-12 10:49
harold aptroot12-Jan-12 10:49 
GeneralMessage Removed Pin
12-Jan-12 10:54
professionalN_tro_P12-Jan-12 10:54 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
harold aptroot12-Jan-12 10:56
harold aptroot12-Jan-12 10:56 

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.