User Stefan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:56:43Zhttp://stackoverflow.com/feeds/user/19307http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue/1766841#17668412Answer by Stefan for Resharper Suggestion Color IssueStefan2009-11-19T21:53:57Z2009-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#17659091Answer by Stefan for Cancelling Windows Forms EventsStefan2009-11-19T19:28:06Z2009-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#16646011Answer by Stefan for How to insert values into VB.NET Dictionary on instantiation?Stefan2009-11-03T00:45:12Z2009-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#16101450Answer by Stefan for How can a .net program update itself?Stefan2009-10-22T21:41:03Z2009-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-act0How do I read videoDuration of a .flv-file from *.Net without using the flash-activeX?Stefan2009-05-06T01:18:43Z2009-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&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-hardwaresoftware0Programmable stand alone Button (hardware+software)Stefan2009-10-01T08:47:52Z2009-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#15535170Answer 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?Stefan2009-10-12T09:13:22Z2009-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#15534751Answer by Stefan for Change ASP.NET generated Web Service Client GUIStefan2009-10-12T09:03:23Z2009-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#15530971Answer by Stefan for I found this Reboot Vista.vbs script. Can you help with it ?Stefan2009-10-12T06:59:51Z2009-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#15162063Answer by Stefan for Take picture using webcam from command lineStefan2009-10-04T11:45:27Z2009-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#46230110Answer by Stefan for Get File Icon used by ShellStefan2009-01-20T17:40:42Z2009-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#147030410Answer by Stefan for What's the worst security hole you've ever seen?Stefan2009-09-24T07:54:22Z2009-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#147033865Answer by Stefan for What's the worst security hole you've ever seen?Stefan2009-09-24T08:06:22Z2009-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#14260430Answer by Stefan for Can someone provide me a specification of 32 bit BMP image format?Stefan2009-09-15T09:07:30Z2009-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#14226582Answer by Stefan for Launch External Process With Time To LiveStefan2009-09-14T16:39:34Z2009-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#14216911Answer by Stefan for creating my own Word wrapper for stringStefan2009-09-14T13:54:57Z2009-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 &= "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" & vbCrLf & vbCrLf
Source &= "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 &= newline
wrk = ""
ElseIf word = "" Then
Else
If Len(wrk & word) <= maxlength Then
wrk &= " " & word
Else
ret &= wrk & newline
wrk = word & " "
End If
End If
Next
If wrk <> "" Then ret &= wrk
Return ret
End Function
</code></pre>
http://stackoverflow.com/questions/1377172/create-wmv-file-from-code1Create wmv-file from code?Stefan2009-09-04T04:01:32Z2009-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#13578240Answer by Stefan for How can I prevent the Print Progress dialog appearing when performing a print previewStefan2009-08-31T14:46:36Z2009-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#13555060Answer by Stefan for Control Winforms App from Web AppStefan2009-08-31T02:04:22Z2009-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><a href="opencustomer.fro">Open customer</a></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/" & 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 & 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 = "." & 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 & ", " & 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("", """" & FullPath & " %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 = "." & 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#13555521Answer by Stefan for No max(x,y) function in AccessStefan2009-08-31T02:26:03Z2009-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#13555200Answer by Stefan for Control Winforms App from Web AppStefan2009-08-31T02:11:16Z2009-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#13554625Answer by Stefan for Fed up with my programming job: What should I do?Stefan2009-08-31T01:45:13Z2009-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#13396410Answer by Stefan for help with loops in vbStefan2009-08-27T08:26:33Z2009-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 &= (p + 1).ToString
MsgBox(pre & "".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#13329293Answer by Stefan for Converting vb.net to c#Stefan2009-08-26T07:28:21Z2009-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 > -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 &H8000) = &H8000
//Dim shift As Boolean = (GetAsyncKeyState(Vk.Shift) And &H8000) = &H8000
bool control = (GetAsyncKeyState((int)Vk.Control) & 0x8000) == 0x8000;
bool suppress = false;
// CTRL+ESC
if (control && lParam.VirtualKeyCode == (int)Vk.Escape)
{
suppress = true;
}
// ALT+TAB
if ((lParam.Flags & LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown && lParam.VirtualKeyCode == (int)Vk.Tab)
{
suppress = true;
}
// ALT+ESC
if ((lParam.Flags & LowLevelKeyboardHfAltDown) == LowLevelKeyboardHfAltDown && 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-programmer17Convert wife/husband/partner to a programmer.Stefan2008-12-11T09:01:58Z2009-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#13033991Answer by Stefan for Simulating a 'Where' clause in a For Each loop in VB.NETStefan2009-08-20T00:47:02Z2009-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#12567030Answer by Stefan for Are memory addresses for a specific program consistent between computers?Stefan2009-08-10T19:18:07Z2009-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#26866910Answer by Stefan for what's your most fantastic line of code (optimization)Stefan2008-11-06T13:24:46Z2009-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-minute2Implications of full backup of running SQL Server database every 4th minuteStefan2009-01-19T14:27:24Z2009-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<-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#12120062Answer by Stefan for Best method for implementing Self-Updating SoftwareStefan2009-07-31T11:20:39Z2009-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#596325Comment by Stefan on What is the funniest bug you've ever experienced?Stefan2009-11-17T18:41:37Z2009-11-17T18:41:37ZThis is great humour! http://stackoverflow.com/questions/283949/what-enhancements-do-you-want-for-your-programming-language/284067#284067Comment by Stefan on What enhancements do you want for your programming language?Stefan2009-11-14T02:55:02Z2009-11-14T02:55:02ZSounds 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#1732321Comment by Stefan on What are some questions to ask when choosing between two equal programmers?Stefan2009-11-14T02:46:30Z2009-11-14T02:46:30ZIt 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 "cutting edge" 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#1664601Comment by Stefan on How to insert values into VB.NET Dictionary on instantiation?Stefan2009-11-03T01:00:58Z2009-11-03T01:00:58ZAs 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/…</a>http://stackoverflow.com/questions/1624615/how-to-generate-a-winform-application-with-delphi-and-net-respectively/1624684#1624684Comment by Stefan on How to generate a winform application with delphi and .Net respectively?Stefan2009-10-26T14:07:31Z2009-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/…</a>http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175281#175281Comment by Stefan on What's the most egregious pop culture perversion of programming?Stefan2009-10-24T13:23:36Z2009-10-24T13:23:36ZThe best is the "override" command that must exist in every system. If you cant acceess a resource, just enter "override" after the "access denied"-prompt.http://stackoverflow.com/questions/361002/any-patterns-for-modelling-board-games/361254#361254Comment by Stefan on Any patterns for modelling board games?Stefan2009-10-23T12:55:02Z2009-10-23T12:55:02ZBasic, Basica, QB, QuickBasic and so on. ;)http://stackoverflow.com/questions/1579230/how-do-you-deal-with-the-early-signs-of-burnout/1579301#1579301Comment by Stefan on How do you deal with the early signs of burnout?Stefan2009-10-16T19:46:25Z2009-10-16T19:46:25ZThats like reading my on philosofy. +1.http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it/1553097#1553097Comment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ?Stefan2009-10-12T11:22:32Z2009-10-12T11:22:32ZAnd 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#1553097Comment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ?Stefan2009-10-12T08:12:43Z2009-10-12T08:12:43ZWhat 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-itComment by Stefan on I found this Reboot Vista.vbs script. Can you help with it ?Stefan2009-10-12T07:01:30Z2009-10-12T07:01:30ZHelen, that is an answer, not a comment.. ;)http://stackoverflow.com/questions/1502712/programmable-stand-alone-button-hardwaresoftware/1502770#1502770Comment by Stefan on Programmable stand alone Button (hardware+software)Stefan2009-10-01T09:30:57Z2009-10-01T09:30:57ZI 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#1457113Comment by Stefan on How do I differentiate between beta versions and normal versions?Stefan2009-09-21T22:38:04Z2009-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#1446590Comment by Stefan on Small company of 150 employees needs inexpensive Issue Tracking system.Stefan2009-09-18T20:14:32Z2009-09-18T20:14:32ZSecond 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#1421691Comment by Stefan on creating my own Word wrapper for stringStefan2009-09-14T14:26:05Z2009-09-14T14:26:05ZYes. I just throwed it together so its just a "prototype". But it should not be a hard task to fix it up from there.