I'm trying to copy a file from an external drive by reading its contents, creating a new file elsewhere and writing the contents into it. My code show ...
I'm trying to copy a file from an external drive by reading its contents, creating a new file elsewhere and writing the contents into it. My code show ...
I have a SalesForm whereby a user can add their sales. In my inventory table I have total tires, quantity in stock, and quantity sold. I know I have d ...
I am brand new to vb.net and programming in general so sorry if this is a basic error but im trying to make a x's and o's game in vb.net and it keeps ...
I am needing to take a string like 20230131 and turn it into 2023/01/31 then eventually reformat that into DD/MM/YR format. I am reading this from a t ...
25 year old vb.net code. Same code hasn't changed for years. Suddenly starting at about 2-3 weeks ago any File.Copy() or File.Delete() - these are roo ...
I'm trying to write the array persons to a file and read it and have no clue on how to go about it. Here's my code: End Class Any help on how to c ...
im trying to overwrite a text file saved on an external drive using an openfile dialog in vb.net winforms, and i keep getting the error: System.IO.IOE ...
I will try to keep this as brief as possible. I have a function called GetData(ByVal query As String) whose sole purpose is to populate a data table ...
I'm creating in Visual Basic an application in winforms with a Chart control that displays the values taken from different CSV files. After having sel ...
I have two custom classes in VB.NET and I am using them as lists of classes to contain multiple elements with these properties One is called material ...
I am using below code to query Active Directory and get list of users. The code is working in VB Macro. I modified a bit syntactically to make it work ...
This is my code example to run parameterized query in VB.NET: If I run this example in VB.NET this returns the result successfully. But there is a ...
I want get the oldest creation file in a directory but want to exclude the file ‘Startup’(Which is currently the oldest file). So I would like to sk ...
I am working on updating a VB.net project to use Option Strict On throughout and seeing this error: BC32013 Option Strict On disallows operands of ...
I am getting solution errors when trying to run my application using the GmapControl package. Deleted the lines with errors does not seem to affect th ...
Wrote a program that writes name, postcode, device type, damage type to a CSV file and for some reason it misses the first row. Thanks ...
I have written some code to create a PictureBox every time the code runs, which works fine. But I want to be able to delete these created PictureBo ...
I have a problem in this code I need to search in database SQLite with vb.net when i run this code its started well but when search i have this messag ...
I'm trying to create a simple game where my character has deal with a maze, in visual basic 2019 I cannot stop my character(picturebox) from passing t ...
My WPF MVVM VB.NET app loads a list of songs into a ListBox at start. The list contents populate in a BackgroundWorker that is kicked off in the Const ...