The server for the site is in Florida. Last weekend we had hurricane Debby pass through. While we weren't directly in the path we were close enough that power was out until yesterday afternoon. Battery backup kept the site up for a few hours as it was designed for. After it went dead we had to...
Computer Help Forum was upgraded to the newest version of software that I use to run the site. Along with the software upgrade came a style upgrade. It is now easier for you to change from light style mode to dark style mode.
Look at the bottom left next to the style chooser and in the header...
Create a bootable USB and use it to install Windows.
More info on creating bootable USB device can be found here:
https://learn.microsoft.com/en-us/windows-server-essentials/install/create-a-bootable-usb-flash-drive
More than likely the problem is with Internet Explorer. Websites use complex html, css and js that IE can't handle. Download and install Microsoft Edge.
With help from this forum I was able to figure out the double buffer solution using gdi32s BitBlt in C#.net.
GDI+ is well known for its lack of speed in the performance arena.
To solve the "flicker" solution, and add a fast back buffer to my application, i dipped back into gdi32.
What youll...
Only allow integer as shown below.
Public Class Form1
Private Sub TextBox1_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TextBox1.KeyPress
If System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[^0-9\s]") Then
e.Handled = True
End...
To use the Visual Basic .Net click the arrow at the top of the post editor next to "...".
In the drop down select the select the VB.Net tag and input your code in the textbox below.
You can also add it manually by using:
[ CODE=vbnet]your code here[/CODE ]
Public Class Form4
Dim...
To use the Visual Basic tag click the arrow at the top of the post editor next to "...".
In the drop down select the select the Visual Basic tag and input your code in the textbox below.
You can also add it manually by using:
[ CODE=visual_basic]your code here[/CODE ]
Dim conn As New...
Introduction
When you create a new ASP.NET Web API project, you need to present your APIs in a simple and comprehensive way? You can use Swagger.
“Swagger is a simple yet powerful representation of your RESTful API. With the largest ecosystem of API tooling on the planet, thousands of...
This forum can be used to test the features of the forum software or as a playground to do with it as you please.
It will be purged from time to time so don't post anything that you want to be permanent.
To use the XML tag click the arrow at the top of the post editor next to "...".
In the drop down select the select the XML tag and input your code in the textbox below.
You can also add it manually by using:
[ CODE=xml]your code here[/CODE ]
<weatherdata>
<location>
<name>Diba</name>
<type/>...
The attached sample shows how to use the built in TripleDES provider to encrypt and decrypt a single file.
The application was written under VS 2008 but the code itself will happily run against .Net 2
After selecting a file to encrypt enter a password and hit the Generate IV button to generate...
.Net Help Community formerly know as Visual Studio.Net Forum is back and will be better then ever.
The domain was lost because of some problems renewing it do to an illness. The original domain has been taken and my try at retrieving it has failed so we are back on a new domain...
Public Shared Function GetMac(ByVal ipAddr As String) As String
Dim macAddress As String = String.Empty
Try
Dim destIP As Net.IPAddress = Net.IPAddress.Parse(ipAddr)
Dim IP() As Byte = destIP.GetAddressBytes()
Dim IPInt As Int32 = BitConverter.ToInt32(IP, 0)
Dim mac() As Byte = New Byte(5) {}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.