2,642 questions with VB-related tags

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

How to get the handle of the mouse cursor icon with API (GetCursorInfo)

hi I need a function to put in the timer and check the status of the mouse cursor every 500 milliseconds. Private Declare Function GetCursorInfo Lib "user32" (ByRef pCI As cursorInfo) As Integer Public Structure POINTAPI Dim x…

Windows API - Win32
Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
2,492 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,642 questions
asked 2024-05-18T15:37:53.0233333+00:00
Mansour_Dalir 1,676 Reputation points
edited a comment 2024-05-19T08:56:37.3733333+00:00
KOZ6.0 6,300 Reputation points
1 answer One of the answers was accepted by the question author.

How to create the Left/Right MouseDown And MouseUp click event of Global type(Anywhere from Windows with API)

hi .Require mouse events via API functions

Windows API - Win32
Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
2,492 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,642 questions
asked 2024-05-19T02:28:21.12+00:00
Mansour_Dalir 1,676 Reputation points
commented 2024-05-19T06:08:50.09+00:00
KOZ6.0 6,300 Reputation points
2 answers One of the answers was accepted by the question author.

ComboBox before drop down event?

Hello I'm looking for an event in ComboBox in .net framework WinForms which fires before the drop down menu is going to drop, when DropDownStyle is set to DropDown, so when user clicks on the far button, I add some items to the list on the fly and then…

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,562 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,642 questions
asked 2024-05-18T00:15:41.8566667+00:00
StewartBW 745 Reputation points
accepted 2024-05-18T13:33:18.67+00:00
StewartBW 745 Reputation points
1 answer One of the answers was accepted by the question author.

Can't locate and add the System.Management.Automation into my project

Dear All, I trying to search and add the System.Management.Automation and System.Management.Automation.RunSpace that available in VS 2019 and using NuGet as well. Unfortunately, no luck. How to add this reference to my VB.Net 2019 (.NET Framework 4.7.2)…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-15T21:39:24.4633333+00:00
Eekhay 101 Reputation points
commented 2024-05-18T04:10:25.99+00:00
Eekhay 101 Reputation points
1 answer

Hold IP and Port

Hello Is there any property/class in vb.net that can be used to hold an IP address and Port number? In vb.net , .net framework 4.0, thanks.

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-16T14:51:19.78+00:00
StewartBW 745 Reputation points
answered 2024-05-16T15:27:04.19+00:00
Dewayne Basnett 1,361 Reputation points
1 answer One of the answers was accepted by the question author.

String to Enum?

Hello, How to assign a string to an enum in vb.net? DirectCast([Enum].Parse(GetType(Blah), "Second"), Integer) Option Strict On disallows implicit conversions from 'Integer' to blah. Public Enum Blah First Second Thirds End Enum

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-15T16:39:50.26+00:00
StewartBW 745 Reputation points
accepted 2024-05-15T22:15:16.32+00:00
StewartBW 745 Reputation points
2 answers

Why is Copy / Cut / Paste NOT working in RichTextBox? It works my previous projects.

Hi All, I am unable to "Copy" the text output in a RichTextBox in a project created in Visual Studio 2013. In my previous projects, I can "Copy" text from RichTextBox. I found out on Googling that for RichTextBox, it is necessary 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,642 questions
asked 2024-05-06T17:36:06.9066667+00:00
VKSB 236 Reputation points
commented 2024-05-15T07:08:29.02+00:00
Jiachen Li-MSFT 28,001 Reputation points Microsoft Vendor
1 answer

Add a row to a TableLayoutPanel at runtime with a textbox in each cell of the row

I've tried and tried to add a row to a TableLayoutPanel but I can't. Can anyone tell me a tutorial to do this? Thank you Fabrizio

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-03T09:34:51.5066667+00:00
Fabrizio Leoncini 0 Reputation points
commented 2024-05-15T07:07:35.9966667+00:00
Jiachen Li-MSFT 28,001 Reputation points Microsoft Vendor
4 answers One of the answers was accepted by the question author.

Simple Math Opertation

Hello I need to calculate how many parts an SMS text is, the text is US Ascii so here's the long code with minimum of 15 lines: .Length > 0 AndAlso .Length <= 160 Then Return 1 .Length > 160 AndAlso .Length <= 320 Then Return 2 .Length >…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-13T13:12:52.5666667+00:00
StewartBW 745 Reputation points
accepted 2024-05-14T22:42:39.8266667+00:00
StewartBW 745 Reputation points
2 answers One of the answers was accepted by the question author.

Why drawing 2 Rectangles on a PictureBox by calling twice a "Function for Drawing" shows only the 2nd Rectangle?

Hi All, Given below is my Function (a Sub) for drawing a "Rectangle" on a "PictureBox". I wanted to draw 2 Rectangles side by side. When I called the function for each Rectangle, only the 2nd Rectangle was drawn, the 1st Rectangle was…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-14T11:01:48.48+00:00
VKSB 236 Reputation points
commented 2024-05-14T13:32:19.5533333+00:00
VKSB 236 Reputation points
0 answers

How to disable "the attachment is open. don't forget to save the file if you made any changes" error in outlook auto save macro. Every time any new attachment received i got this error

I have a remote system which was working fine for last 3 years but suddenly i am started to received attached error when any new item received in Outlook. My outlook have macro which save all the attachement in specified folders but this error have…

