An implementation of Visual Basic that is built into Microsoft products.
Word script is not functioning.
Hell from Steve The below script is not functioning, What is required please Sub Rename_Trainers() Dim FindWords As Variant, ReplaceWords As Variant Dim i As Integer FindWords = Array("MCKAY HARRINGTO", "WALKER BERGERSO",…
Developer technologies | Visual Basic for Applications
Listened to Co Pilot
Hello from Steve Now all I need please is to open Sub OpenForm2() Const strFolder As String = "C:\Tab Form\Input Stakes" Dim doc As Document With Application.FileDialog(FileDialogType:=1) ' 1 = msoFileDialogOpen .Filters.Clear …
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
Using VBA to select text.
Hello from Steve Is this possible please to select text 5PBPX using VBA Mod moved from : Microsoft 365 and Office | Word | For home | Windows
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
Word Color Red and Highlight Yellow
Hello from Steve I would like to please have the below script Color Red and Highlight Yellow Sub Dollar_Colour_Red_Bold() Options.DefaultHighlightColorIndex = wdYellow With Selection.Find .ClearFormatting .Font.Size = 12 .Text =…
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
Bring to C# handler method list of related entities edited in Bootstrap modal form from javascript
Hello, Now I have changed the data structure schema. I have a Contacts table with a related Telephones table, this is, every contact can have 0 or more telephones, connected by FK by their ContactId fields. public class Contact { public…
Developer technologies | ASP.NET | ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
system environment vairable needs to be fetched by Asp.net core Application hosted on IIS
Application has web.confiiig where connection string stored for Db connectivity. i wanted to remove the password from connection string and store into server's system envrionment variable and application should fetch the password only from environment…
Developer technologies | ASP.NET | ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
Publishing a C# project in Visual Studio does not automatically update it
Hello, When I’ve changed the source code in my C# project and, in Project Explorer, right-click and select ‘Publish’ and then start the process, it tells me ‘Everything is up to date’. Only when I switch the publish profile once (‘Developer’ >…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
VSIX Extension Which Provides Setting Overrides During Debugging of Target Application
I am attempting to create a VSIX extension which allow app settings to be overridden while the target application is being debugged (similar to User Secrets), however nothing I have tried has worked and feel that I must be missing something basic. My…
Developer technologies | Visual Studio | Extensions
Add-on components that enhance and customize the Visual Studio integrated development environment
WPF BindableMultiSelectDataGrid Clipboard Copy Error
When copying from a BindableMultiSelectDataGrid with WPF in .NET 10, copying to the clipboard seems to be erroneous in a way that is incompatible with Excel. In .NET 10, it seems that an extra newline is placed between each line of the HTML clipboard…
Developer technologies | Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
Span gesture recognizer is not working for label with formatted string
In .net maui 20, we are trying to use span gesture recognizer for label so I can append normal text with hyperlink. When clicking on hyperlink it should navigate to that link but it's not working in this way. I am pasting the code for reference.…
Developer technologies | .NET | .NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
VS 2026 Updates
I've received notification of Updates, but thr Vs 2026 Update manager is no functioning.
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Word find only Font 12
Hello from Steve How do I please only find font 12 Sub ReplaceMultipleNames() Dim FindWords As Variant, ReplaceWords As Variant Dim i As Integer FindWords = Array("WALKER BERGERSO", "Orange", "Banana") ReplaceWords =…
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
When I try to run a project or solution i get the following error message in my build drop down window in the details. how can I resolve this. Ive updated my SQL server SSMS to the latest update.
Build started: Project: Database1, Configuration: Debug Any CPU ------ Database1 -> C:\Users\jfrie\Desktop\SSIS TASK\Database1\bin\Debug\Database1.dll Database1 -> C:\Users\jfrie\Desktop\SSIS TASK\Database1\bin\Debug\Database1.dacpac ------…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
need impact analysis
is there a negative impact while upgrading Latest .NET version = .NET 10 (LTS) on all .Net Core EOL
Developer technologies | .NET | Other
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
need impact analysis
is there a negative impact while updating to .NET Framework 4.8.1 from Old .NET Framework < 4.6.2
Developer technologies | .NET | Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
need impact analysis
is there a negative impact while upgrading to ASP.NET Core 10.X from ASP.NET Core of 2.X to 9.X
Developer technologies | ASP.NET | ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
Azure Functions isolated (net8.0) incorrectly requires .NET Desktop workload to load projects.
I have an Azure functions project that works fine in VS2022. When I open the project with VS2026, it prompts me to install .NET Desktop. The following is my .csproj (with the project names renamed). <Project Sdk="Microsoft.NET.Sdk"> …
Developer technologies | Visual Studio | Setup
The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
vba: Find/Replace digits and formatting That replacement text contains a group number that's out of range
Hello from Steve Objective is when three digits found put a zero in at the beginning. That replacement text contains a group number that's out of range Sub AddZeroBeforeThreeDigits() With Selection.Find .ClearFormatting …
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
In word if four numerals located add a zero at the beginning.
Hello from Steve How do I do in VBA the below please. In word if four numerals found add a zero at the beginning.
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
Find font 12
Hello from Steve Objectives replace with font 12 Sub AddZeroBeforeThreeDigits() With Selection.Find .ClearFormatting .Replacement.ClearFormatting .Text = "([0-9]{2})" .Replacement.Text = "000\1" .Forward =…
Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.