About 772,000 results
Open links in new tab
  1. How do i work in Visual Basic in VS Code or Mac? - Stack Overflow

    Jan 27, 2023 · Visual Basic is not officially supported on Visual Studio Code or Visual Studio for Mac. However, there are some third-party extensions that you can use to add support for Visual Basic on …

  2. Is there a way to crack the password on an Excel VBA Project?

    Jun 22, 2009 · Replace the old vbaProject.bin file with this new on in the zipped file. Change the file extension back to .xlsm. Open workbook skip through the warning messages. Open up Visual Basic …

  3. How to solve Excel VBA: Compile error in hidden module

    Dec 17, 2020 · Open Excel file which is having issue, press Alt + F11 go into its Visual Basic Editor. From the Tools menu select References ( Note, if references option is disabled in tools menu try …

  4. Random integer in VB.NET - Stack Overflow

    Public Function GetRandom(ByVal Min As Integer, ByVal Max As Integer) As Integer Dim Generator As System.Random = New System.Random() Return Generator.Next(Min, Max) End Function The …

  5. Removing the password from a VBA project - Stack Overflow

    Jun 12, 2018 · How can I programmatically remove a (known) password from an Excel VBA project? To be clear: I want to remove the password from the VBA Project, not the workbook or any worksheets.

  6. Using Visual Studio Code for vb.net - Stack Overflow

    Aug 28, 2018 · I program in vb.net, I'm switching from visual studio big edition to vs code to be more portable. One feature I really miss is intellisense ? Can I make it work with vb.net ? While searching I …

  7. VBA Excel: Module visible in the project explorer, but not the code ...

    Aug 11, 2019 · I see the modules and userform in the project explorer; I can view the code of the userform and one of the modules. However, the other module doesn't show me the code window.

  8. Combine multiple Excel workbooks into a single workbook

    Oct 20, 2014 · The ability to browse and select the files would be nice if this ever changes but if that is too difficult, just indicating the directory path in the Visual Basic code would work. As far as the …

  9. Wait .5 seconds before continuing code VB.net - Stack Overflow

    Wait .5 seconds before continuing code VB.net Asked 12 years, 8 months ago Modified 2 years, 6 months ago Viewed 443k times

  10. vb.net - How to exit an application properly - Stack Overflow

    Nov 25, 2010 · 1 The following code is used in Visual Basic when prompting a user to exit the application: