Recent content by AWS

  1. AWS

    Downtime

    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...
  2. AWS

    Site Upgraded

    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...
  3. AWS

    Download Windows Server Essentials to USB

    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
  4. AWS

    Explorer closing when trying to attach files to gmail

    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.
  5. AWS

    network problem at boot time

    You need to use netconfig to start the network service.
  6. AWS

    home server 2007 help

    You need the 64bit ISO to install the 64bit server version.
  7. AWS

    How to initialise a delegate member in a structure.

    Someone will be along shortly to help you.
  8. AWS

    Tutorial: Double Buffering using GDI BitBlt

    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...
  9. AWS

    Howdy and Hello

    Haven't seen you in a while.
  10. AWS

    Getting number from text box

    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...
  11. AWS

    Testing Badges

  12. AWS

    Code Tag - Visual Basic.Net

    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...
  13. AWS

    Code Tag - Legacy Visual Basic

    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...
  14. AWS

    Howdy and Hello

    Welcome to the community. Make yourself at home.
  15. AWS

    Swagger integration in ASP.NET Web API project 2018-06-24

    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...
Back
Top