Thanks. Unchecked Signing and problem solved.
Didier Cauberghe
Posts
-
Visual Studio 2010 project open in Visual Studio 2019 when run there is a error failed to sign -
Visual Studio 2010 project open in Visual Studio 2019 when run there is a error failed to signHello, I have a program in Visual Basic 2010 32 bit now i want to convert it to visual Studio 2019 since the old 2010 is almost end of life. I have opened the program in Visual studio 2019 there was a message that there are conversions needed and when this was finished i clicked run There is a error --> An error occured while signing. Failed to sign bin\debug\app.publish\projectname.exe . Signtool Error: No Certificates where found that met all the given criteria. The program was written in Visual basic 2005, i imported it in VB 2008 and at last in VB 2010 . The application is running without any problem on a Old Windows XP wich is not connected to Internet so there is no issue of security since it is stand alone but the pc is getting old and need to be replaced so when i want to use the application on new Windows 10 64 bit wich will be on the internet … Is there a solution to import and use the program in 2019 without any special issues ? if not is there a way to do this on a visual studio 2012 ? 2013 2015 ??? otherwise i try with the older version of visual studio If it will be the same what can i do to get it up and running on Visual Studio 2019 what i prefer. Many thanks best regards D.
-
Disable form not fast enoughThanks That is the correct solution. best regards DCA
-
Disable form not fast enoughWhen i have 3 forms mainform , form1 and form2 From the mainform i need to open form1 wich need to be set active (on this time the main form may not be accessable). From the form1 that is on top of the (blocked)mainform i need to open from2 wich comes on top of form1 , so form1 must also be disabled like frmmain. and form2 must be active only. When clicking on the OK button on Form2 the form2 needs to be disapear and frm1 needs to come active again , frmmain is still deactivated until ok isclicked on frm1. My problem was when using form.enabled that is was to slow and the user was clicking to fast so the wrong forms came on top of eachother and where locked . can you help me with this please. thanks. DCA
-
Disable form not fast enoughHello, Can i use the showdialog() with more that 2 forms. So i have the mainform , i opens a second form with frmxxx.showdialog and on that second form there are again a few buttons wich i use to open a 3th form , can i use the same showdialog there ? thanks DCA
-
Is Visual Studio 2010 compatible with older SQL versionsHello, Is Visual Studio 2010 (Visual Basic 2010) compatible with for example SQL 2005 ? I have tried to convert a small application from VB 2008 to VB 2010 this application uses SQL 2005 and wont work directly. I have installed a SQL 2008 and imported the database. The same application is running in VB 2010 with SQL 2008 without any problem. IS this a setting or Service pack that need to be dont to acces SQL 2005 from VB 2010. thanks DCA
-
Disable form not fast enoughHello, I have the following question. I have written a VB 2008 program for registering Rooms in a Hotel. Using a Touch Screen for entering everythin so there is no keyboard and mouse installed on the PC. So i have a buttom for every room on a main screen. When pressing for example room 2 , there is a new form that opens on top of the main form. in the main programm is have frmxxx.show(). In the frmxxx() i have set in the load : FrmMain.enabled = false So it is not possible anymore to click on the main form , so i have blocked that the users can change the form back to the main. Now the problem : sometimes , the user is clicking to fast i think (before the frmMain.enabled = false) and the main window is coming on top of the frmxxx. so the mainform is hiding the smaller frmxxx so the user has a big main form wich is at that time disabled. so the screens are on top. The only way to solve this is with a keyboard CTRL-TAB but because of the missing keyboard (due to the touch screen) it is not possible. I have already tried to set the main form enabled = false before opening the frmxxx. but this is not working when the mainform is still active. I dont want to hide the main form , so i wnat it set to disabled. Does anyone can give me advise on this maybe stupid question. Thanks Best regards DCA