Search results for query: *

  1. F

    Tip Getting the real hard disk serial number as normal user and as admin.

    Hi, For my software protection, I use the real harddisk serial number. How to get it ? You can use a third party dll or program, but it's also possible from within your VB.NET application. Using the next code, you can get the serial number as a normal user, as administrator, but NOT as guest ...
  2. F

    Convert wav files to mp3 files

    Hi, For a long time, I was looking for a way to convert wav files to mp3 using VB.net 2008/2010. Here's a solution, made by myself, using lame.exe 3.98.4. The CMD window is hidden, and a progressbar will show you the conversion state. This is an easy solution, fast and, what's most important...
  3. F

    use the numberpad as input?

    Hi, Don't worry. I'm happy I could help you. If you have more questions, just ask them. I'm a professional programmer, but I like to help people if I have the time. I am a Belgian man, living in Mexico. CU, Freddy Mellaerts
  4. F

    use the numberpad as input?

    In your form you should set the property KeyPreview to true. That'all. Goodluck... Freddy
  5. F

    use the numberpad as input?

    Calculator Hi, Here's a calculator I wrote once. You can use the mouse and/or keys. CU, Freddy Mellaerts Option Explicit On Imports System.Math Imports System.Windows.Forms Imports Microsoft.VisualBasic Public Class Form1 Dim Action As String = String.Empty Dim HasResult As Boolean...
  6. F

    EasyTable

    Hi, Here's my last VB.NET project EasyTable. It will autocreate a (standard) SQL table from the objects in a VB.NET form, reading the form.designer fiel. Hope somebody can use it. Please comment ? CU, Freddy Mellaerts
  7. F

    Digital Invoices

    Hi, I'm a Belgian man, living in Mexico. I'm creating a program in Visual studio 2010 (VB.net) to create digital Invoices. I'm using the chilkatDotNet2.dll for encryption. Does anyone has any experience in this matter ? If so, can we exchange code and questions ? I also developed a textToSpeech...
  8. F

    Question machine id ..

    Dim sysId as string = GetWMIProperty("Win32_ComputerSystemProduct", "UUID") Public Function GetWMIProperty(ByVal strClass As String, ByVal strProperty As String) As String Dim MC As New ManagementClass(strClass) Dim MOC As ManagementObjectCollection = Nothing Dim MOCE...
  9. F

    spanish num2Text

    I hope someone can use the attached routine.
Back
Top