Can VB simulate all pointer operations in C language?
We know that C language is a highly efficient language. The main reason for this is that C language uses pointers to directly manipulate memory in most cases. I'd like to know whether VB can completely...
View ArticleCan VB simulate the struct of C language?
C language has no class, only struct. I know that VB6 can implement "LightWeight COM" or "C-style Class-implementation" through vbIUnknown, vbIDispatch and VTable. I'd like to know whether VB6 can...
View Article[RESOLVED] vb6; parsing text to list listbox
i solved it my self in case anyone need this here is code: List1.Clear Dim sInput As String sInput = Text1.Text Dim Item For Each Item In Split(sInput, "</option>") Item = Mid(Item,...
View ArticleExtract value from ListBox to TextBox
Hello, I might have a "noobie" question. Sorry about that. I have a function that reads an xml file and puts it in a ListBox. I now want to create a function that moves the selected item from the...
View ArticlePoint rotation with reference to zero?
Hi all, hope you had a good weekend :). I should be able to do this but for some reason not wrapping my mind around it. The following code rotates a given point around an origin, usually the center....
View ArticleHow to get a unique chrome ID in vb?
I know how to get all the names of the Chrome tabs and the URL of the current active tab in VB I want to get a unique ID for each tab, because there are tabs with the same name and URL Code: Public...
View ArticleVS 2008 problem in adding data
pls need guide sir, heres my code; thank you in advance ineed result like this.. Code: room subject a mathe a english not like this room subject a mathe a...
View Article[RESOLVED] Can VB simulate the struct of C language?
C language has no class, only struct. I know that VB6 can implement "LightWeight COM" or "C-style Class-implementation" through vbIUnknown, vbIDispatch and VTable. I'd like to know whether VB6 can...
View ArticleHow to hide cursor?
Hi all. :wave: Is there any specific code to hide cursor in middle of running VB.NET project? The reason is just for AFK and make UI readable and being more user-friendly. And if so, How to re-show the...
View ArticleBasic variable problem
Hi all. :wave: There is a byte variable as follow Code: Dim Sendcmd() As Byte = { 0, 0, 0, 0 } which need to be called in Code: SerialPort1.Write(Sendcmd, 0, Sendcmd.Lenght - 1) The question is how to...
View ArticleRC6 SQLite - how to store/read a LONG-Array?
VB6Sp6 RC6 SQLite 6.0.0.8 I use the .SetBlob-function to store/read my BYTE-arrays. Is it somehow possible to use a blob field to store/read a LONG-arrays? Maybe the .SetBlobPtr can do this but i cant...
View ArticleRussian hackers target developer's Microsoft account
I recently got blocked (temporarily) from my Microsoft account due to hacker activity from Russia and Kazakhstan. Several attempts failed with incorrect password, but I don't suspect these are brute...
View ArticleParse date to correct format
Hi I have the following code to save file info in a data table to a mysql database table via an adapter: Code: With cmd2.Parameters .Add("@Name", MySqlDbType.VarChar, 50, "Name")...
View ArticleBA macro to read a binary file (equivalent to Mtalab Fread with float32 option)
Dear community, I am trying to develop a VBA macro to read a binary file. I go through the forum and make some try but I didn't achieve to make it work. I am so then kindly asking for some help. The...
View ArticleTaskbarButton Progress
Lightweight, no typelib used just DispCallFunc() hacking. Requires Windows 7 or later, but the manifest is optional. Works in the IDE but uses subclassing so be cautious. Demo client Form included:...
View ArticleSafari Date Parse
I am using Kendo-UI's form component (documentation) and in the validate event I am: Grabbing a date value Parsing it to a Date by creating a new Date object Using Kendo.format (documentation) to strip...
View Articlecontrol troubles
I have written a piece of software that contains 11 forms, each performing a different function. One of these forms is to be used to view and process large pdf images. When 2 points on the image are...
View Article[RESOLVED] COMBOBOX adn tooltip text
During the combobox is espanded possible to show a tooltip text on each item?
View ArticleVS 2019 [RESOLVED] Updating a rich text box fast the first time slow after...
Morning all, I'm head scratching here, I can't work out why my richtextbox displays text quickly the first time but if i clear it and refill its much slower... Its basically pulling notes from a SQL...
View ArticleucListPlus (ListBox, ComboBox, Menu, Autocomplete TextBox)
Hi guys, here is my latest hobby, it is a multipurpose usercontrol, it fulfills the function of a list and tries to fulfill the function of almost everything that is a simple list, ListBox, ComboBox,...
View Article