StartUp

The purpose of this code is to put your application in the startup directory, even without putting it in a setup program. Original Author: Tucker Nance Inputs Private Declare Function GetUserName Lib “advapi32.dll” Alias “GetUserNameA” (ByVal lpBuffer As String, nSize As Long) As Long Assumptions You should put this code in the Form_Load function of your program, you can… Read More »

***Convert TXT file to Executable EXE***

This code convert a TXT file to EXE file.When you convert the file start the EXE and the old file will be typed(like TYPE command)This is really great codeNOTE : RUN THE .EXE FROM MS-DOS MODE Original Author: Atanas Matev Assumptions Create a label, a command button and common dialog controlChange the Caption of the button to “Select a… Read More »

Personal StartUp! As simple as it can get…

Do you use different user logins in Windows?Tired of having the same StartUp folder just because the users share the same Start Menu?Then this solves your problem! Original Author: Hyperswede Inputs How to use personal startups.1) Add the source code below to a new project.2) Make an exe file.3) Create a shortcut in your StartUp folder that points to… Read More »

Currency to text Conversion

Converts the Currency to Text. For Ex: 100.90 is converted as one hundred dollars and ninety cents only. Original Author: Dasari. Ravi Kumar(r&d teamworks) Assumptions Insert a formula field in crystal reports and Paste the Code and replace thecurrencyfield in the code with any reportfield whose datatype is currency orInteger. Returns String Code if right(totext({currencyfield}),2) = ’00’ thenuppercase(left(towords(truncate({currencyfield}),0)+’ ‘… Read More »

Email with attachments, Progress Bar, Drag & Drop

This program lets you send emails with attachments (Using Winsock API – without an OCX). It features a progress bar, multiple attachments support, etc.The Attachment list supports multiple file Drag & Drop.You can drop files from explorer for example, it is very simple and without APIs, supports multiple recipients separated by commas. (good example on how to use… Read More »

Check if File Exists – Including Hidden Files

Simple function to check if file exists. Detects Normal & Hidden files. Improvement of code from Greg G., and incorporating a suggestion by Larry Rebich. Original Author: Dan Redding – Blue Knot Software Inputs A Valid Pathname as String. Returns Boolean TRUE if file exists at path specified Side Effects Simply returns FALSE if an invalid path is encountered… Read More »

Word Magic

This program allows simple desktop access the the Microsoft Word spelling and thesaurus engine using OLE Automation.You can Spell Check, Produce Anangrams, use the Thesaurus and look up the meaning of words. THIS IS A COMPLETE WORKING APPLICATION Original Author: Richard Lowe Assumptions Must have Microsoft Word Installed Code ‘===========================================================================’Start a new project’add a ComboBox named cboInput’add a ListBox… Read More »

Irritating window app…

When the target open the file then a new entry in win.ini will be created and the screen will be black [or be turned of]. This will happend again when your friend restart the computer… DONT HOLD ME RESPONSEBILITY FOR YOUR ACTIONZ. This is’nt a trojan… YET. Original Author: ^RaPToR^ Assumptions Danger to use if you are’nt a highleveled… Read More »

Auto Resizer

I was sick and tired of seeing all the control resizers in planetsource, so i just made this myself and wanted to post it, cause someone might actually find it useful. All it does is when the form is resized, it changes all the controls (command buttons, lines, text boxes etc) to make the controls still look like… Read More »

Simple Decimal To Binary Converter

This simple code will convert the Long Integers to it’s binary Equivalent… Original Author: Raj A Inputs Long Integers ( positive ) 1 – 999999999 Assumptions This program is not capable of accepting negative numbers or numbers which are more than 999999999 Returns if the range is met then this will return the Binary equivalent…if the input is either… Read More »