Visual Studio Code – Keep form on top of taskbar
I am using Windows 11 and am wanting to keep a form above the task bar, even when the task bar is clicked. There is a lot of empty space here and would like to use this space for a…
I am using Windows 11 and am wanting to keep a form above the task bar, even when the task bar is clicked. There is a lot of empty space here and would like to use this space for a…
I am building an Windows Forms App an can not connect to my SQL Server from within Visual Studio. If I build the app and start it separately from the folder, connection is instantly established and communication with the Server…
I've managed to successfully create a panel with dynamically created label and textbox created controls and now I need to be able to place them in a 1 (easy), 2 or 3 column display within the panel (based on user…
I'm trying to load a Handsontable with JSON data from SQL Server using SQL Server's "FOR JSON AUTO" option and the jQuery AJAX POST method. The issue is the data being returned from the WebMethod function I use to retrieve…
We have a textbox control with ID of clientID. Users cannot submit the form when the ClientID box is blank. Secondly, users cannot submit the form unless a minimum of 5 digits or alphanumeric characters are provided. The code below…
Upon serializing the JSON if shows an error like this one. (Cannot deserialize the current JSON object (e.g. {""name"":""value""}) into type 'System.Collections.Generic.List`1) This is my code on serializing json Dim test As List(Of properties) = Newtonsoft.Json.JsonConvert.DeserializeObject(Of List(Of properties))(response) e.Result =…
I am trying to do a search using an ID to find the information that I need. The database is Access and the ID is an autonumber value(primary key). I am using Visual Studio 2022(visual basic) to to the search…
I have this code right here. I have a grid where a column has an orderID with a hyperlink calling a method called getorderInfo that opens a new page with a grid for the order info. Though I don't need…
This is a more general question rather than an inquiry about a very specific technical point in some language. Imagine I write a set of very specific functions in VB.NET or maybe C# that take as input some data (say…
Question for the VB experts here! I have the following code in C#: public object BeforeSendRequest(ref Message request, IClientChannel channel) { HttpRequestMessageProperty httpRequestProperty = new HttpRequestMessageProperty() { Headers = { "test", "test" } }; request.Properties.Add(HttpRequestMessageProperty.Name, httpRequestProperty); return null; } I…