Office
Office
A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.
1,432 questions
Outlook
Outlook
A family of Microsoft email and calendar products.
3,319 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,642 questions
asked 2024-04-16T20:04:48.66+00:00
Bushra Raees 5 Reputation points
commented 2024-05-13T16:12:41.86+00:00
AP 0 Reputation points
1 answer One of the answers was accepted by the question author.

How to extract part of the text from the line with a special format

hi Bolded areas need to be extracted. I don't know how to use Regex library. my Format [One of the tags] is Sample '10LBA04CT004-XQ01' Start text with 150,000 lines and have different tags. thank { N 3-SH 3-sh 3-sh 3-SH N 10LBB09 EQUIPMENT =…

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,868 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,814 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,642 questions
asked 2024-05-13T02:00:27.6033333+00:00
Mansour_Dalir 1,676 Reputation points
commented 2024-05-13T07:48:47.7066667+00:00
Mansour_Dalir 1,676 Reputation points
2 answers One of the answers was accepted by the question author.

Select Delete commands

Hello, I've been given this samples for insert into and update: Using command As New OleDbCommand("INSERT INTO Table (Column1) VALUES (?)", connection) command.Parameters.AddWithValue("@param1", field1) …

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,562 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,642 questions
asked 2024-05-02T14:23:13.35+00:00
StewartBW 745 Reputation points
commented 2024-05-12T01:05:03.17+00:00
Karen Payne MVP 35,291 Reputation points
1 answer

Can I put a cell into the subject line of an auto email from excel?

My job has an excel sheet for employee attendance tracking that send out an email when an edit has been made. However, currently the email subject just shows the name of the sheet (ex. 05-10-24 attendance infraction) and then the email prompts you to…

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
1,646 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,642 questions
asked 2024-05-11T16:19:12.0766667+00:00
Morris, Kasandra 0 Reputation points
answered 2024-05-11T18:11:50.44+00:00
Fahad Q. Basrawi 80 Reputation points
3 answers One of the answers was accepted by the question author.

Define Thread

Hello, In this code: Dim ThreadBlah As New Thread(AddressOf BlahThread) vs Dim ThreadBlah As New Thread(New ParameterizedThreadStart(AddressOf BlahThread)) ThreadBlah.Start Private Sub BlahThread(ByVal InParam As Object) ... End Sub I can define…

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,562 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,642 questions
asked 2024-05-10T15:08:53.2166667+00:00
StewartBW 745 Reputation points
commented 2024-05-10T21:29:00.1533333+00:00
StewartBW 745 Reputation points
2 answers One of the answers was accepted by the question author.

How to get the range index of repeated elements. LINQ

Thank Dim MyArray as String()={"A","A","A","B","B","C","A","A"} 'Need Result as Array 0-2 3-4 5-5 6-7

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-04-21T16:51:14.6766667+00:00
Mansour_Dalir 1,676 Reputation points
commented 2024-05-07T05:08:25.8033333+00:00
Mansour_Dalir 1,676 Reputation points
2 answers

How do I stop an MDI parent form from being resized when moved ?

I have an MDI form (VB.net) which contains about 10 child forms which are permanent and fixed in place and which take up nearly all the whole parent form except for a small margin around the edges and between child forms of about 2px. When I move the…

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,868 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,814 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,642 questions
asked 2021-08-16T04:11:43.833+00:00
GR15 1 Reputation point
edited an answer 2024-05-05T02:02:03.24+00:00
BgnerNprg207 286 Reputation points
1 answer

How do I add a CAPTCHA to a web site written with ASP.NET/VB

A bot seems to be using my web site to send out emails via AmazonSES. I want to add a CAPTCHA to it to prevent this. I came across https://stackoverflow.com/questions/71515717/how-to-add-captcha-in-asp-net-project which appears to be what I want, but…

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,394 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,642 questions
asked 2024-04-27T05:08:50.44+00:00
Robert Barnes 71 Reputation points
commented 2024-05-03T04:29:43.4033333+00:00
Robert Barnes 71 Reputation points
1 answer One of the answers was accepted by the question author.

How to get the length of strings in array elements LINQ

Dim MyArray as String()={"AB","ABC","DFG"} Need Result Dim int1 as Integer=8

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,642 questions
asked 2024-05-02T17:45:38.65+00:00
Mansour_Dalir 1,676 Reputation points
accepted 2024-05-02T20:23:44.9433333+00:00
Mansour_Dalir 1,676 Reputation points
0 answers

Excel script for filling cells within a specified range with a specific fill color if any cell within the range is selected

Using scripts in Excel (NOT VB macros), I need to be able to fill any cell within a specified range with a specific color if any cell within the range is selected ("clicked on"). Note that the spreadsheet will have different columns that need…

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
1,646 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,642 questions
Office Development
Office Development
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Development: The process of researching, productizing, and refining new or existing technologies.
3,680 questions
Excel Management
Excel Management
Excel: A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.Management: The act or process of organizing, handling, directing or controlling something.
1,683 questions
asked 2024-03-31T14:28:49.82+00:00
Robin Theodore 0 Reputation points
edited the question 2024-05-02T17:06:50.7833333+00:00
Robin Theodore 0 Reputation points