2,661 questions with VB-related tags

Sort by: Updated
1 answer One of the answers was accepted by the question author.

RegistryKeyPermissionCheck.ReadWriteSubTree vs boolean Writable

Hello, When using Registry OpenSubKey, I can set either RegistryKeyPermissionCheck.ReadWriteSubTree or Writable boolean property = True. Using MyKey As RegistryKey = Registry.LocalMachine.OpenSubKey("App.Blah\DefaultIcon",…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,627 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-19T17:11:47.1433333+00:00
StewartBW 865 Reputation points
accepted 2024-07-20T00:23:17.6+00:00
StewartBW 865 Reputation points
1 answer

ProgID or CLSID for vb.net apps?

Hello, When registering a file type extension for an app written in vb.net framework…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,627 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-19T04:39:42.3033333+00:00
StewartBW 865 Reputation points
commented 2024-07-19T16:46:48.0266667+00:00
StewartBW 865 Reputation points
1 answer One of the answers was accepted by the question author.

Option Infer Off help

Hello, I am getting some errors when Option Infer Off and need to eliminate them, all becuase of data type declaration, since they belong to COM objects I've no idea set them to which data type? For Hhctrl.ocx: Dim Const HH_DISPLAY_TOPIC = &H0 Dim…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-16T15:03:40.04+00:00
StewartBW 865 Reputation points
accepted 2024-07-19T04:35:22.98+00:00
StewartBW 865 Reputation points
1 answer One of the answers was accepted by the question author.

Run-time error -2147221164 (80040154) Class not registered

Hi, I applied this tutorial for using .Net in Micrsoft Office, I used Visual Studio 2022 Current and .Net Framework 4.7.2 and Microsoft Access 2016 I didn't see Intellisense when writing code, and when I execute I get the error: Class not…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
Access Development
Access Development
Access: A family of Microsoft relational database management systems designed for ease of use.Development: The process of researching, productizing, and refining new or existing technologies.
854 questions
asked 2022-03-13T22:09:26.993+00:00
Yusuf 771 Reputation points
commented 2024-07-18T00:03:56.96+00:00
Jay Jacob Wind 0 Reputation points
3 answers

2 simple questions about XmlDocument

Hello Dim doc As New XmlDocument Before .Load, using this property has any effect or is default and disregarded? Before .Load, using this property has any effect or is default and disregarded? doc.PreserveWhitespace = False Move on: doc.Load(…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-11T13:34:25.9433333+00:00
StewartBW 865 Reputation points
commented 2024-07-17T06:27:48.5133333+00:00
Jiachen Li-MSFT 29,026 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

How to pass a report parameter with multiple values from vb.net

I am currently using Visual Studio 2013 and I am writing a service that will allow someone to choose report settings and pass them into the SSRS 2016 report. I am coding this is VB.net. The issue I am having is one report parameter has been setup…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2021-02-25T18:32:22.9+00:00
Zansheen 26 Reputation points
commented 2024-07-16T19:09:48.2+00:00
Peter 0 Reputation points
0 answers

Error loading/reading file

Hello I've got the WDK installer and asked it to save files to my drive, now when I wanna read those files I'll get exceptions, when trying to load via OpenFileDialog: Never seen such scenario, how to gain permission via VB.net when reading such…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-16T00:34:32.26+00:00
StewartBW 865 Reputation points
commented 2024-07-16T01:12:18.58+00:00
StewartBW 865 Reputation points
1 answer

VerticalScroll.visible doesn't seem to be working on autoscroll

Hello, My Flow layout panel has panels in it that stretch the entire flow panel, the problem is that it has autoscroll on(and I want to keep it on), and when there'ss enough panels to get a vertical scroll bar, the ends of the panels are cut out and it…

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,871 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-12T19:45:59.63+00:00
Connor Frayne 20 Reputation points
commented 2024-07-15T14:24:22.2666667+00:00
Connor Frayne 20 Reputation points
3 answers One of the answers was accepted by the question author.

XmlDocument to XmlReader?

Hello I used to load an XML file into an XDocument and keep it intact in memory, then pass it to another object when needed, since it only accepts XmlReader, I was using XDocument.CreateReader. Now am moving from XDocument to XmlDocument, just no idea…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,627 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-13T23:12:42.57+00:00
StewartBW 865 Reputation points
commented 2024-07-15T12:37:10.69+00:00
StewartBW 865 Reputation points
0 answers

Running total columns in DataGridView

Hi, I have a DataGridView with 4 columns & I am trying make the last 2 columns running totals, calculated by checking if the Type column value is A or B, then adding the Quantity column progressively as new rows are added. Please see table below to…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-13T23:42:00.3966667+00:00
SeanPress 186 Reputation points
edited a comment 2024-07-15T11:21:03.9933333+00:00
Anonymous
1 answer One of the answers was accepted by the question author.

How to find where my code gets into an infinite loop

My Visual Basic code is getting stuck somewhere and never finishes. This only happens with one particular input, otherwise it works. I'd like to know at what routine the code is getting stuck. I looked for advice on the web, and it says that when…

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,624 questions
Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,871 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-13T13:13:22.4633333+00:00
rael isaac 41 Reputation points
accepted 2024-07-15T10:17:17.2733333+00:00
rael isaac 41 Reputation points
1 answer

How to sort a table without breaking column relationships when using "DefaultView.ToTable()"

How to preserve relationships between tables after sorting Related to the Designer.vb Part <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-12T10:34:58.13+00:00
Mansour_Dalir 1,716 Reputation points
answered 2024-07-15T06:05:29.4566667+00:00
Jiachen Li-MSFT 29,026 Reputation points Microsoft Vendor
1 answer

BC42017 Late bound resolution; runtime errors could occur

Hello friends, I am programming with VB.NET 2022. In this line of code: With BsQRequestPorductHeader TxtRequestPorductHeaderId.Text = .Current.Item("RequestPorductHeaderId").ToString TxtRequestPorductHeaderNum.Text =…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-12T14:19:11.0966667+00:00
Shahab a 261 Reputation points
answered 2024-07-15T01:38:34.5366667+00:00
Jiachen Li-MSFT 29,026 Reputation points Microsoft Vendor
1 answer

OSVERSIONINFOEX dwBuildNumber

Hello experts, To detect Windows Server 2016 and onward, I use this code, my question is that am I using the correct build numbers to distinguish? Thanks :) If OSVERSIONINFOEX.dwMajorVersion = 10 Then If OSVERSIONINFOEX.wProductType =…

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,072 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,599 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-14T03:52:07.5666667+00:00
StewartBW 865 Reputation points
edited an answer 2024-07-14T06:03:52.68+00:00
Castorix31 83,106 Reputation points
1 answer One of the answers was accepted by the question author.

Disabling Highlighting on a ListView

Hello, I'm making a program to display a GUI with multiple icons showing the state of devices connected to a master device, so far It's going great except the Item I used to store them in, ListView, has an issue, When selected the icon and text…

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,871 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-10T19:17:32.4133333+00:00
Connor Frayne 20 Reputation points
accepted 2024-07-12T17:27:38.7533333+00:00
Connor Frayne 20 Reputation points
3 answers One of the answers was accepted by the question author.

How to make a DateTimePicker to display a particular year, month, date & time ?

Hi All, I want a DateTimePicker to display a particular year, month, date and time (eg: somebody's Birthday). Is it possible? What I am trying is; using Textboxes for Year, Month, Date, Hour, Minute & Second to enter the "Birthday &…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-03-03T12:49:40.0866667+00:00
VKSB 236 Reputation points
edited an answer 2024-07-12T09:55:24.2833333+00:00
Jiachen Li-MSFT 29,026 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

Parse XML without namespace

Hello When parsing this kind of xml, I need to get the number of elementCount and the following 2 fields: OPFCategoryCopyBackgroundColor OPFCategoryCopyName Here's my working code: Dim MyXML As XElement = XElement.Load(MemoryStream) Dim count As Integer…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-11T09:52:15.3266667+00:00
StewartBW 865 Reputation points
commented 2024-07-12T06:16:53.7133333+00:00
StewartBW 865 Reputation points
1 answer One of the answers was accepted by the question author.

Cummulative column in DataGrid View

Hi, I have a DataGridView with 4 columns & I am trying make the last 2 columns cumulative totals, calculated by checking if the Type column value is Type A or B, then adding the Quantity column progressively as new rows are added. Please see table…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-09T16:29:44.96+00:00
SeanPress 186 Reputation points
accepted 2024-07-11T22:08:10.03+00:00
SeanPress 186 Reputation points
1 answer One of the answers was accepted by the question author.

Validate Xml file

Hello, I just need to verify if a file is xml, no specific structure, so just loading to an xml parser and if no exception is thrown at load, I'm fine with it, so I use: Dim doc As XDocument doc = XDocument.Load(InputStream, LoadOptions.None) Check for…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,627 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-11T02:55:36.5266667+00:00
StewartBW 865 Reputation points
accepted 2024-07-11T09:41:17.68+00:00
StewartBW 865 Reputation points
1 answer One of the answers was accepted by the question author.

XDocument vs XmlDocument

Hello experts, To load and parse PAD xml from string which one is recommended to use, ie faster or more…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,627 questions
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,661 questions
asked 2024-07-09T21:01:18.96+00:00
StewartBW 865 Reputation points
commented 2024-07-10T13:15:57.63+00:00
Dewayne Basnett 1,361 Reputation points