Posts

Showing posts from 2019

VB.NET How to properly close a windows application Form

Image
VB.NET  How to properly close a windows application Form VB.NET How to properly close a windows application Form Requirements Visual Basic .Net (any version) , VB2010 and up recommend .NET FrameWork 4.0 and above recommended How to properly close a windows application Form in VB.NET ? You may close a Form in VB.NET Application [WinForm] by : KeyPress event Before you test this code you need to set the Form Property [KeyPreview] True, from Form Properties Window. The code below will Read Keyboard button [Escape] when clicked and Executes Close() Private Sub MainFrm_KeyPress(sender As Object, e As KeyPressEventArgs) Handles Me.KeyPress         If e.KeyChar = Chr(Keys.Escape) Then             Close()         End If     End Sub Then in the FormClosing() event, we will place a code to display a message [MsgBox] with [Yes, No, Cancel]. If the user clicked [Yes] then it will Close the Form and Ends the application. Private Sub MainFrm_FormClosing(sender A

VB .NET Google Drive Api Source Code Example

Image
CodeProject VB .NET Google Drive Api Source Code Example VB .NET Google Drive Api Source Code Example Requirements Visual Basic 2012 [recommended VS 2015] or above (Visual Studio 2019) from  here Visual Basic previous Example from  here Google Account from  here .NET Framework 4.5+ or above. "Async Programming" Google Drive Api [Google.Apis.Drive.v3] from NuGet  here Open VB 2015 Project in VB 2019  Can I open / migrate  Visual Basic 2015  Project Source Code with Visual Basic 2019 ? The answer is Yes, if you want to more details about VB 2015 to VB 2019 migration, please  read VB.NET Google Drive Api v3 post key points How to use Google Developer Console to create a project. How to Configuring Google Api Console How to Install Google Drive Api v3 from Visual Studio 2015 How to Upload Simple file to Google Drive using Google Drive Api v3 from VB.NET How to Upload Large Files (Resumable Upload) using Google Drive Api v3 from VB.NET Async programming. Project desc

VB .NET DropBox Api Source Code Example

Image
VB .NET DropBox Api Example Create a Desktop Application using VB .NET and Dropbox Api VB .NET Dropbox Api Example Requirements Visual Basic 2010 [recommended VS 2015] or above (Visual Studio 2019) from here Visual Basic previous Example from here Dropbox Account from here .NET Framework 4.0 or above for above VS versions. Dropbox Api for current .NET Framework version of yours Open VB 2015 Project in VB 2019 Can I open / migrate Visual Basic 2015 Project Source Code with Visual Basic 2019 ? The answer is Yes, if you want to more details about VB 2015 to VB 2019 migration, please read Project description I will use the VB.NET example from previous post to add a functionality to it. I will add Backup Database to Dropbox [ToolStripMenuItem] VB.NET Dropbox Database file Backup When a user press [ToolStripMenuItem -> Backup to Dropbox] : The VB.NET application does the following : Checks for Internet Connection Status. Connects to Dropbox Appli

VB.NET Access 2007 Hierarchical TreeView

Image
VB.NET Access 2007 Hierarchical TreeView visual Basic .Net project Hierarchical TreeView VB.NET Hierarchical TreeView  Project requirements VS 2010 / 2015 .Net FrameWork version 4.5 [Properties : Enable -> Make single instance application] Compile option -> Target CPU : x86 MS Access 2007 / 2010 (*.accdb) VB.NET Hierarchical TreeView  Project logic Populate Access 2007 Database Tables with Data from Visual Basic 2015 Form Controls [TextBox] Display or populate TreeView control with Hierarchical Data From Microsoft Access 2007 Database (*.accdb) Display or populate TreeView control (Parents / Child) with search results from Access 2007 and highlight search results. Perform Insert, Update, Search, Delete commands to/from Access 2007 Database from VS 2015 Form Control MenuStrip. VB.NET Hierarchical TreeView Project steps summary Create Microsoft Visual Basic 2015 Project [Desktop Classic] Windows Form Application Project and name it [Hier

Visual Studio 2005 MSDN Download Free

Image
Visual Studio 2005 MSDN Download Free Visual Studio 2015 MSDN Download - If you landed here because you wish to download Visual Studio 2005, you may navigate here to download it directly from Microsoft Page - Older versions of Visual Studio -I f you wish to download Microsoft Visual Studio 2005 MSDN help files for free one file directly from a download link, you may navigate here to directly download view Mediafile.com - What is Visual Studio MSDN anyway ? - According to Microsoft definition, it stands for Microsoft Developer Network is the portion of Microsoft responsible for managing the firm's relationship with developers and testers, such as hardware developers interested in the operating system. - How to obtain MSDN ? - You may subscribe to MSDN or buy a subscription either online on msdn.microsoft.com if you are not an organization. MSDN subscriptions grant you : Versions of Visual Studio will be available for you.  Related frameworks for Visual Studio as well. 

VS2010 Crystal Reports dll older version vs newer version

Image
VS2010 Crystal Reports dll older version vs newer version Crystal Reports Error The problem  - I have Visual Studio 2010 SP1 installed on Windows 10 32 bit, I had CR4VS 13.0.2 working perfectly on both developer machine and client machine with no problems. I downloaded CR4VS sp16 (exe) I uninstalled CR4VS 13.0.2 completely I installed CR4VS sp16 (exe) successfully - Now, each time I open my Visual Basic 2010 Project I notice that the old CrystalDecision dll still has the same version 13.0.2000.0, although in my C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet .... I have the new version of dll. Crystal Reports installed in VS 2015 in Win10 32 bit Crystal Reports 13 sp16 is installed in VS 2010 in Win10 32 bit CrystalDescision with old version 13.0.2 is still in VS 2010 though CrystalDecision with new version 13.0.16 is in place correctly After searching