D
DesiGUY
Hi Gurus:
I developed a CF(compact framework) applicaiton and it works like a
charm. Now, I'm told by my manager to develop the same for the Desktop.
I was thinking to build a solution with 2 projects(1 CF, 1 Full F). So,
it would like one EXE for both Device and Desktop.
During application startup, I would check for the Operating
System(whether WinCE or Win32NT) and run appropriate project.
if (OS == WinCE) RUN(Device project)
else if (OS == Win32NT) RUN(Desktop project)
How to acheive this? Many thanks in advance.
I developed a CF(compact framework) applicaiton and it works like a
charm. Now, I'm told by my manager to develop the same for the Desktop.
I was thinking to build a solution with 2 projects(1 CF, 1 Full F). So,
it would like one EXE for both Device and Desktop.
During application startup, I would check for the Operating
System(whether WinCE or Win32NT) and run appropriate project.
if (OS == WinCE) RUN(Device project)
else if (OS == Win32NT) RUN(Desktop project)
How to acheive this? Many thanks in advance.