Search results for query: *

  1. A

    Question App wont run on WinXP

    Hey Conegjo, I already had .NET Framework 3.5 installed. As I have posted above, the problem was something else. Its been RESOLVED. Thanks!
  2. A

    Question App wont run on WinXP

    It worked! Thank you Sir! Your solution worked perfectly. On getting the UnhandledException to store the Error in the Event Log, I was able to find out what I had done wrong. The problem was pretty obscure actually. In the Properties->Application->Assembly Information box, I had made some...
  3. A

    Question App wont run on WinXP

    Thanks for the reply Sir! Can you please tell me how to do what you just told me. I don't have much experience with VB, and so don't know where to do that.
  4. A

    Question App wont run on WinXP

    Hi I coded a pretty basic VB.net app with .NET framework 3.5 in VS 2012 on a Windows 8 Pro 64-bit machine. The app doesn't use any database connectivity or any other prerequsite. I built it for x86 CPU configuration. I don't need to use ClickOnce to deploy since the .exe in the Release folder is...
  5. A

    Controling a group of Buttons using Arrow Keys

    Okay, I got a partial solution by digging deep in the forum. Here's the code: Protected Overrides Function ProcessDialogKey(ByVal keyData As System.Windows.Forms.Keys) As Boolean Select Case keyData Case Keys.Left Select Case Me.ActiveControl.Name...
  6. A

    Resolved Remove Tab Index Funcitonality From Left/Right Arrows

    Well, thanks... My Problem (http://www.vbdotnetforums.com/windows-forms/58017-controling-group-buttons-using-arrow-keys.html) was almost solved.. still working to get it absolutely right... Your code helped a lot!
  7. A

    Controling a group of Buttons using Arrow Keys

    Hi, I'm new to Vb.net programming. I designed a simple form in which I put a group of buttons in a Panel. The panel is initially not Enabled. I added a Start button which Enabled the Panel. Next, I want to use the Arrow Keys to navigate between the buttons in the Panel. I have tried searching...
Back
Top