2,583 questions with VB-related tags

Sort by: Updated
2 answers

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,583 questions
asked 2024-05-13T13:12:52.5666667+00:00
StewartBW 345 Reputation points
answered 2024-05-13T17:15:14.3366667+00:00
Dewayne Basnett 1,116 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,330 questions
Outlook
Outlook
A family of Microsoft email and calendar products.
3,051 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,583 questions
asked 2024-04-16T20:04:48.66+00:00
Bushra Raees 0 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,841 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,649 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,583 questions
asked 2024-05-13T02:00:27.6033333+00:00
Mansour_Dalir 1,591 Reputation points
commented 2024-05-13T07:48:47.7066667+00:00
Mansour_Dalir 1,591 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,320 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,583 questions
asked 2024-05-02T14:23:13.35+00:00
StewartBW 345 Reputation points
commented 2024-05-12T01:05:03.17+00:00
Karen Payne MVP 35,196 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,499 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,583 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,320 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,583 questions
asked 2024-05-10T15:08:53.2166667+00:00
StewartBW 345 Reputation points
commented 2024-05-10T21:29:00.1533333+00:00
StewartBW 345 Reputation points
1 answer

How to get the index of duplicate elements along with the range of empty elements after it. LINQ

hi Dim ComplexArray As String() = Split("A C A B C A B A B C") Dim Arr3D = {({"A", ({"0-2", "5-9", "16-16", "19-20"})}), ({"B", ({"10-12",…

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,841 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,649 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,583 questions
asked 2024-05-04T15:38:26.2533333+00:00
Mansour_Dalir 1,591 Reputation points
commented 2024-05-10T06:32:29.4533333+00:00
Jiachen Li-MSFT 26,751 Reputation points Microsoft Vendor
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,583 questions
asked 2024-05-06T17:36:06.9066667+00:00
VKSB 176 Reputation points
answered 2024-05-08T16:09:43.9333333+00:00
Dewayne Basnett 1,116 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,583 questions
asked 2024-04-21T16:51:14.6766667+00:00
Mansour_Dalir 1,591 Reputation points
commented 2024-05-07T05:08:25.8033333+00:00
Mansour_Dalir 1,591 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,841 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,649 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,583 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 226 Reputation points
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,583 questions
asked 2024-05-03T09:34:51.5066667+00:00
Fabrizio Leoncini 0 Reputation points
answered 2024-05-03T11:44:11.28+00:00
Jiachen Li-MSFT 26,751 Reputation points Microsoft Vendor
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,293 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,583 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,583 questions
asked 2024-05-02T17:45:38.65+00:00
Mansour_Dalir 1,591 Reputation points
accepted 2024-05-02T20:23:44.9433333+00:00
Mansour_Dalir 1,591 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,499 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,583 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,536 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,649 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
2 answers One of the answers was accepted by the question author.

UPDATE fields

Hello, This works when using insert into: Using command As New OleDbCommand("INSERT INTO Table (Column1) VALUES (?)", connection) command.Parameters.AddWithValue("@param1", field1) command.ExecuteNonQuery() …

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,320 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,583 questions
asked 2024-04-30T13:38:47.02+00:00
StewartBW 345 Reputation points
accepted 2024-05-02T14:19:50.1266667+00:00
StewartBW 345 Reputation points
1 answer

WebView2 fit to page

I am using a WebView2 control in a WinForms app. It is working fine. However, I'd like the "Fit to Page" button sizing to be the default when a PDF file is displayed in the WebView2 control. How do I make this the default setting in my VB.net…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,583 questions
asked 2024-04-27T14:35:38.2366667+00:00
DanM55 0 Reputation points
commented 2024-05-01T08:59:23.4433333+00:00
Jiachen Li-MSFT 26,751 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

How to convert normal date to solar date(PersianCalendar)

with System.Globalization.PersianCalendar NameSpace Need function to convert to solar date

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,583 questions
asked 2024-04-30T04:04:17.3366667+00:00
Mansour_Dalir 1,591 Reputation points
accepted 2024-04-30T09:51:13.4866667+00:00
Mansour_Dalir 1,591 Reputation points
1 answer One of the answers was accepted by the question author.

Opening a Window Using Its Name

From my MainWindow I am trying to open another window knowing only its name. In my MainWindow ViewModel, I have: Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (lpClassName As String, lpWindowName As String) As…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,682 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,583 questions
asked 2024-03-26T09:29:31.52+00:00
RogerSchlueter-7899 1,236 Reputation points
accepted 2024-04-30T09:29:57.9366667+00:00
RogerSchlueter-7899 1,236 Reputation points
1 answer

Declaration expected

Public Module GlobalVariables Public gDataGridShowing Public gDatabase As String ```End Module Public Class Form1 gDatabase = "ganswind" **<<< error "Declaration expected"** Function HideMenuPoints(ByVal…

VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,583 questions
asked 2024-04-29T19:34:17.8733333+00:00
Malcolm Fellmann 5 Reputation points
commented 2024-04-30T08:24:03.3566667+00:00
Viorel 112.7K Reputation points
2 answers One of the answers was accepted by the question author.

efficient way to add csv to database

Hello I read a csv text file line by line and use oldb sql command insert into table to add each line's fields to the table's row. But it takes a very long time, I wonder if there's faster achievements, please advise the most efficient and fastest way to…

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,320 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,583 questions
asked 2024-04-26T08:05:21.28+00:00
StewartBW 345 Reputation points
accepted 2024-04-29T14:30:16.48+00:00
StewartBW 345 Reputation points