140,291 questions
0
votes
0
answers
50
views
How can I disable the Maximum Path Length Limitation and move a file into a folder with a long path name?
I have vb.net winform application which creates a folder and moves some files into the folder. But when folder path goes long for example
E:\WF_2324\WF_2324_The Shadow Of The Sycamores\WF_2324_The ...
1
vote
0
answers
136
views
Can not trigger DpiChanged event in .NET Framework 4.72 VB Winforms app
I'm trying to add the DpiChanged event in a VB Winforms application, but the event is not raised.
Please check the gif animation in the link below for detailed movement
https://imgur.com/a/hYot4HP
...
-1
votes
0
answers
54
views
How to get Merged "Child" ToolStripMenuItems To Show New Entries [closed]
Forgive me if this is answered somewhere else, I barely know what to ask!
Here's the scenario: I have a Windows Form application in vb.net. I have a File menu on the MDI container and the File menu ...
-2
votes
1
answer
48
views
WPF XAML. how to detach context menu from data grid [duplicate]
In our WPF application, DataGrid rows have a Context Menu attached by a stylesheet
everything works fine; but I need to detach Context Menu from some Data Grids. I tried it by setting
myDG....
-1
votes
1
answer
62
views
Transparent background property does not work
I found this item on Stackoverflow; Visual basic circular progress bar.
At the bottom, XCoder offered code for a control. It has a BackColor property setting for Transparent. It does not seem to work.
...
-1
votes
0
answers
35
views
initiating a call from vb.net over bluetooth using 32feet.net
trying to initiate a phone call from a connected iphone over bluetooth as a car system would but I can not get it to dial.
connects to phone but no dial occurs.
im not sure what i am doing wrong but ...
0
votes
0
answers
58
views
How to resolve a shift/reduce conflict for greedy modifiers in a Tree-sitter grammar for VB.NET?
I am developing a Tree-sitter grammar for VB.NET and have run into a persistent parsing issue with member declarations that have multiple modifiers. The parser fails to be "greedy" and ...
-1
votes
1
answer
43
views
Problem in calculating total of textbox in tablix report (RDLC) with if condition
I am working with RDLC report. I have report design like this below:
and from report design above will display report like this (data source from this report is from MySQL database):
from report ...
1
vote
1
answer
81
views
How to address controls in Powerpack (OvalShape) programmatically, worked in VB6, not in VB.NET
I have some VB6 code that I am migrating to VB.NET. First to VS 2008 and then to VS 22.
I have some subs that address controls programmatically, to be somewhat efficient. I am a hobbyist programmer so ...
0
votes
2
answers
85
views
Cannot connect to mariadb database from VB.Net app with credentials that work from Python on a different system
I have a couple of databases running under mariadb on a Synology NAS, which are being updated and read without problems using the standard mariadb connector across my local network by Python scripts ...
0
votes
0
answers
53
views
Problem with iTextSharp - Text in wrong direction
I want to read a value from a specific area of a PDF file.
text to be read, reading area marked in red
For this, I have defined an area in the PDF that should be read.
MyCode:
Dim pageNumber As ...
0
votes
1
answer
50
views
How to sort a collection of XElements by their XElement name
I have the following XML; I read it as a collection of XElements:
<rql:select rdf:parseType=""Resource"" xmlns:rdf=""http://www.w3.org/1999/02/22-rdf-syntax-ns#"&...
0
votes
1
answer
107
views
How to fix irregular column and row generation in a PDF table generated by iText
I'm trying to make a PDF table like the one in the top image below. The second image is what I'm getting. This is my first time using iText. I have the needed NuGet packages and I am using VB in ...
0
votes
1
answer
73
views
Routing in ASP.NET Web API
I'm trying to add a new Web API in a legacy web with VB.NET and .NET Framework 4.8. It has multiple Web API running correctly.
For example - CalendarController.vb:
<RoutePrefix("api/{...
0
votes
0
answers
69
views
Parallel.For errors
In the below code, I throw an error rate of about 0.1% when the Parallel.for code is uncommented, versus 0% when run as shown (sample size of 1000s of runs on a small dataset). I'm sure large ...