Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6789841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:39:13+00:00 2026-05-26T17:39:13+00:00

I have a app that needs to be both read and write compatible with

  • 0

I have a app that needs to be both read and write compatible with a VB6 binary file. I learned about the Microsoft.VisualBasic.FileSystem class and I am trying to write out a structure to the file.

FileSystem.FileOpen(file, "test.bin", Microsoft.VisualBasic.OpenMode.Binary);

FileSystem.FilePut(file, patch.intTest);
FileSystem.FilePut(file, patch.dateTest);
FileSystem.FilePut(file, patch.stringTest, StringIsFixedLength: false);
FileSystem.FilePut(file, patch.boolTest);

Everything writes correctly if I put each item individually except the string. When the VB6 app writes the string it prepends two length bytes, my code does not.

In the MSDN it says Binary mode removes the length bytes unless it is in a structure. Setting StringIsFixedLength to true should of done that, but it appears that Binary mode over rides that setting.

I try to use FilePutObject and try to pass in a struct or class (which is what the msdn says you need to do to get the bytes to show up) it throws the exception

System.ArgumentException occurred
  Message=File I/O with type 'PatchFileStructure' is not valid.
  Source=Microsoft.VisualBasic
  StackTrace:
       at Microsoft.VisualBasic.FileSystem.FilePutObject(Int32 FileNumber, Object Value, Int64 RecordNumber)
       at SandboxConsole.Sandbox.Main(String[] args) in E:\Code\Sandbox Console\SandboxConsole\Program.cs:line 41
  InnerException: 

Full code

using System;
using Microsoft.VisualBasic;

namespace SandboxConsole
{
    static class Sandbox
    {
        public struct PatchFileStructure
        {
            public Int32 intTest { get; set; }
            public DateTime dateTest { get; set; }
            public string stringTest { get; set; }
            public bool boolTest { get; set; }
        }

        public static void Main(params string[] args)
        {
            var patch = new PatchFileStructure()
            {
                intTest = 5,
                dateTest = new DateTime(1999, 1, 1, 1, 1, 1),
                stringTest = "Test Name",
                boolTest = true,
            };

            int file = FileSystem.FreeFile();

            FileSystem.Kill("test.bin");

            FileSystem.FileOpen(file, "test.bin", Microsoft.VisualBasic.OpenMode.Binary);

            FileSystem.FilePutObject(file, patch);

            //FileSystem.FilePut(file, patch.intTest);
            //FileSystem.FilePut(file, patch.dateTest);
            //FileSystem.FilePut(file, patch.stringTest, StringIsFixedLength: false);
            //FileSystem.FilePut(file, patch.boolTest);

            FileSystem.FileClose(file);
        }
    }
}

Here are my two files I am comparing. Spaces are added to the c# version to illustrate the problem.

vb6 - 05 00 00 00 24 F6 1D 5B 21 A8 E1 40 09 00 54 65 73 74 20 4E 61 6D 65 FF FF
C#  - 05 00 00 00 24 F6 1D 5B 21 A8 E1 40       54 65 73 74 20 4E 61 6D 65 FF FF

If I try to read the vb6 file from the C# everything works fine except the string, which returns null.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:39:13+00:00Added an answer on May 26, 2026 at 5:39 pm

    FilePutObject seems to be a lot more verbose and write out more metadata than is needed, primarily for variants.
    Have you tried just:

    FileSystem.FilePut(file, patch);
    

    This uses the “ValueType” overload.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an app that needs to read a PDF file from the file
I have an app that needs to open a new window (in the same
I have an app that needs to handle very large strings between a SQL
I have an app that needs to check a database table every minute. The
We have an app that needs to access network resources. It's written in VB.Net.
I have an app that needs to be able use either an sqlite3 datebase
I have a console app that needs to display the state of items, but
I have a graphical app that needs to test the resolution of the display
I have a client app that needs to save a username/password for an SMTP
I have a Rails app that needs to expose values from a database as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.