Search results for query: *

  • Users: JA12
  • Content: Threads
  • Order by date
  1. J

    Reference in the manifest does not match the identity of the downloaded assembly

    I've built an application in VB.NET Visual Studio 2012 Express .NET Framework 4.5 Windows 8 I'm trying to deploy on Windows XP .NET Framework 3.5 I've so far managed to get the thing to actually start installing. It's downloaded and installed Windows Installer 4.5 and had a reboot. I'm now...
  2. J

    Unable to open database. (using Jet/ACE Providers) connection string?

    I'm trying to open a 2003 Access Database using OLEDB. I initially tried: con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=database.mdb;" & "User ID=;" &...
  3. J

    Question Question about Select() method

    I'm trying to do something that doesn't seem possible. All form controls seem to have the .select() method. There also doesn't seem to be a Selection option With Selection I'll explain what I'm trying to do. I have a very complicated set of controls that I want to create as on a template...
  4. J

    Problem getting WMP to play sound file

    Hopefully this will be my last problem to be solved. Here's the relevant snips of the code I'm dynamically generating a form from an XML file, the controls are a repetitive group of buttons to control the sound file. Module General Imports WMPLib End Module Form Player Dim WithEvents oWMP...
  5. J

    I'm trying to create a generic event handler

    I've got a form with multiple controls, including buttons. The form is dynamically generated so all the active controls have generated unique names. I'm trying to generate a generic MouseClick handler that captures all button clicks, no matter what button is clicked. My major problem is that...
  6. J

    Question Problem setting Location.Y of a GroupBox

    I'm dynamically generating a form using a basic 1 page TabControl. The TabPage is blank. Up to two GroupBoxes are added to the TabPage, when more "Columns" are needed, then a new TabPage is added. I've got a problem. No matter what I do, whether I use isolating 2 Panel/ScrollingControl...
  7. J

    Question Dynamically creating controls on form, but not visible.

    I have a basic form "template" that I load with controls from an XML file. The structure of the "template" is TabControl 1 TabPage 2 GroupBox Columns on TabPage. The dynamic Controls that are loaded are 1 (or more) GroupBox containers 1 (or more) GroupBox container with (6 buttons, 4...
Back
Top