Latest News
Monday, December 23, 2024Dear Customers,
As the holiday season approaches, we want to take a moment to express our heartfelt gratitude for your trust and partnership throughout the year. It has been an honor to assist you in migrating your MS-Access applications to modern Web Apps, empowering your business with greater flexibility, efficiency, and accessibility.
At Antrow Software, we take great pride in helping our customers transition to innovative, web-based solutions. Your success is what drives us, and we are genuinely thankful to be part of your journey.
Looking back on the year, we are inspired by the incredible transformations we’ve achieved together. From seamless migrations to delivering customized web-based platforms, it’s been a pleasure to help you unlock the full potential of your business data.
As we look forward to 2025, we are excited to continue supporting you with our expertise and dedication. Your trust means everything to us, and we are committed to providing exceptional service in the years ahead.
Wishing you, your team, and your loved ones a joyous holiday season and a prosperous New Year! ????
Warm regards,
The Antrow Software Team
P.S. If you have any upcoming projects or ideas for 2025, we’d love to hear about them! Let’s make next year even more successful together. ??

Customer stories
Tuesday, March 7, 2023Author: Antrow SoftwareBrian was the owner of a small business that had been using a Microsoft Access database to manage their customer information for several years. However, as the business grew, the limitations of the Access database became more apparent. It was difficult to access the database remotely, and there were issues with concurrent user access and data security.
Brian knew that he needed to find a solution that would allow his team to access the database from anywhere, without sacrificing data security or performance. After some research, he came across Antrow software, a company that specializes in migrating Microsoft Access databases to web applications.
After discussing his needs with the team at Antrow software, Brian decided to move forward with the migration process. The team at Antrow software worked closely with Brian to ensure that the new web application met all of his requirements and was tailored to his business needs.
The migration process was seamless, with Antrow software handling everything from database structure to user interface design. They were able to migrate all of the data from the Access database to the new web application without any loss of data or functionality.
The new web application allowed Brian's team to access the database from anywhere, using any device with an internet connection. It also provided improved security features, including user authentication and data encryption.
Brian was thrilled with the results of the migration, and he quickly saw the benefits of having a web-based database. His team was able to work more efficiently, and the new system was much easier to use than the old Access database. Additionally, the new system allowed for easier collaboration between team members, which helped to improve overall productivity.
Overall, the migration to a web application provided Brian and his team with the flexibility, security, and functionality that they needed to take their business to the next level. Thanks to Antrow software, they were able to make the transition seamlessly and continue to grow their business with confidence.

Latest articles
Sunday, March 5, 2023Author: Antrow SoftwareImports System.Net.HttpImports System.Text.Json
Public Class OpenAI_API_Client
Private _apiKey As String
Private _httpClient As HttpClient
Private _baseUrl As String = "https://api.openai.com/v1"
Public Sub New(apiKey As String)
_apiKey = apiKey
_httpClient = New HttpClient()
_httpClient.DefaultRequestHeaders.Authorization = New System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", _apiKey)
End Sub
Public Async Function GetCompletion(prompt As String, model As String) As Task(Of String)
Dim requestBody As New With {
.prompt = prompt,
.model = model,
.max_tokens = 50,
.temperature = 0.5,
.n = 1,
.stop = Nothing
}
Dim requestBodyJson = JsonSerializer.Serialize(requestBody)
Dim response = Await _httpClient.PostAsync($"{_baseUrl}/completions", New StringContent(requestBodyJson, Encoding.UTF8, "application/json"))
response.EnsureSuccessStatusCode()
Dim responseBody = Await response.Content.ReadAsStringAsync()
Dim responseObject = JsonSerializer.Deserialize(Of Object)(responseBody)
Dim choices = responseObject("choices")(0)
Return choices("text")
End Function
End Class
To use this class, you can create an instance of the OpenAI_API_Client class with your API key and then call the GetCompletion method with the prompt and model name to generate text completion:
Dim client As New OpenAI_API_Client("<your-api-key>")
Dim prompt = "Once upon a time"
Dim model = "text-davinci-002"
Dim completion = Await client.GetCompletion(prompt, model)
Console.WriteLine(completion)
This example uses the System.Net.Http namespace to make HTTP requests to the OpenAI API and the System.Text.Json namespace to serialize and deserialize JSON data./div>