Latest News
Friday, March 3, 2023Antrow Software is pleased to announce that they now offer the migration of LibreOffice and Apache OpenOffice database applications to a web app. This means that businesses and organizations can now take advantage of the many benefits of cloud-based software while still retaining the functionality and familiarity of their existing productivity suite.
With the rise of remote work and the need for collaboration across multiple locations and devices, the transition to cloud-based software has become increasingly important. However, many organizations have been hesitant to make the move due to concerns over compatibility, security, and cost.
By migrating LibreOffice and Apache OpenOffice to a web app, Antrow Software provides a solution that addresses all of these concerns. Users can access their documents from anywhere with an internet connection, collaborate in real-time with colleagues, and benefit from the security and cost savings of cloud-based software.
The migration process is seamless and involves no downtime or disruption to your existing workflow. Antrow Software works closely with each client to ensure that the migration is tailored to their specific needs and requirements. The end result is a web app that is fully customized to your business and optimized for performance and security.
So if you're ready to make the transition to cloud-based software and take advantage of the many benefits that come with it, contact Antrow Software today to learn more about the migration of database applications LibreOffice and Apache OpenOffice to a web app.

Customer stories
Sunday, March 19, 2023Author: Antrow SoftwareWUUPPTI Corporation is a manufacturing company that had been using a Microsoft Access database for many years to manage their production data. However, they realized that the Access database was becoming outdated and not meeting their current business needs. They needed a modern solution that could handle their growing data and provide better functionality.
After doing some research, they came across Antrow Software, a company that specializes in converting Microsoft Access databases to web applications. WUUPPTI Corporation was initially hesitant about migrating their Access database, as they had heard horror stories about lost data and functionality during the conversion process. However, they were pleasantly surprised by Antrow Software's approach.
Antrow Software worked closely with WUUPPTI Corporation to understand their specific needs and requirements. They then created a customized web application that not only replicated all the features of their Access database, but also included additional functionality that was not available in the original database.
The migration process was seamless, and Antrow Software completed the project in a timely manner. The best part was that the cost was only two-thirds of what other competitors were offering for similar services. WUUPPTI Corporation was thrilled with the results and the cost savings, and they have been using the web application with full functionality like a Windows application ever since.
Overall, WUUPPTI Corporation was impressed with Antrow Software's professionalism, expertise, and commitment to delivering a high-quality product at an affordable price. They highly recommend Antrow Software to any business looking to migrate their Access database to a web application.

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>