RtlToFromString - Number Bases
For the most part we're already set for converting to/from number bases in VB6. But sometimes people want something more. Here is a little bit more based upon two API calls:...
View ArticleWindows Logo Glyph
Not sure why you'd ever need it, but I stumbled across this: Code: Option Explicit Private Sub Form_Load() With Label1 .BackColor = vbHighlightText .ForeColor = vbHighlight...
View ArticleVS 2019 [RESOLVED] Select file from listbox show contents in Textbox
I currently have a list of files that are populated from a directory read in listbox1. What I am trying to do is when somebody clicks on one of the files and chooses View (button) it will open the file...
View ArticleVS 2019 [RESOLVED] How to filter out the table columns that are empty & show...
Hello! I'm using an SQLite database. It has several tables, one of them is a table called Year right now it only has 4 columns: January, February, March and April I'm showing this table in a...
View Articleplay a tone sound
Hi! I'm not sure if i'm in the right forum but I'm going to ask anyway. I was wondering if it's possible to play a tone in vb.net like you could in the original basic programming language. I want to...
View Article[RESOLVED] clear the data by vba macro
Hi, Macro will be placed in macro.xlsm & book1.xlsx & Book2.xlsx are located at different place so the path of of both the files should be hardcoded in the macro If cells in column A of sheet1...
View Articledifference between ! and . character in the syntax of the VBA identifieer
Hi there, Greetings from Shank. Am new to the forum. I am in the process of developing a VBA app. The thing is I don't know the difference between the following vb statements. They all behave the same...
View ArticleMVC Core Lessons
I've been doing a lot of development with ASP.NET (C#) as our back-end framework, but everything that I've done has been in .NET (not .NET Core) and I'm working off of a base stack where the...
View ArticleAutomatically Load most recent project at startup?
How the heck do you get the VB6 IDE to automatically open the last project at start-up? I get this annoying window every time. It makes no difference if you check that "show at startup" or not. I know...
View ArticleThere Must be a Better Way
I haven't worked much with C#. The language is familiar enough, but using the language in VS 2019 is not. Therefore, I'm way behind the curve on this and figure that I HAVE to be missing a bunch of...
View ArticleHow to print the information posted on the CwVList object (Included in the...
Hello the community I have a large concern which requires of assistance of the examples, right knowledge how to print the information posted on the CwVList object (Included in the VbWidgets library in...
View Articleevento per combobox
Buonasera, con Vb.net in un form ho riprodotto una tastiera querty virtuale, perchè nella mia applicazione non posso richiamare quella di windows. Tra l' altro userò un pannello touch senza possibilità...
View ArticleTest
Just testing. Code: Sub Oops() Application.Calculation = xlCalculationAutomatic End Sub _____ Workbook: 20SepSample3.xlsm ( Using Excel 2007 32 bit ) Row\Col A B C D E F G H I 1 ICR NotInH24 1MTH 3MTH...
View ArticleVb6: check if textbox contains multiple values
I have this text inside textbox: ---------------- Vary: Accept-Encoding Keep-Alive: timeout=5, max=99 Connection: Keep-Alive ---------- i need to get msgbox when max=2 , but it show msgbox when textbox...
View ArticleHow to get data from multiple databases to a master database
Hello, so my mini project loops through all emails in a specific Outlook Folder, saves all zipped mdb attachments and unzips them. Now I need to copy the data that are in a table (which is the same for...
View ArticleVB6 Question: Is there a method of reading an embedded image in a DLL using...
Is there a method of reading an embedded image in a DLL using GDI+? I have previously been using an undocumented API named PrivateExtractIcons to extract PNGs from DLLs or EXEs and then place them into...
View ArticleIssue with .dll file when installing Application on different computer
Hello, I am having trouble installing my Visual Basic 2013 application running .NET Framework 4.5 on a different computer. The problem has to do with the .dll file I am using but I cannot figure out...
View ArticleVb6: Winsock data arrival truncated problem
I have this code, but it only grab truncated data, the data is a little bit large, it is a page source code Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long) Dim strResponse As String...
View ArticleHow to duplicate a column in the same table (SQLite)
Hello! Using an SQLite db, I'm trying to duplicate all the records from one Column1 to the Column2, so Column1 has about 50 rows but only 2 records the rest of the cells have NULL values. Column2 is...
View Article