Click here to Skip to main content
15,912,400 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionDatagridview manipulate Pin
Tarik EL JABIRI1-Apr-15 6:01
Tarik EL JABIRI1-Apr-15 6:01 
QuestionCrystal Reports Developer Edtion With VS 2013 Pin
Member 235100131-Mar-15 8:47
Member 235100131-Mar-15 8:47 
AnswerRe: Crystal Reports Developer Edtion With VS 2013 Pin
Richard Andrew x6431-Mar-15 9:42
professionalRichard Andrew x6431-Mar-15 9:42 
QuestionVB-SCRIPT -GENERATION OF HTML OUTPUT PROBLEM Pin
sasekumarmb31-Mar-15 3:17
sasekumarmb31-Mar-15 3:17 
AnswerRe: VB-SCRIPT -GENERATION OF HTML OUTPUT PROBLEM Pin
Eddy Vluggen31-Mar-15 7:37
professionalEddy Vluggen31-Mar-15 7:37 
QuestionProcess Not Completely Running As Automated Task Pin
BoOnTheGo30-Mar-15 11:10
BoOnTheGo30-Mar-15 11:10 
AnswerRe: Process Not Completely Running As Automated Task Pin
Dave Kreskowiak30-Mar-15 11:40
mveDave Kreskowiak30-Mar-15 11:40 
QuestionNeed to apply dragging event on Columns and Rows on TableLayoutPanel during runtime in user defined IDE Pin
shivmymail22-Mar-15 2:40
shivmymail22-Mar-15 2:40 
AnswerRe: Need to apply dragging event on Columns and Rows on TableLayoutPanel during runtime in user defined IDE Pin
Eddy Vluggen22-Mar-15 3:32
professionalEddy Vluggen22-Mar-15 3:32 
GeneralRe: Need to apply dragging event on Columns and Rows on TableLayoutPanel during runtime in user defined IDE Pin
shivmymail22-Mar-15 23:19
shivmymail22-Mar-15 23:19 
GeneralRe: Need to apply dragging event on Columns and Rows on TableLayoutPanel during runtime in user defined IDE Pin
Eddy Vluggen22-Mar-15 23:31
professionalEddy Vluggen22-Mar-15 23:31 
QuestionForm Load Runs Events Pin
BobbyStrain21-Mar-15 14:58
BobbyStrain21-Mar-15 14:58 
AnswerRe: Form Load Runs Events Pin
Richard Andrew x6421-Mar-15 15:51
professionalRichard Andrew x6421-Mar-15 15:51 
GeneralRe: Form Load Runs Events Pin
BobbyStrain21-Mar-15 15:58
BobbyStrain21-Mar-15 15:58 
AnswerRe: Form Load Runs Events Pin
Richard Andrew x6421-Mar-15 16:14
professionalRichard Andrew x6421-Mar-15 16:14 
GeneralRe: Form Load Runs Events Pin
BobbyStrain22-Mar-15 6:00
BobbyStrain22-Mar-15 6:00 
QuestionADORecordset different result using ODBC and SQLNCLI Pin
equelna21-Mar-15 1:35
equelna21-Mar-15 1:35 
AnswerRe: ADORecordset different result using ODBC and SQLNCLI Pin
Dave Kreskowiak21-Mar-15 4:54
mveDave Kreskowiak21-Mar-15 4:54 
QuestionGive to my program the possibility to detect if one of required assemblies is not found Pin
dilkonika19-Mar-15 10:07
dilkonika19-Mar-15 10:07 
AnswerRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
Dave Kreskowiak19-Mar-15 10:10
mveDave Kreskowiak19-Mar-15 10:10 
GeneralRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
dilkonika19-Mar-15 10:13
dilkonika19-Mar-15 10:13 
GeneralRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
Dave Kreskowiak19-Mar-15 10:15
mveDave Kreskowiak19-Mar-15 10:15 
AnswerRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
Eddy Vluggen19-Mar-15 10:47
professionalEddy Vluggen19-Mar-15 10:47 
You've got lots of automatic code-checking in the IDE with the references. If you stopped autoloading them and loaded everything using reflection, you'd loose quite some benefits and performance.

Create a "loader"-application; one without any UI at all, that simply checks if all the files mentioned in a text-file are still in the expected locations (and, if you're paranoid, the date of creation, modification and last known hashcode). If all is as expected, Proces.Start your application and exit the loader.

Works better if your users cannot start the main-application directly. There's multiple tricks that you could use to ensure that only the loader-application is used to start your main-executable, like passing a hash of a combination of a known guid and the current date and having the main-app exit if that is incorrect.

If your end-users have administrator-rights, then they can still simply download ILSpy[^] and build their own damn loader Smile | :)
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]

GeneralRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
dilkonika19-Mar-15 14:25
dilkonika19-Mar-15 14:25 
GeneralRe: Give to my program the possibility to detect if one of required assemblies is not found Pin
Eddy Vluggen19-Mar-15 23:48
professionalEddy Vluggen19-Mar-15 23:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.