User Stefan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:56:43Z http://stackoverflow.com/feeds/user/19307 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue/1766841#1766841 2 Answer by Stefan for Resharper Suggestion Color Issue Stefan 2009-11-19T21:53:57Z 2009-11-19T21:53:57Z <p>Have you tried the community forum for resharper? <a href="http://www.jetbrains.net/devnet/community/resharper" rel="nofollow">http://www.jetbrains.net/devnet/community/resharper</a></p> <p>Maybe this is a known bug/fix/tweak?</p> http://stackoverflow.com/questions/1765821/cancelling-windows-forms-events/1765909#1765909 1 Answer by Stefan for Cancelling Windows Forms Events Stefan 2009-11-19T19:28:06Z 2009-11-19T21:48:44Z <p>Instead of using the Leave Event, try <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.selectedindexchanged.aspx" rel="nofollow" title="SelectedIndexChanged Event">SelectedIndexChanged Event</a>, that would be fired before the datagrids doubleclick event. The downside is if the user is scrolling the combobox with the keyboard, then it will fire 5 times if the user scrolls 5 steps down in the combobox. </p> <p>Another solution would be to store a local variable lComboEntered=true when entering the combo and set the value to false when the leave event fires. And in the datagrid doubleclick event check if the lComboEntered=false before doing anyting.</p> http://stackoverflow.com/questions/1664514/how-to-insert-values-into-vb-net-dictionary-on-instantiation/1664601#1664601 1 Answer by Stefan for How to insert values into VB.NET Dictionary on instantiation? Stefan 2009-11-03T00:45:12Z 2009-11-03T01:06:00Z <p>If you are using Visual Basic 2008 you could use the FROM keyword:</p> <pre><code>Dim days = New Dictionary(Of Integer, String) From {{0, "Sunday"}, {1, "Monday"}} </code></pre> <p><strong>EDIT</strong>: This will only work in <strong>Visual Basic 2010</strong> as it was pulled from the VB2008.</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd293617%28VS.100%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd293617%28VS.100%29.aspx</a></p> http://stackoverflow.com/questions/1609957/how-can-a-net-program-update-itself/1610145#1610145 0 Answer by Stefan for How can a .net program update itself? Stefan 2009-10-22T21:41:03Z 2009-10-22T21:41:03Z <p>Its easy when you know the "workaround". Your program cant download itself over itself because the file is locked by the running process. The workaround is that it still is possible to RENAME the file. So here is what you do:</p> <p>IF your programs name are "myprogram.exe":</p> <ol> <li>myprogram.exe starts</li> <li>Myprogram.exe download a new version of itself but under the name "newversion.bak"</li> <li>Check that newversion.bak has downloaded correct (md5-check or something)</li> <li>myprogram.exe renames the "myprogram.exe" to "myprogram.old" </li> <li>myprogram.exe renames the "newversion.bak" to "myprogram.exe"</li> <li>myprogram.exe restarts itself, and voila, its updated.</li> <li>(optional) myprogram.exe deletes "myprogram.old" if exists when started.</li> </ol> <p>This will allow you to update your program without having an external updater.</p> http://stackoverflow.com/questions/827641/how-do-i-read-videoduration-of-a-flv-file-from-net-without-using-the-flash-act 0 How do I read videoDuration of a .flv-file from *.Net without using the flash-activeX? Stefan 2009-05-06T01:18:43Z 2009-10-19T11:34:00Z <p>I have a winform program that allows users to upload Shockwave Flash movies to a server. To get the videoDuration I create an instance of the "ShockwaveFlashObjects"-activeX, loads the movie, and then read the videoDuration until it change from "0.0" to anything else. I get that by reading the GetVariable("videoDuration").</p> <p>Often it works, but sometimes it locks up or show information from the previous Flash movie that was loaded. </p> <p>I also have had trouble distributing the ShockWaveFlashObject-activeX. I would really like to skip that and just read the flash-file and find out the play length of the movie.</p> <p>All movies uploaded are videos so they have a specific play length.</p> <p><a href="http://stackoverflow.com/questions/741551/reading-swf-file-code-from-c">This question didnt help</a> with answers eather. </p> <p>I have checked out the <a href="http://www.wotsit.org/download.asp?f=swffileformat&amp;sc=294868335" rel="nofollow" title="swf-format">swf-format</a> at <a href="http://www.wotsit.org/" rel="nofollow" title="wotsit">wotsit</a> and from what I can see it should be possible to read the framerate and framecount and by that calculate the duration, but I could not find anything about flv-files. Maybe someone allready have done this and can point me to some nice code that saves me plenty of time trying to understand the specification?</p> http://stackoverflow.com/questions/1502712/programmable-stand-alone-button-hardwaresoftware 0 Programmable stand alone Button (hardware+software) Stefan 2009-10-01T08:47:52Z 2009-10-12T09:30:38Z <p>I need to have a physical button that when pressed will be noticed by my program. There are many types of usb-buttons that are preprogrammed to open a website, shutdown the computer and so on. And I have seen some projects using buttons and serial port.</p> <p>But none of them "have it all", an easy description of how to put togheter the hardware, and an easy description of the code.</p> <p>I really only need a button connected to the serial port that send some signal that the button has been pressed.</p> <p>I know this question is a crossover between software and hardware, but when I googled this I have seen plenty more people asking this question, all of them left without answers.</p> <p>Maybe this question fits stackoverflow?</p> <p><strong>EDIT: My solution</strong></p> <p>My application in this case was a que system and I wanted a button for people to print a que ticket.</p> <p>I just took apart an old ps2-mouse and bought me a button (4$) and solded two wires from the circuit board to the button. Each mouse button has to dots on the back of the circuit board that we can connect an external button to.</p> <p>Then in my program I just hooked the mousebutton-event systemwide to get when the button is pressed, in my case this computer is dedicated to this program so its not a problem.</p> <p><img src="http://img185.imageshack.us/img185/8100/dsc00024nx.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1553329/for-arguments-sake-how-will-i-convince-someone-that-linq2sql-is-far-better-than/1553517#1553517 0 Answer by Stefan for For argument's sake, how will i convince someone that Linq2Sql is far better than Data Access Application Block in an Asp.Net MVC project? Stefan 2009-10-12T09:13:22Z 2009-10-12T09:13:22Z <p>So one person who does not know why want help to convince another person who does not know why. Both persons <em>know</em> what they want without having a clue why.</p> <p>For me this is a nobrainer. Stick with what's allready going untill anything better is proven. And to prove something is better you'll have to understand what you got and what you compare with. </p> http://stackoverflow.com/questions/1553453/change-asp-net-generated-web-service-client-gui/1553475#1553475 1 Answer by Stefan for Change ASP.NET generated Web Service Client GUI Stefan 2009-10-12T09:03:23Z 2009-10-12T09:03:23Z <p>Just change the port-part of the URL for the webservice:</p> <p>In code:</p> <pre><code>Public Product As New wsProduct.ProductWs Product.Url ="http://localhost:80/product.asmx" </code></pre> <p>Same goes if you do it in the designer on the property page for the webservice reference.</p> http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it/1553097#1553097 1 Answer by Stefan for I found this Reboot Vista.vbs script. Can you help with it ? Stefan 2009-10-12T06:59:51Z 2009-10-12T06:59:51Z <p>You cannot have spaces in the regpath: Change "Curr e ntVersion" to "CurrentVersion"</p> <p>This row: </p> <pre><code>Wsh.RegWrite KeyB, PathFile, "REG_SZ" </code></pre> <p>will register the script to autostart with windows if the PathFile and KeyB is correct, but with spaces in "Curr e ntVersion" it will not work.</p> http://stackoverflow.com/questions/1516191/take-picture-using-webcam-from-command-line/1516206#1516206 3 Answer by Stefan for Take picture using webcam from command line Stefan 2009-10-04T11:45:27Z 2009-10-04T11:45:27Z <p>The question itself is not programming related, just a request of some hardwares bundled softwares documentation.</p> <p>I will answer the question as it WAS a programming question.</p> <p>If you talking about webcams on a windows OS you can use DirectShow as in this example:</p> <p><a href="http://www.codeproject.com/KB/audio-video/WebcamUsingDirectShowNET.aspx" rel="nofollow">http://www.codeproject.com/KB/audio-video/WebcamUsingDirectShowNET.aspx</a></p> <p>Just create a console application in visual studio that takes some commandline parameters and let it use the code in the example and you are on your way.</p> http://stackoverflow.com/questions/462270/get-file-icon-used-by-shell/462301#462301 10 Answer by Stefan for Get File Icon used by Shell Stefan 2009-01-20T17:40:42Z 2009-09-29T23:57:06Z <pre><code>Imports System.Drawing Module Module1 Sub Main() Dim filePath As String = "C:\myfile.exe" Dim TheIcon As Icon = IconFromFile(filePath) If TheIcon IsNot Nothing Then ''#Save it to disk, or do whatever you want with it. Using stream As New System.IO.FileStream("c:\myfile.ico", IO.FileMode.CreateNew) TheIcon.Save(stream) End Using End If End Sub Public Function IconFromFilePath(filePath As String) As Icon Dim result As Icon = Nothing Try result = Icon.ExtractAssociatedIcon(filePath) Catch ''# swallow and return nothing. You could supply a default Icon here as well End Try Return result End Function End Module </code></pre> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470304#1470304 10 Answer by Stefan for What's the worst security hole you've ever seen? Stefan 2009-09-24T07:54:22Z 2009-09-24T10:46:59Z <p>An online DVD-rent-shop in Sweden sent pure SQL-statements in the querystring.</p> <p>If you selected for example category "Comedy" in the menu-frame, it then sent "<strong>select * from movies where category=2</strong>" as querystring to the movielist-frame, that then executed the SQL-statement and showed all movies matching the criteria.</p> <p>Same thing when adding movies to your order.</p> <p>Just change the query to "delete * from movies" and "Delete * from orders" would make the day for that company.</p> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470338#1470338 65 Answer by Stefan for What's the worst security hole you've ever seen? Stefan 2009-09-24T08:06:22Z 2009-09-24T08:06:22Z <p>The old IBM System 36 dumb terminals had a keyboard combination that started the recording of a macro. So when a terminal was not logged in, you could start the recording of a macro and leave it in that position. Next time someone logged in, the keystrokes would be recorded in the macro and the recording would end automatically when maximum allowed keys was recorded. Just come back later and replay the macro to autolog-in. </p> <p><img src="http://www.ringdale.com/images/products/is488-300.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1426032/can-someone-provide-me-a-specification-of-32-bit-bmp-image-format/1426043#1426043 0 Answer by Stefan for Can someone provide me a specification of 32 bit BMP image format? Stefan 2009-09-15T09:07:30Z 2009-09-15T09:07:30Z <p><a href="http://www.wotsit.org/" rel="nofollow">http://www.wotsit.org/</a> has the answer:</p> <p>(Warning for popups when visiting following link)<br /> <a href="http://www.fortunecity.com/skyscraper/windows/364/bmpffrmt.html" rel="nofollow">http://www.fortunecity.com/skyscraper/windows/364/bmpffrmt.html</a></p> http://stackoverflow.com/questions/1422594/launch-external-process-with-time-to-live/1422658#1422658 2 Answer by Stefan for Launch External Process With Time To Live Stefan 2009-09-14T16:39:34Z 2009-09-14T16:39:34Z <pre><code>{ Process x = new Process(); x.StartInfo.FileName = "notepad.exe"; x.Start(); //wait 10 sec, then kill process x.WaitForExit(10000); if (!x.HasExited) { x.Kill(); } } </code></pre> http://stackoverflow.com/questions/1421518/creating-my-own-word-wrapper-for-string/1421691#1421691 1 Answer by Stefan for creating my own Word wrapper for string Stefan 2009-09-14T13:54:57Z 2009-09-14T13:54:57Z <p>Something like this, it will get you started (just a quick samle i mashed together):</p> <pre><code>Private Sub Doit() Dim Source As String = "" Source &amp;= "How to make my own word wrap function for string, I want each line to be no longer than 50chars and take respect existing CRLFs" &amp; vbCrLf &amp; vbCrLf Source &amp;= "So this will be a new row." Dim wrappedtext As String = wrap(Source, 20, vbNewLine) MsgBox(wrappedtext) End Sub Function wrap(ByVal text As String, ByVal maxlength As Integer, ByVal newline As String) As String Dim tmp() As String = Split(text.Replace(vbCrLf, " | "), " ") Dim ret As String = "" Dim wrk As String = "" For Each word As String In tmp If word = "|" Then ret &amp;= newline wrk = "" ElseIf word = "" Then Else If Len(wrk &amp; word) &lt;= maxlength Then wrk &amp;= " " &amp; word Else ret &amp;= wrk &amp; newline wrk = word &amp; " " End If End If Next If wrk &lt;&gt; "" Then ret &amp;= wrk Return ret End Function </code></pre> http://stackoverflow.com/questions/1377172/create-wmv-file-from-code 1 Create wmv-file from code? Stefan 2009-09-04T04:01:32Z 2009-09-04T04:16:43Z <p>I have a project where the requirements is that a end user will select a template, enter some information and then my program should create a wmv movie file that has the information entered encoded in the movie.</p> <p>So from my perspective I would like to have a framework that allows me to add graphics and text to a movie. Something like this: </p> <pre><code>movie.addframes(framecount, templateimage) movie.frame(x).drawtext(x,y,text,font,size,color) movie.frame(x).drawRectangle(rect,color,bordersize) movie.frame(x).drawImage(rect,borderstyle,bordersize, image,sizemode) movie.save(filename,filetype) </code></pre> <p>Does this exists? </p> <p>I have searched and only found information about ffmpeg that doesn't seem to do what I want.<br /> I don't need it to be real-time encoding.<br /> I don't care if the framework/library is expensive.</p> <p>If there are information of how to do this with for example DirectX or DirectShow and pointing to real working vb.net examples, then ill be happy too. ;) (Believe me, I have tried to search and haven't found anything.)</p> <p>I have not found any good information about how to use Windows Media Encoder for this, but It seems like Windows Media Encoder is the way to go if doing it myself..</p> http://stackoverflow.com/questions/1357271/how-can-i-prevent-the-print-progress-dialog-appearing-when-performing-a-print-pre/1357824#1357824 0 Answer by Stefan for How can I prevent the Print Progress dialog appearing when performing a print preview Stefan 2009-08-31T14:46:36Z 2009-08-31T14:46:36Z <p>A workaround would be to use the EnumChildWindows API to find the handle to the window, and If found, use the ShowWindow API with the SW_HIDE flag to hide the window.</p> <p>Here are an example for using FindWindow if you know the title of the window:</p> <pre><code>#region Constants private const int SW_HIDE = 0; private const int SW_SHOWNORMAL = 1; private const int SW_SHOW = 5; #endregion Constants #region APIs [System.Runtime.InteropServices.DllImport("user32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)] private static extern IntPtr FindWindow(string lpClassName, string lpWindowName); [System.Runtime.InteropServices.DllImport("user32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)] private static extern bool ShowWindow(IntPtr hwnd, int nCmdShow); [System.Runtime.InteropServices.DllImport("user32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)] private static extern bool EnableWindow(IntPtr hwnd, bool enabled); #endregion APIs public static void ShowProgress() { IntPtr h = FindWindow(null, "titleofprogresswindow"); ShowWindow(h, SW_SHOW); EnableWindow(h, true); } public static void HideProgress() { IntPtr h = FindWindow(null, "titleofprogresswindow"); ShowWindow(h, SW_HIDE); EnableWindow(h, false); } </code></pre> http://stackoverflow.com/questions/1355450/control-winforms-app-from-web-app/1355506#1355506 0 Answer by Stefan for Control Winforms App from Web App Stefan 2009-08-31T02:04:22Z 2009-08-31T06:19:57Z <p>I would register a extension for the program. You know, when you klick a xls-file, it starts excel with the url to the xls-file as a parameter, and if you klick on a play-list-file it starts your mediaplayer.</p> <p>You can register an extension for (exemple) ".fro"-files that opens your program with the .fro-file as an parameter.</p> <p>If your program is allready running, it gets the parameter, or else it starts the program and passes the parameter. Your program reads the file and follow the commands in the file.</p> <p>So, for example, if you have a link in your web-app that should make your winform-program to open up a customer and show the customer detail, you make your web app have a link <code>&lt;a href="opencustomer.fro"&gt;Open customer&lt;/a&gt;</code>, the file opencustomer.fro could be dynamically created or static.</p> <ol> <li><p>Register the file extension ".fro" to open your .Net program. (example following)</p></li> <li><p>Make web site create .fro-files with commands in them.</p></li> <li><p>Make your .Net program to single-instance application following this tutorial ( <a href="http://visualstudiomagazine.com/articles/2007/11/01/simplify-application-instancing.aspx" rel="nofollow">http://visualstudiomagazine.com/articles/2007/11/01/simplify-application-instancing.aspx</a> ) . So if a second instance is started, it sends the command$ to the first instance via named pipes.</p></li> <li><p>Make your .Net program download the .fro-file and interpret the command in the file. That could be as simple as just containing a customernumber to open.</p></li> </ol> <p>I found this vb.net example about register filetypes, it should not be hard to convert or google C#-version of it: <a href="http://bytes.com/topic/net/answers/519230-vb-net-associate-file-program" rel="nofollow">http://bytes.com/topic/net/answers/519230-vb-net-associate-file-program</a></p> <pre><code>Public Class Example Public Sub RegisterType() Dim fileReg As New FileTypeRegistrar With fileReg .FullPath = Path_To_Executable .FileExtension = Extension_To_Register .ContentType = "application/" &amp; Your_Description .IconIndex = Icon_Index_In_Application .IconPath = Path_To_Executable .ProperName = Name_Of_Executable .CreateType() End With End Sub End Class Public Class FileTypeRegistrar #Region "Properties &amp; Property Variables" Private _ProperName As String Public Property ProperName() As String Get Return _ProperName End Get Set(ByVal Value As String) _ProperName = Value End Set End Property Private _ContentType As String Public Property ContentType() As String Get Return _ContentType End Get Set(ByVal Value As String) _ContentType = Value End Set End Property Private _FullPath As String Public Property FullPath() As String Get Return _FullPath End Get Set(ByVal Value As String) _FullPath = Value End Set End Property Private _FileExtension As String Public Property FileExtension() As String Get Return _FileExtension End Get Set(ByVal Value As String) _FileExtension = Value.Replace(".", "") End Set End Property Private _IconPath As String Public Property IconPath() As String Get Return _IconPath End Get Set(ByVal Value As String) _IconPath = Value End Set End Property Private _IconIndex As Integer Public Property IconIndex() As Integer Get Return _IconIndex End Get Set(ByVal Value As Integer) _IconIndex = Value End Set End Property #End Region #Region "Public Methods" Public Sub CreateType() Dim fileName As String = Path.GetFileNameWithoutExtension(FullPath) Dim Ext As String = "." &amp; FileExtension.ToLower Dim extKey As RegistryKey = Registry.ClassesRoot.CreateSubKey(Ext) extKey.SetValue("", fileName) extKey.SetValue("Content Type", ContentType) extKey.Close() Dim mainKey As RegistryKey = Registry.ClassesRoot.CreateSubKey(fileName) Dim defIconKey As RegistryKey = mainKey.CreateSubKey("DefaultIcon") defIconKey.SetValue("", IconPath &amp; ", " &amp; IconIndex) defIconKey.Close() Dim shellKey As RegistryKey = mainKey.CreateSubKey("shell") Dim OpenKey As RegistryKey = shellKey.CreateSubKey("Open") Dim cmdKey As RegistryKey = OpenKey.CreateSubKey("command") cmdKey.SetValue("", """" &amp; FullPath &amp; " %1""") cmdKey.Close() OpenKey.Close() shellKey.Close() mainKey.Close() End Sub Public Sub DeleteType() Dim fileName As String = Path.GetFileNameWithoutExtension(FullPath) Dim Ext As String = "." &amp; FileExtension.ToLower Registry.ClassesRoot.DeleteSubKey(Ext) Registry.ClassesRoot.DeleteSubKey(fileName) End Sub #End Region End Class </code></pre> http://stackoverflow.com/questions/1355521/no-maxx-y-function-in-access/1355552#1355552 1 Answer by Stefan for No max(x,y) function in Access Stefan 2009-08-31T02:26:03Z 2009-08-31T02:26:03Z <p>Because they probably thought that you would use DMAX and DMIN or the sql MAX and only working with the database in access? </p> <p>Im also curious about why.. Its seems like a overkill to have to create a temp-table and add form values to the table and then run a DMAX or MAX-query on the table to get the result...</p> http://stackoverflow.com/questions/1355450/control-winforms-app-from-web-app/1355520#1355520 0 Answer by Stefan for Control Winforms App from Web App Stefan 2009-08-31T02:11:16Z 2009-08-31T02:11:16Z <p>Another way to controll winformclients would be to add a webservice on the website, and let your clients poll the webservice every 2-4 seconds to see if a waiting command exists for the particularry client to execute.</p> <p>Add a table to the database clientid, command, ClientDone</p> <p>And when a logged in user clicks a link in the web app that should controll the winformclient, add a row in the table with the clientid and the commmand.</p> <p>If the client is logged in in the winform program the winform program will poll the webservice for newly stored commands for that client. When the client has performed the command its marked as done (or just delete the row from the database)</p> <p>This will assume that a user logged in on the website has same clientid/userid when logged in at the winform program.</p> http://stackoverflow.com/questions/1355338/fed-up-with-my-programming-job-what-should-i-do/1355462#1355462 5 Answer by Stefan for Fed up with my programming job: What should I do? Stefan 2009-08-31T01:45:13Z 2009-08-31T01:45:13Z <p>The day has 24 hours, only ~8 of them is for your work. For me, if the projects I'm doing at work are boring and/or stressful, then I tend to have fun private projects I spend the evenings and nights with. </p> <p>If my work projects are fun and challenging, then it seems like I spend the nights in the bed with my wife instead. </p> <p>Either way, I'm happy. ;)</p> http://stackoverflow.com/questions/1339435/help-with-loops-in-vb/1339641#1339641 0 Answer by Stefan for help with loops in vb Stefan 2009-08-27T08:26:33Z 2009-08-27T08:43:16Z <p>No need for inner and outer loop. This will do it:<br /> Q1:</p> <pre><code> For p As Integer = 1 To 5 MsgBox("".PadRight(p, CChar((p Mod 2).ToString))) Next </code></pre> <p>Q2:</p> <pre><code> Dim pre As String = "" For p As Integer = 0 To 3 pre &amp;= (p + 1).ToString MsgBox(pre &amp; "".PadRight(4 - p, CChar(Chr(65 + p)))) Next </code></pre> <p>PS. Please tell us your teachers reaction to "your" solution. ;)</p> http://stackoverflow.com/questions/1332916/converting-vb-net-to-c/1332929#1332929 3 Answer by Stefan for Converting vb.net to c# Stefan 2009-08-26T07:28:21Z 2009-08-26T18:59:56Z <p>First, the provided code will not compile because of it calling a method <strong>EnableTaskManager()</strong> that does not exists in the example code. But just to go around that problem, I changed it to call the Enable-function that DOES exist in the example.</p> <p>The provided code did also use a variable that was not declared anywhere in the code: <strong>m_taskManagerValue</strong>, to get around that I declaraed that as an int=0 in my example.</p> <p>Also, the function LowLevelHook did not return a value on one codepath so I just added so it returned 0 in that case (I dont know what it suppose to return there)</p> <p>And finally, C# didn't like the sub Finally with the dispose so I just deleted it. ;)</p> <p>Well. After that fixed I converted the code to C# here <a href="http://www.developerfusion.com/tools/convert/vb-to-csharp/" rel="nofollow">http://www.developerfusion.com/tools/convert/vb-to-csharp/</a> </p> <p>I fixed the errors where it complained about comparing a int with a non-int by ctype the value to int.</p> <p>And then I compiled the vb-version and looked in it with reflection to get the SetWindowHookEx-row to work.</p> <p>And voila, this will compile:</p> <pre><code>using System; using System.Configuration; using System.Xml; using System.Runtime.InteropServices; using System.Windows.Forms; using Microsoft.Win32; using System.Reflection; using Microsoft.VisualBasic; public class Kiosk1 : IDisposable { #region "IDisposable" // Implementing IDisposable since it might be possible for // someone to forget to cause the unhook to occur. I didn't really // see any problems with this in testing, but since the SDK says // you should do it, then here's a way to make sure it will happen. public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } int m_taskManagerValue=0; protected virtual void Dispose(bool disposing) { if (disposing) { } // Free other state (managed objects). if (m_hookHandle != 0) { UnhookWindowsHookEx(m_hookHandle); m_hookHandle = 0; } if (m_taskManagerValue &gt; -1) { Enable(); } } #endregion public static void main() { } private delegate int LowLevelHookDelegate(int code, int wParam, ref KeyboardLowLevelHookStruct lParam); private const int Hc_Action = 0; private const int WindowsHookKeyboardLowLevel = 13; private const int LowLevelKeyboardHfAltDown = 0x20; private enum WindowsMessage { KeyDown = 0x100, KeyUp = 0x101, SystemKeyDown = 0x104, SystemKeyUp = 0x105 } private enum Vk { Tab = 0x9, Escape = 0x1b, Shift = 0x10, Control = 0x11, Menu = 0x12, // ALT key. Alt = 0x12, Pause = 0x13, LeftWindows = 0x5b, // Left Windows key (Microsoft® Natural® keyboard). RightWindows = 0x5c, // Right Windows key (Natural keyboard). Applications = 0x5d // Applications key (Natural keyboard). } [StructLayout(LayoutKind.Sequential)] private struct KeyboardLowLevelHookStruct { public int VirtualKeyCode; public int ScanCode; public int Flags; public int Time; public UInt32 ExtraInfo; } [DllImport("user32", EntryPoint = "SetWindowsHookExA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)] private static extern int SetWindowsHookEx(int hook, LowLevelHookDelegate address, int mod, int threadId); [DllImport("user32", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)] private static extern int CallNextHookEx(int handle, int code, int wParam, KeyboardLowLevelHookStruct lParam); [DllImport("user32", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)] private static extern int UnhookWindowsHookEx(int handle); [DllImport("user32", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)] private static extern int GetAsyncKeyState(int virtualKey); private int m_hookHandle; private int LowLevelHook(int code, int wParam, ref KeyboardLowLevelHookStruct lParam) { if (code == Hc_Action) { if ((wParam == (int)WindowsMessage.KeyDown) || (wParam == (int)WindowsMessage.SystemKeyDown) || (wParam == (int)WindowsMessage.KeyUp) || (wParam == (int)WindowsMessage.SystemKeyUp)) { //Dim alt As Boolean = (GetAsyncKeyState(Vk.Alt) And &amp;H8000) = &amp;H8000 //Dim shift As Boolean = (GetAsyncKeyState(Vk.Shift) And &amp;H8000) = &amp;H8000 bool control = (GetAsyncKeyState((int)Vk.Control) &amp; 0x8000) == 0x8000; bool suppress = false; // CTRL+ESC if (control &amp;&amp; lParam.VirtualKeyCode == (int)Vk.Escape) { suppress = true; } // ALT+TAB if ((lParam.Flags &amp; LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown &amp;&amp; lParam.VirtualKeyCode == (int)Vk.Tab) { suppress = true; } // ALT+ESC if ((lParam.Flags &amp; LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown &amp;&amp; lParam.VirtualKeyCode == (int)Vk.Escape) { suppress = true; } // Left Windows button. if (lParam.VirtualKeyCode == (int)Vk.LeftWindows) { suppress = true; MessageBox.Show("Pressed Left windows key"); } // Right Windows button. if (lParam.VirtualKeyCode == (int)Vk.RightWindows) { suppress = true; MessageBox.Show("Pressed Right windows key"); } // Applications button. if (lParam.VirtualKeyCode == (int)Vk.Applications) { suppress = true; } if (suppress) { return 1; } } return CallNextHookEx(m_hookHandle, code, wParam, lParam); } return 0; } public void Disable() { if (m_hookHandle == 0) { m_hookHandle = SetWindowsHookEx(WindowsHookKeyboardLowLevel, new LowLevelHookDelegate(this.LowLevelHook), Marshal.GetHINSTANCE(Assembly.GetExecutingAssembly().GetModules()[0]).ToInt32(), 0); } } public void Enable() { if (m_hookHandle != 0) { UnhookWindowsHookEx(m_hookHandle); m_hookHandle = 0; } } } </code></pre> http://stackoverflow.com/questions/358727/convert-wife-husband-partner-to-a-programmer 17 Convert wife/husband/partner to a programmer. Stefan 2008-12-11T09:01:58Z 2009-08-25T21:48:35Z <p>originally posted by <a href="http://stackoverflow.com/users/19307/stefan">Stefan</a>:</p> <p>How many of you have had the thought of educate your partner and invite him/her to the beautiful world of programming?</p> <p>I once started to give my wife lessons twice a week, It was a competition between me and another programmer, we thought it would be nice to have our wives understand why we work as programmers and also have it as a hobby sitting all night long. Maybe we could get our wives to feel the power too?</p> <p>After a couple of months my wife didn't like the idea any more, it was too hard to understand she thought, same for my friends wife. </p> <p>So now we are thinking of some project that would be too fun for our wives to turn down just to get the spirit up again.</p> <p>It would be nice to hand over a project to my wife, "Can you debug this for me, please? There are some strange error on module xxx." :)</p> <p>Maybe I'm crazy, what do you think?</p> http://stackoverflow.com/questions/1303317/simulating-a-where-clause-in-a-for-each-loop-in-vb-net/1303399#1303399 1 Answer by Stefan for Simulating a 'Where' clause in a For Each loop in VB.NET Stefan 2009-08-20T00:47:02Z 2009-08-20T13:49:31Z <p>With LINQ:</p> <pre><code>For Each p As Person In (From pers In Persons Where pers.Firstname = "Stefan") 'Only handle persons with first name "Stefan" MsgBox(p.LastName) Next End Sub </code></pre> http://stackoverflow.com/questions/1256549/are-memory-addresses-for-a-specific-program-consistent-between-computers/1256703#1256703 0 Answer by Stefan for Are memory addresses for a specific program consistent between computers? Stefan 2009-08-10T19:18:07Z 2009-08-10T19:18:07Z <p>For media apps, you are often better off with apis that search for the windows/buttons/controls you are out for by enumerating the childwindows in the app until you find the button you want. When you have the handle to the control, you literally have the power. </p> <p>Many media apps (winamp for example) listen to windows message-events so you can control them just by sending a well formatted sendmessage/postmessage to the application. But even if the application does not, you can just find the handle to the button and post a click-event to the button or something like that.</p> <p>Not that this answer was an answer to the memory-question, but I have built many apps that controlled other media apps so thats my angle of the "control a media app"-part of the question.</p> http://stackoverflow.com/questions/268555/whats-your-most-fantastic-line-of-code-optimization/268669#268669 10 Answer by Stefan for what's your most fantastic line of code (optimization) Stefan 2008-11-06T13:24:46Z 2009-08-09T22:55:30Z <p>Im just a happy coder if my fellows stop doing this:</p> <pre><code> If IsEnabled=true then FirstNameTextBox.Enabled=True LastNameTextBox.Enabled=True Else FirstNameTextBox.Enabled=False LastNameTextBox.Enabled=False End if </code></pre> <p>And instead Do this:</p> <pre><code> FirstNameTextBox.Enabled=IsEnabled LastNameTextBox.Enabled=IsEnabled </code></pre> <p>;-)</p> http://stackoverflow.com/questions/457733/implications-of-full-backup-of-running-sql-server-database-every-4th-minute 2 Implications of full backup of running SQL Server database every 4th minute Stefan 2009-01-19T14:27:24Z 2009-08-03T14:32:57Z <p>I have a customer that has set up a full backup of the database to an network path every 4:th minute on a heavy used database. I strongly recommend the customer to not to do that and instead do a transactional backup.</p> <p>But what is the possibly bad things that can happened when doing a full backup in this way? Other than that the backup will never have correct data because of the database is in heavy use while doing the backup. And the workload of the server.</p> <p>I have had a couple of sql-related problems (webservice&lt;-sqlconnection->sql) with this customer and want to know technically if this backup scenario can be part of the problem?</p> <p>Of course I will start to investigate this by stopping the backup while testing and look at eventlogs and so on. But Im curious about if anyone direct can say "NOOO, this will lock the X and throw the Y and is BAD" or something. ;)</p> http://stackoverflow.com/questions/1211948/best-method-for-implementing-self-updating-software/1212006#1212006 2 Answer by Stefan for Best method for implementing Self-Updating Software Stefan 2009-07-31T11:20:39Z 2009-07-31T11:20:39Z <p>Im using the second method without any problems. Just make sure the downloaded assembly was correctly downloaded. ;)</p> <p>Run Update.exe and let it do this:<br /> 1. download the new update.exe as update.ex_<br /> 2. rename the update.exe to update.bak (you can rename it, but not overwrite it)<br /> 3. rename the update.ex_ to update.exe<br /> 4. restart update.exe </p> <p>Im doing this with no problems at all so its tested and are running in live environment in about 400 customers as we speak. </p> http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced/596325#596325 Comment by Stefan on What is the funniest bug you've ever experienced? Stefan 2009-11-17T18:41:37Z 2009-11-17T18:41:37Z This is great humour! http://stackoverflow.com/questions/283949/what-enhancements-do-you-want-for-your-programming-language/284067#284067 Comment by Stefan on What enhancements do you want for your programming language? Stefan 2009-11-14T02:55:02Z 2009-11-14T02:55:02Z Sounds interresting for game loops. I can see more useful tweeks in that area. http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732321#1732321 Comment by Stefan on What are some questions to ask when choosing between two equal programmers? Stefan 2009-11-14T02:46:30Z 2009-11-14T02:46:30Z It was a long long loooong time since I read a programming book. Heck I dont even have time to read any fiction books anymore. I do &quot;cutting edge&quot; programming everyday and are learning by 1) long nights studying online manuals and testing code, 2) blogs, 3) SO, 4) examples from hardware companys and so on. But not a single book in 5 years at least. So I guess Im out of luck if I would need a job. ;) (not that I think thats the case, but it seems so from this answer) http://stackoverflow.com/questions/1664514/how-to-insert-values-into-vb-net-dictionary-on-instantiation/1664601#1664601 Comment by Stefan on How to insert values into VB.NET Dictionary on instantiation? Stefan 2009-11-03T01:00:58Z 2009-11-03T01:00:58Z As Joel Coehoorn says in his answer, it seems like the FROM keyword has been pulled out of VB2008. I strongly remember I have used this before, but maybe I only tried Array-inizializers. Well. Here are the link I got my information from anyway: <a href="http://msdn.microsoft.com/en-us/library/dd293617(VS.100).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1624615/how-to-generate-a-winform-application-with-delphi-and-net-respectively/1624684#1624684 Comment by Stefan on How to generate a winform application with delphi and .Net respectively? Stefan 2009-10-26T14:07:31Z 2009-10-26T14:07:31Z @mask: Yes, <a href="http://dev.mysql.com/doc/refman/5.0/en/connector-net.html" rel="nofollow">dev.mysql.com/doc/refman/&hellip;</a> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175281#175281 Comment by Stefan on What's the most egregious pop culture perversion of programming? Stefan 2009-10-24T13:23:36Z 2009-10-24T13:23:36Z The best is the &quot;override&quot; command that must exist in every system. If you cant acceess a resource, just enter &quot;override&quot; after the &quot;access denied&quot;-prompt. http://stackoverflow.com/questions/361002/any-patterns-for-modelling-board-games/361254#361254 Comment by Stefan on Any patterns for modelling board games? Stefan 2009-10-23T12:55:02Z 2009-10-23T12:55:02Z Basic, Basica, QB, QuickBasic and so on. ;) http://stackoverflow.com/questions/1579230/how-do-you-deal-with-the-early-signs-of-burnout/1579301#1579301 Comment by Stefan on How do you deal with the early signs of burnout? Stefan 2009-10-16T19:46:25Z 2009-10-16T19:46:25Z Thats like reading my on philosofy. +1. http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it/1553097#1553097 Comment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ? Stefan 2009-10-12T11:22:32Z 2009-10-12T11:22:32Z And to clarify, of course you can have spaces in the regpath, but not in wrong places. ;) http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it/1553097#1553097 Comment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ? Stefan 2009-10-12T08:12:43Z 2009-10-12T08:12:43Z What I can see it does not do anyting Vista specific. It should work on XP too. http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it Comment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ? Stefan 2009-10-12T07:01:30Z 2009-10-12T07:01:30Z Helen, that is an answer, not a comment.. ;) http://stackoverflow.com/questions/1502712/programmable-stand-alone-button-hardwaresoftware/1502770#1502770 Comment by Stefan on Programmable stand alone Button (hardware+software) Stefan 2009-10-01T09:30:57Z 2009-10-01T09:30:57Z I have seen that site before. And although it sure has what I want, there is no specifik information about what I need for my problem. I dont want to learn everything about microcontrollers, just solve the one button problem. So if there are a place that describes how to use that microcontroller board to send info to computer when a button is pressed then its what I want. But thanks anyway. http://stackoverflow.com/questions/1456608/how-do-i-differentiate-between-beta-versions-and-normal-versions/1457113#1457113 Comment by Stefan on How do I differentiate between beta versions and normal versions? Stefan 2009-09-21T22:38:04Z 2009-09-21T22:38:04Z +1 Totally agree. Simple and yet so powerful that any user understand exact what is going on. http://stackoverflow.com/questions/1446579/small-company-of-150-employees-needs-inexpensive-issue-tracking-system/1446590#1446590 Comment by Stefan on Small company of 150 employees needs inexpensive Issue Tracking system. Stefan 2009-09-18T20:14:32Z 2009-09-18T20:14:32Z Second that. We use Gemini. It's a good system by itself, but also, if you have a microsoft environment and uses MSSQL then ite easy to implement for example pages in your intranet that communicate direct to the gemini-db and other things. http://stackoverflow.com/questions/1421518/creating-my-own-word-wrapper-for-string/1421691#1421691 Comment by Stefan on creating my own Word wrapper for string Stefan 2009-09-14T14:26:05Z 2009-09-14T14:26:05Z Yes. I just throwed it together so its just a &quot;prototype&quot;. But it should not be a hard task to fix it up from there.