User John Sibly - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T23:55:05Zhttp://stackoverflow.com/feeds/user/1078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bit3How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?John Sibly2009-06-16T19:33:24Z2009-12-10T18:03:28Z
<p>We need to run the 32-bit version of the remote desktop client on 64 bit Vista, because part of our product integrates with it, and communicates with the terminal server side app via the virtual channel. The integration loads some third party 32-bit drivers, and it is not possible to load a 32-bit dll in a 64-bit process. </p>
<p>Normally it is quite easy to run the 32 bit version of a windows application from the command line, e.g. run window:</p>
<pre><code>C:\Windows\SysWOW64\Notepad.exe
</code></pre>
<p>You can tell that the process is 32-bit by checking in task monitor\processes as it will have a *32 next to the filename.</p>
<p>However, the remote desktop client (mstsc.exe) does not want to play ball. It always runs the 64-bit version from C:\Windows\System32\mstsc.exe regardless of how I start it (run window, 32-bit cmd windows etc). I've tried writing a 32-bit C++ program to create it (normally child processes are also 32-bit) but this did not work.</p>
<p>I also tried calling:</p>
<pre><code>Wow64DisableWow64FsRedirection
Wow64RevertWow64FsRedirection
</code></pre>
<p>before and after starting mstsc.exe but this did not help either. </p>
<p>Anyone know a way around this? </p>
<p>[Edit]
I've done some further investigation with process monitor, and it seems that the 32-bit version of mstsc does start first, but then this creates a second 64 bit process and the 32 bit versions closes.</p>
http://stackoverflow.com/questions/1880738/searching-for-winapi-functions/1880813#18808130Answer by John Sibly for searching for winapi functionsJohn Sibly2009-12-10T12:56:11Z2009-12-10T13:03:08Z<p>Writing a Windows application with just the windows API is possible, but you'll end up writing huge amounts of boilerplate code just to create simple things. This is why people normally use libraries built on top of it to make things easier - MFC for example.</p>
<p>The MSDN article <a href="http://msdn.microsoft.com/en-us/library/bb384843.aspx" rel="nofollow">Creating Win32 Applications</a> provides a good explanation of the ins-and-outs of a Windows application using the Win32 API. Bare in mind though that you could build the same application in minutes using MFC.</p>
<p>I agree that MSDN is not the most user friendly source of information for a beginner. In my opinion it works much better as a reference.</p>
<p>My advice would be to focus on building some test applications using MFC (assuming you are tied to C++ as a language). Try looking at the codeproject <a href="http://www.codeproject.com/?cat=2" rel="nofollow">MFC</a> sections for example, and perhaps even buy a book to help get you started. This does of course require Visual Studio, but you can download the free express edition <a href="http://www.microsoft.com/Express/VC/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/56124/can-i-run-a-64-bit-vmware-image-on-a-32-bit-machine8Can I run a 64-bit VMWare image on a 32-bit machine?John Sibly2008-09-11T09:26:25Z2009-12-01T18:28:38Z
<p>Can I run a 64-bit VMWare image on a 32-bit machine?</p>
<p>I've Googled this but there doesn't seem to be a conclusive answer.</p>
<p>I know that it would have to be completely emulated and would run like a dog - but slow performance isn't necessarily an issue as I'm just interested in testing some of my background services code on 64-bit platforms.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72437#724375Answer by John Sibly for What development book made the most impact on you as a developer?John Sibly2008-09-16T13:51:15Z2009-11-26T06:11:23Z<p><a href="http://rads.stackoverflow.com/amzn/click/1556154844" rel="nofollow">Code Complete</a> by Steven McConnell
<a href="http://rads.stackoverflow.com/amzn/click/1556154844" rel="nofollow">1993 version of Code Complete</a></p>
<p>I really should buy the updated version!</p>
http://stackoverflow.com/questions/1714717/getting-latitude-and-longitude-without-a-gps-windows-mobile/1714747#17147474Answer by John Sibly for Getting latitude and longitude without a GPS (Windows Mobile)John Sibly2009-11-11T11:57:56Z2009-11-11T11:57:56Z<p>Seems like you can subscribe to GPS location change events:</p>
<pre><code>private Gps _gps = new Gps();
private GpsPosition _currentPosition;
public void Start()
{
_gps.LocationChanged += new
Microsoft.Location.LocationChangedEventHandler(_gps_LocationChanged);
if (!_gps.Opened)
{
_gps.Open();
}
}
private void _gps_LocationChanged(object sender,
Microsoft.Location.LocationChangedEventArgs args)
{
_currentPosition = args.Position;
}
</code></pre>
<p>See this article for further details, and also details of how to get your location using cell towers:</p>
<p><a href="http://www.codeproject.com/KB/mobile/DeepCast.aspx" rel="nofollow">Finding your location on a Windows Mobile device</a></p>
http://stackoverflow.com/questions/1709597/c-get-event-from-setwindowtext/1709708#17097082Answer by John Sibly for C# - get event from SetWindowTextJohn Sibly2009-11-10T17:28:35Z2009-11-10T17:28:35Z<p>You could try creating a new class in c# that derives from NativeWindow.</p>
<p>Override the WndProc function, and if the message if of type WM SETWINDOWTEXT add your functionality - ignore all other messages and call the base class implementation</p>
<pre><code>protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case WM SETWINDOWTEXT:
// Custom code here
break;
}
base.WndProc(ref m);
}
</code></pre>
<p>Create an instance of this C# class and call the AssignHandle function with the hWnd for the control that you got with FindWindow.</p>
<p>See this link for further details and a more in depth explanation:
<a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.nativewindow.wndproc%28VS.85%29.aspx" rel="nofollow">Overriding WndProc in the NativeWindow class</a></p>
http://stackoverflow.com/questions/1228439/x509-guide-tutorial-in-c/1709144#17091441Answer by John Sibly for X509 guide/tutorial in C#John Sibly2009-11-10T16:14:36Z2009-11-10T16:50:20Z<p>I found this <a href="http://blogs.msdn.com/alejacma/archive/2008/09/05/how-to-create-a-certificate-request-with-certenroll-and-net-c.aspx" rel="nofollow">C# example</a> pretty helpful in figuring out how to generate new certificates.</p>
<p>Also this blog post covering the <a href="http://www.reliablesoftware.com/DasBlog/PermaLink,guid,c953fbc9-34f2-48d4-ba33-55d621a48d7f.aspx" rel="nofollow">more general concepts</a></p>
<p>Other than that you'll need the platform SDK installed, which does also include several other examples (most in C++, but a couple in C# and VB too).</p>
http://stackoverflow.com/questions/1679727/how-to-remember-to-use-return-value/1679757#16797570Answer by John Sibly for How to remember to use return value?John Sibly2009-11-05T10:51:49Z2009-11-05T10:51:49Z<p>If it's really important that you deal with the output value, you could pass the function a value by reference and set that withing the function, rather than returning it.</p>
<p>That way the code calling the function is forced to consider the output value by having to supply it as a parameter at compile time</p>
http://stackoverflow.com/questions/1673296/blackberry-jar-file-problem/1673409#16734091Answer by John Sibly for BlackBerry JAR file problemJohn Sibly2009-11-04T12:09:09Z2009-11-04T12:09:09Z<p>The .cod files contain the compiled program code for your blackberry application, and are equivalent to jar files.</p>
<p>You can use either the .jad file, or an .alx file (using blackberry desktop manager) to load these .cod files onto your blackberry.</p>
http://stackoverflow.com/questions/1672677/print-a-guid-variable/1672698#16726986Answer by John Sibly for Print a GUID variableJohn Sibly2009-11-04T09:47:11Z2009-11-04T09:56:01Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/ms683917%28VS.85%29.aspx" rel="nofollow">StringFromCLSID</a> function to convert it to a string</p>
<p>e.g.:</p>
<pre><code>GUID guid;
CoCreateGuid(&guid);
OLECHAR* bstrGuid;
StringFromCLSID(guid, &bstrGuid);
// use bstrGuid...
// ensure memory is freed
::CoTaskMemFree(bstrGuid);
</code></pre>
<p>Also see the <a href="http://msdn.microsoft.com/en-us/library/aa373931%28VS.85%29.aspx" rel="nofollow">MSDN definition of a GUID</a> for a description of data4, which is a pointer to an array containing the last 8 bytes of the GUID</p>
http://stackoverflow.com/questions/1666373/how-to-obtain-code-from-repository-using-wincvs/1666395#16663950Answer by John Sibly for how to obtain code from repository using WinCvsJohn Sibly2009-11-03T10:07:39Z2009-11-03T10:07:39Z<p>In WinCVS 2.1, Click the Remote menu item, and select Checkout code.
On this screen click the ... next to CVSROOT, and you should bring up a dialog allowing you to enter the parameters you mention in your question (this is a bit easier to do than trying to enter the string manually).</p>
<p>You'll also need to enter a module name on the server, and a directory to check our the code into, but once you do this and click OK you should start checking out the code.</p>
http://stackoverflow.com/questions/1614205/how-to-get-window-handle-from-a-cdialog-derived-class/1614319#16143192Answer by John Sibly for How to get window handle from a CDialog derived class ?John Sibly2009-10-23T15:45:43Z2009-10-23T15:45:43Z<pre><code>HWND hWnd = GetSafeHwnd();
</code></pre>
<p>Should do the trick, but CDialog is itself derived from CWnd so m_hWnd would be accessable inside CDialog too</p>
http://stackoverflow.com/questions/1458785/hows-does-a-windows-color-get-calculated-from-argb/1458806#14588061Answer by John Sibly for Hows does a windows color get calculated from ARGB.John Sibly2009-09-22T08:36:26Z2009-09-22T08:36:26Z<p>The colour object in .NET includes an alpha channel (i.e. the level of transparency), while Win32 colours are purely RGB. So to convert between the two you want something like the following:</p>
<pre><code> static public int ConvertColourToWindowsRGB(Color dotNetColour)
{
int winRGB = 0;
// windows rgb values have byte order 0x00BBGGRR
winRGB |= (int)dotNetColour.R;
winRGB |= (int)dotNetColour.G << 8;
winRGB |= (int)dotNetColour.B << 16;
return winRGB;
}
static public Color ConvertWindowsRGBToColour(int windowsRGBColour)
{
int r = 0, g = 0, b = 0;
// windows rgb values have byte order 0x00BBGGRR
r = (windowsRGBColour & 0x000000FF);
g = (windowsRGBColour & 0x0000FF00) >> 8;
b = (windowsRGBColour & 0x00FF0000) >> 16;
Color dotNetColour = Color.FromArgb(r, g, b);
return dotNetColour;
}
</code></pre>
http://stackoverflow.com/questions/52797/c-how-do-i-get-the-path-of-the-assembly-the-code-is-in/283917#28391721Answer by John Sibly for C#: How do I get the path of the assembly the code is in?John Sibly2008-11-12T13:24:56Z2009-09-22T08:25:37Z<p>I've defined the following property as we use this often in unit testing. </p>
<pre><code> static public string AssemblyDirectory
{
get
{
string codeBase = Assembly.GetExecutingAssembly().CodeBase;
UriBuilder uri = new UriBuilder(codeBase);
string path = Uri.UnescapeDataString(uri.Path);
return Path.GetDirectoryName(path);
}
}
</code></pre>
<p>The Assembly.Location property sometimes gives you some funny results when using NUnit (where assemblies run from a temporary folder), so I prefer to use CodeBase which gives you the path in URI format, then UriBuild.UnescapeDataString removes the the File:// at the beginning, and GetDirectoryName changes it to the normal windows format.</p>
http://stackoverflow.com/questions/1444919/bare-minimum-you-need-to-work-for-an-opensource-project/1444960#14449602Answer by John Sibly for bare minimum you need to work for an opensource projectJohn Sibly2009-09-18T14:35:15Z2009-09-18T14:35:15Z<p>I'd suggest downloading all the source code and making sure you can build it yourself as a first step. </p>
<p>Try and make sure you are familiar with the overall design and documentation before attempting to make any changes to ensure you don't inadvertently break anything on your first change!</p>
<p>The terminologies being used will probably depend on the technologies being used, for example an open source project written in C++ and running on Linux, will likely be very different to a C#/.NET application build to run on Windows.</p>
http://stackoverflow.com/questions/1444511/control-windows-sound-volume/1444849#14448491Answer by John Sibly for Control Windows sound volumeJohn Sibly2009-09-18T14:18:46Z2009-09-18T14:18:46Z<p>Our application needs to output voice as well, and also have different volume settings relative to other applications that may be running at the same time. We have a volume control that the user can change from within the application.</p>
<p>As such, in Windows 2000/XP, we do modify the system volume when our application gains focus, and set it back to the previous setting when we lose focus or when then application shuts down. This does work well, and does not seem to interfere with the workings of other audio based applications running at the same time (such as speech recognition software which is very sensitive to recording volume for example).</p>
<p>This is exactly the same behaviour as Vista and Windows 7, except that they do the work of maintaining the individual volume levels for each application (and in this case we disable the previously mentioned code).</p>
http://stackoverflow.com/questions/1444595/being-able-to-debug-a-winforms-application-and-avoid-the-gui-from-freezing/1444673#14446730Answer by John Sibly for Being Able to Debug a WinForms Application and Avoid the GUI from FreezingJohn Sibly2009-09-18T13:52:53Z2009-09-18T14:05:39Z<p>The UI (User Interface) thread is the main thread in your application responsible for processing windows messages, such as mouse clicks, keyboard input, repainting the screen etc.</p>
<p>So the UI thread is what calls RestoreDatabaseButton_Click (since this is a user interface interaction). </p>
<p>Before you introduced the new worker thread, this function was restoring a database from the UI thread. So while this was happening, the UI thread was not available to perform its other duties, such as redrawing the screen or responding to other user input, which was why your application appeared to freeze up.</p>
<p>The difficulties in debugging may just be because restoring a database is potentially a fairly intensive operation, involving writing to the file system which is a fairly low level task. The operating system may decide it needs to devote most of its time to the database restore, and not "context switch" very often, which is when the processor would switch to working on the UI thread. You could try starting the thread will a lower thread priority which should tell the OS to switch to your application more often.</p>
<p>Also, you need to be careful with how you manage the worker thread. For example, you should probably make it a member variable, and prevent the user from starting multiple worker threads concurrently (and disabling the restore button while the restore is happening). You should also consider providing a mechanism for stopping the thread should things go wrong, or when your application shuts down, to ensure the it shuts down cleanly.</p>
http://stackoverflow.com/questions/1444388/whats-the-point-of-mergeproxystub/1444603#14446033Answer by John Sibly for What's the point of _MERGE_PROXYSTUB?John Sibly2009-09-18T13:37:31Z2009-09-18T13:37:31Z<p>You need a proxy/stub if you want your COM object to be called from an application using a different threading model than your COM object. </p>
<p>For example, we have a plug in that gets loaded by an application that uses a particular threading model (can't remember which), but our COM object is multithreaded apartment (MTA) - so the the proxy/stub is required to marshall the data between the objects when a function call is made, while still adhering to the rules of the threading model. </p>
<p>If these rules are broken, then COM will either throw an exception or return a failure HRESULT such as *RPC_E_WRONG_THREAD*</p>
<p>If you don't check the merge proxy/stub option, then visual studio produces a seperate project for the proxy/stubs which get build into a seperate dll. This makes things more difficult for deployment if they are required, but you can basically just ignore them if you are not affected by threading model issues.</p>
<p>So you can do without proxy/stubs if the application calling the COM object is using the same threading model as your object</p>
<p>Larry Osterman provides a readable introduction to <a href="http://blogs.msdn.com/larryosterman/archive/2004/04/28/122240.aspx" rel="nofollow">threading models</a> on his blog.</p>
http://stackoverflow.com/questions/1443673/debugging-64-bit-c-from-64-bit-net-code-how/1443874#14438741Answer by John Sibly for Debugging 64-bit C++ from 64-bit .NET Code - how?John Sibly2009-09-18T11:09:04Z2009-09-18T11:09:04Z<p>I've seen this problem too with the 64-bit debugger. Do you definitely need to debug both at the same time?</p>
<p>If not, when you need to debug native code you could run the managed application and the attach the debugger manually selecting "Native Code" as the debug type (as opposed to Automatic which might select both Managed and Native).</p>
http://stackoverflow.com/questions/1437634/can-windows-detect-when-a-monitor-mouse-keyboard-is-disconnected/1437653#14376533Answer by John Sibly for Can windows detect when a monitor, mouse, keyboard is disconnected?John Sibly2009-09-17T09:10:35Z2009-09-17T09:52:56Z<p>Not sure about the monitor, but the keyboard and mouse being disconnected should fire off a
WM_DEVICECHANGE message if they are USB devices. See this link for details: <a href="http://msdn.microsoft.com/en-us/library/aa363480%28VS.85%29.aspx" rel="nofollow">WM_DEVICECHANGE</a></p>
<p>There is a good discussion of WM_DEVICECHANGE on this <a href="http://www.dotnet247.com/247reference/msgs/32/164968.aspx" rel="nofollow">forum</a>, relating to its usage with HID devices (Mouse/Keyboard/etc.)</p>
<p>For more detailed notification you can use the RegisterDeviceNotification function
<a href="http://msdn.microsoft.com/en-us/library/aa363431%28VS.85%29.aspx" rel="nofollow">RegisterDeviceNotification</a></p>
http://stackoverflow.com/questions/1436979/how-to-register-form-for-wmdevicechange-message-in-windows-mobile/1437722#14377220Answer by John Sibly for How to register form for WM_DEVICECHANGE message in windows mobileJohn Sibly2009-09-17T09:31:30Z2009-09-17T09:44:09Z<p>The key is to create a class deriving from NativeWindow, give this the handle of your form to call AssignHandle with, and override the WndProc function (allowing you to do what you want with WM_DEVICECHANGE).</p>
<p>See the example on this MSDN page for more details: <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.nativewindow.wndproc%28VS.85%29.aspx" rel="nofollow">Overriding the NativeWindow.WndProc Method</a></p>
<p>[EDIT] Not completely sure if the NativeWindow class is available in the compactFramework yet. If not, Alex Yakhnin has the class and a sample application of how to catch messages available <a href="http://blog.opennetcf.com/ayakhnin/PermaLink.aspx?guid=eacd2a5f-a7fb-4bce-9336-f974ea2d2e29" rel="nofollow">here</a>. Hope this will help.</p>
http://stackoverflow.com/questions/1340080/how-to-solve-the-following-problem-in-vc/1340126#13401261Answer by John Sibly for How to solve the following problem in VC++John Sibly2009-08-27T10:18:33Z2009-08-27T10:18:33Z<p>It may be that you have downloaded a solution that does not have a specific project selected as the startup project.</p>
<p>If you can find a project that builds to an exe, right click this project and select
<strong><em>Set as StartUp Project</em></strong> then run. </p>
http://stackoverflow.com/questions/1322919/what-are-some-3d-games-written-in-c/1322965#13229650Answer by John Sibly for What are some 3D games written in C#?John Sibly2009-08-24T15:09:15Z2009-08-24T15:15:13Z<p><a href="http://sourceforge.net/develop/" rel="nofollow">SourceForge</a> might be a good place to start. On the projects page select C# as the programming language and search. There are currently about 17,000 C# projects.</p>
<p>Browsing the the source for a large project may be a bit daunting if you are learning - I'd recommended trying to find something simple to start with.</p>
<p>Edit:
Another couple of quick links to games</p>
<ul>
<li><a href="http://www.personalmicrocosms.com/Pages/np.aspx" rel="nofollow">Sudoku in C#</a></li>
<li><a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=421929" rel="nofollow">Gem Towers</a> (much more ambitious 3D C# game)</li>
</ul>
http://stackoverflow.com/questions/189118/what-are-your-most-recommended-visual-studio-preferences/189163#18916311Answer by John Sibly for What are your most-recommended Visual Studio preferences?John Sibly2008-10-09T20:51:23Z2009-08-11T09:25:54Z<p>I've never found dynamic help to be either dynamic or helpful, and just tends to slow visual studio down, so using regedit:</p>
<p><PRE>
registry key:
HKEY_CURRENT_USER\Software\Microsoft\Visual Studio\x.x\Dynamic Help
value:
Never Show DH on F1 = yes
</PRE></p>
<p>I'm also keen on setting the following in Options->Projects and Solutions:</p>
<ul>
<li>Show Output window when build starts - checked
(IMHO easiest way to spot build errors)</li>
<li>Track Active Item in Solution Explorer - unchecked
(stops every project ending up fully expanded in Solution Explorer)
<img src="http://www.sibly.co.uk/images/visual%5Fstudio%5Fprefs.png" alt="Visual Studio Preferences" /></li>
</ul>
http://stackoverflow.com/questions/1232505/register-a-c-com-component/1232533#12325330Answer by John Sibly for Register a C# COM component?John Sibly2009-08-05T11:00:31Z2009-08-05T11:00:31Z<p>I find that you normally need to do:</p>
<pre><code>regasm /codebase
</code></pre>
<p>Because COM needs to know the exact location of your assembly to be able to load it.</p>
<p>As others have suggested, you will need to set you C# project as COM visible (project settings, application, assembly information button).</p>
<p>Finer control of which classes are visible or not can be obtained using the [ComVisible(true)] / [ComVisible(false)] attribute before each class</p>
http://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution/1120548#11205481Answer by John Sibly for Free Visual Studio Build Automation SolutionJohn Sibly2009-07-13T16:26:45Z2009-07-13T16:26:45Z<p>Have you considered using MSBuild? It comes free with the .NET framework.</p>
<p>It would require a small amount of coding. For example, you'd have to create a new .net class (deriving from Task) that overrides the Execute function, then call out to SVN to update your source code. But the bulk of the set up would be in a build.xml file where you can specify solution file names, and the different configurations.</p>
<p>A reasonable introduction is here:
<a href="http://en.csharp-online.net/MSBuild:%5FBy%5FExample" rel="nofollow">MSBuild</a></p>
<p>I understand why you'd want to do this through a GUI, but IMHO the flexibility you get using MSBuild is worth the extra effort of setting it up, while not being as complex as writing it completely from scratch in another scripting language.</p>
http://stackoverflow.com/questions/12374/has-anyone-had-any-success-in-unit-testing-sql-stored-procedures25Has anyone had any success in unit testing SQL stored procedures?John Sibly2008-08-15T15:29:14Z2009-04-29T03:32:32Z
<p>We’ve found that the unit tests we’ve written for our C#/C++ code have really paid off.
But we still have thousands of lines of business logic in stored procedures, which only really get tested in anger when our product is rolled out to a large number of users. </p>
<p>What makes this worse is that some of these stored procedures end up being very long, because of the performance hit when passing temporary tables between SPs. This has prevented us from refactoring to make the code simpler.</p>
<p>We have made several attempts at building unit tests around some of our key stored procedures (primarily testing the performance), but have found that setting up the test data for these tests is really hard. For example, we end up copying around test databases. In addition to this, the tests end up being really sensitive to change, and even the smallest change to a stored proc. or table requires a large amount of changes to the tests. So after many builds breaking due to these database tests failing intermittently, we’ve just had to pull them out of the build process.</p>
<p>So, the main part of my questions is: has anyone ever successfully written unit tests for their stored procedures?</p>
<p>The second part of my questions is whether unit testing would be/is easier with linq? </p>
<p>I was thinking that rather than having to set up tables of test data, you could simply create a collection of test objects, and test your linq code in a “linq to objects” situation? (I am a totally new to linq so don’t know if this would even work at all)</p>
http://stackoverflow.com/questions/574839/vs2008-windows-mobile-installer-project/574925#5749256Answer by John Sibly for VS2008, Windows Mobile Installer projectJohn Sibly2009-02-22T13:25:46Z2009-04-20T12:03:38Z<p>You'll need to package your application up in a CAB file. </p>
<p>To do this is quite easy - you just create a new "Smart Device CAB Project" (New Projet->Other project types->Setup and Deployment).</p>
<p>To start with - specify that you want the output from your application's exe project to go in the Application Directory, along with any other dependent dlls.</p>
<p>You may also want to create an icon for your application by right clicking File System On Target Machine, selecting Add Special Folder->Start Menu Folder, then right clicking again in the Start Menu Folder and selecting Create New Shortcut. Now point this shortcut at the exe for your application.</p>
<p>Depending on the requirements of your project, it may also be desirable to create a desktop installer (msi file) that your users can run directly on their Windows PC, which instructs ActiveSync to install your cab file automatically when the Windows Mobile device is next plugged in. Basically this is done by calling ActiveSync (CeAppMgr.exe) from the command line and passing it an ini file referencing your cab file.</p>
<p>If you need to do anything else more complex during your installation, it is also possible to write a "custom action" where the cab file calls out to another dll (written by you) to execute any additional steps that need to happen during the install.</p>
<p>A comprehensive guide to all the above is available <a href="http://msdn.microsoft.com/en-us/library/aa446504.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/658771/best-way-to-determine-whether-an-attached-document-will-harm-a-user-when-opened1Best way to determine whether an attached document will harm a user when openedJohn Sibly2009-03-18T15:28:59Z2009-04-18T10:32:48Z
<p>We're writing a feature that will allow our users to "attach" things like Word documents, Excel spreadsheets, pictures, pdfs to documents in our application - just like email.</p>
<p>We don't however, want to allow them to attach .exe, .bat, .reg files, or anything else that might harm them if they opened it - so we're proposing to have a whitelist of allowed file types. </p>
<p>Does anyone know of a better way to determine whether a document is safe? (i.e. does not have the ability to harm a user's computer).
Or instead a resource that would give us a list of commonly used safe documents to add to our whitelist as defaults?</p>
http://stackoverflow.com/questions/704998/how-to-underline-individual-items-in-a-clistctrl0How to underline individual items in a CListCtrlJohn Sibly2009-04-01T10:54:23Z2009-04-02T12:47:58Z
<p>We want some items in a CListView to appear like hypertext links.</p>
<p>I can make everything underlined by setting the lfUnderline flag in LOGFONT, and creating a font from this, before calling SetFont - but this applies to the whole CListView.</p>
<p>Does anyone know how to make individual items in a CListView to appear underlined?</p>
http://stackoverflow.com/questions/1709597/c-get-event-from-setwindowtext/1709708#1709708Comment by John Sibly on C# - get event from SetWindowTextJohn Sibly2009-11-10T21:33:36Z2009-11-10T21:33:36ZGreat stuff. It's the .NET equivalent to sub-classing a window using MFC or the Win32 APIhttp://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1596191#1596191Comment by John Sibly on "Don't show this again" option in message boxesJohn Sibly2009-10-20T17:51:00Z2009-10-20T17:51:00ZYou might also consider setting a flag in the registry (under HKEY_CURRENT_USER) to ignore the dialog for the current Windows userhttp://stackoverflow.com/questions/1458785/hows-does-a-windows-color-get-calculated-from-argb/1458806#1458806Comment by John Sibly on Hows does a windows color get calculated from ARGB.John Sibly2009-09-22T12:14:26Z2009-09-22T12:14:26ZEssentially yes - as Alexandre showed the disassembled code is very similar. The idea of OLE Color is that it can include a flag indicating that the colour is a system colour, such as "button face". Since these may appear differently on different operating systems/themes they would be useful if you want to make your application match the current windows theme. If they don't include a flag then they'll behave just like a Win32 colour.http://stackoverflow.com/questions/1444511/control-windows-sound-volume/1444849#1444849Comment by John Sibly on Control Windows sound volumeJohn Sibly2009-09-18T15:14:42Z2009-09-18T15:14:42ZIn our situation the volume would drop/increase when the focus changes.
As you suggested, the only way of increasing the volume while maintaining the volume of other applications in this situation would be to increase the volume of your underlying audio data.
The Vista sound architecture is a major step forwards in this respect.http://stackoverflow.com/questions/1437634/can-windows-detect-when-a-monitor-mouse-keyboard-is-disconnectedComment by John Sibly on Can windows detect when a monitor, mouse, keyboard is disconnected?John Sibly2009-09-17T09:54:20Z2009-09-17T09:54:20ZWhich language are you using?http://stackoverflow.com/questions/1340147/two-basic-question-about-compiling-and-librariesComment by John Sibly on Two basic question about compiling and librariesJohn Sibly2009-08-27T10:27:48Z2009-08-27T10:27:48ZWhat platform are you using? If Windows I'd suggest building a static library or DLL from which you can link to from external code, but these are Windows specifichttp://stackoverflow.com/questions/1334155/context-menu-parentComment by John Sibly on context menu parent?John Sibly2009-08-26T11:54:24Z2009-08-26T11:54:24ZHave you considered using a combo box? This might be more intuitive for your users to understandhttp://stackoverflow.com/questions/1299567/how-to-calculate-distance-from-a-point-to-a-line-segment-on-a-sphereComment by John Sibly on How to calculate distance from a point to a line segment, on a sphere? John Sibly2009-08-19T12:40:36Z2009-08-19T12:40:36ZBare in mind that the Earth, and WGS84 system designed to approximate it, is not a sphere - so calculations based on that assumption my in inaccuratehttp://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution/1120548#1120548Comment by John Sibly on Free Visual Studio Build Automation SolutionJohn Sibly2009-07-14T08:04:19Z2009-07-14T08:04:19ZIf you create another build task (again, a class deriving from Task and overriding Execute), you can call out to the compiler for that language. We do this for parts of our product that aren't .NET, but also to build non-.NET installation packages.http://stackoverflow.com/questions/793657/how-to-find-path-of-active-app-config-file/793701#793701Comment by John Sibly on How to find path of active app.config file?John Sibly2009-07-13T15:54:06Z2009-07-13T15:54:06ZDid the job for me - thanks! :o)http://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bit/1004921#1004921Comment by John Sibly on How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?John Sibly2009-06-17T16:38:52Z2009-06-17T16:38:52ZThanks for the answer Employed Russian (+1), you clearly understand the issue I'm having. I'll make the question community wiki-so feel free to clarify it.http://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bit/1007642#1007642Comment by John Sibly on How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?John Sibly2009-06-17T16:03:10Z2009-06-17T16:03:10ZYes I've tried copying over the version from 32 bit XP.
Running it starts the 32 bit version (*32 next to name in task monitor) but an error message pops up:
The system cannot find the file specified.
C:\WinXP32\<LANG_NAME>\mstsc.exe.MUI
If I copy over a version of this .MUI file and run again, it starts up but it leaves only the 64 bit version runninghttp://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bit/1004921#1004921Comment by John Sibly on How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?John Sibly2009-06-17T09:04:14Z2009-06-17T09:04:14ZThere are two versions of mstsc.exe installed. A 32-bit version in C:\Windows\SysWOW64\mstsc.exe and 64-bit in C:\Windows\System32\mstsc.exe.
I tried copying the version from SysWOW64 to my development machine and did a dumpbin /headers and confirm that it is 32 bit.http://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bitComment by John Sibly on How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?John Sibly2009-06-16T19:46:48Z2009-06-16T19:46:48ZI asked the question on serverfault, but have not found the answer yet. Since it is quite a low level problem I hoped the SO community might be able to help. http://stackoverflow.com/questions/379581/how-to-diagnose-access-violation-on-application-exit/379745#379745Comment by John Sibly on How to diagnose Access Violation on application exitJohn Sibly2009-04-30T14:36:40Z2009-04-30T14:36:40ZBare in mind that you may be breaking license agreements if you start distributing debug runtime dlls. You aren't supposed to distribute the debug versions of the MFC runtime for example