Search results for query: *

  • Users: JA12
  • Order by date
  1. J

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

    Can anyone else help. I REALLY need to get this installed on XP and running!
  2. J

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

    These are my current settings: Solution (1 project) Security: "Enable ClickOnce security settings" checked "This is a full trust application" selected Signing: "Sign the ClickOnce manifests" "Issued To" INTEL\<my username> "Issued By" INTEL\<my username>...
  3. J

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

    I've only got a single project. Just the one is listed in the Configurations settings.
  4. 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...
  5. J

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

    I'm now not sure there was really anything wrong with my code. The application started working as expected after I rebooted for updates. Go figure!
  6. J

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

    Imports System.IO Imports ADODB Public Class clsAccessDB public function OpenDatabase(byVal pDatabase as string) con = New ADODB.Connection con.Provider = "Microsoft.ACE.OLEDB.12.0" con.Mode = ADODB.ConnectModeEnum.adModeReadWrite con.ConnectionString = "Data...
  7. J

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

    The database has a password but no userid I've currently trimmed it all down to: con = New ADODB.Connection con.Provider = "Microsoft.Jet.OLEDB.4.0" con.ConnectionString = "Data Source=database.mdb;" & "Jet OLEDB:System...
  8. 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=;" &...
  9. 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...
  10. J

    Problem getting WMP to play sound file

    OK, I've got it playing the sound clips now. I've no idea what I did, but whatever it was, it's now fixed... I hate things like that. I don't learn from "magic" solutions!
  11. 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...
  12. J

    I'm trying to create a generic event handler

    Genius. Thanks, that worked with a bit of massaging in getting to the embedded controls.
  13. 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...
  14. J

    Question Problem setting Location.Y of a GroupBox

    I've given up trying to use the GroupBox control as a container, I've wasted too much time on it. I've converted it all to TableLayoutPanel and filled the cells. I've now got it to look how I want it.
  15. 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...
  16. J

    Question Dynamically creating controls on form, but not visible.

    Thanks for the help. I've now got visible controls. They aren't all in the right place, but I can deal with that now I can see them!
  17. 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