Results for "Volume: 7_2009-2012"
An advanced text editor with a parent window and child window. It as a tool bar and a status bar.
Centers a form, relative to the available workspace. This means that if your users have high, or wide taskbars, or other apps which restrict the workspace, your forms will still center properly.
Uses the FindFile, FindNextFile, and SearchPath API functions to quickly find a file on your hard drive. Runs faster than methods which use Dir$.
Helps protect applications, one example for VB, I coded this in PHP... Can be used for many things. I fixed almost all the bugs, working on the next version.
Complete code to animate your Windows' StartButton,justhave a fun !
Using a VB ActiveX DLL in an MFC client.
this is a morse encoder text and sound, Tutorial ++ Morse Code Encoder. (Text-Text Encoder). ++ Morse Code Encoder. (Text-Sound Encoder). ++ sound is saved as a midi file. Morse code is here {{{{ - .... .. ... // .. ... // .- // -- --- .-. ... . // . -. -.-. --- -.. . .-. // - . -..- - // .- -. -.. // ... --- ..- -. -.. --..-- // - ..- - --- .-. .. .- .-.. // + + -- --- .-. ... . // -.-. --- -.. . // . -. -.-. --- -.. . .-. .-.-.- // ( - . -..- - - - . -..- - // . -. -.-. --- -.. . .-. ) .-.-.- // + + // -- --- .-. ... . // -.-. --- -.. . // . -. -.-. --- -.. . .-. .-.-.- // ( - . -..- - - ... --- ..- -. -.. // . -. -.-. --- -.. . .-. ) .-.-.- // + + // ... --- ..- -. -.. // .. ... // ... .- ...- . -.. // .- ... // .- // -- .. -.. .. // ..-. .. .-.. . .-.-.- }}}}}}}}
This is an inherited implemtation of a flat combo box for .Net which is sadly missing from the framework. The code works by overriding the WndProc proc and redrawing the control as flat. It also supports coloring of the drop down button and arrow. Enjoy and don't forget to vote!
Decode and View the Product Key used to install: Windows 2000, XP, Server 2003, Office XP, 2003.
This code causes the windows shut down dialogue to come up(see screenshot).
Change and save button location
Good code,look screen shot
The purpose of the code is to show how to add columns to a VB.NET DataGrid control.
Popup Eliminator really killes any popup message.It's really great program and really workin. any Popup Message will close auto.try it and please vote for this program if u liked it.
The user control produces an image gallery using the file system(no database or xml file to store image info). Each folder in the gallery directory(which you choose) becomes an image gallery, each file in a gallery folder is an image. Thumbnails are automatically generated at runtime and stored on the hard drive. See included screenshot for an example of a image gallery page. A readme.txt file is included in the zip to explain setup requirements.
Fixed it! This is the source that will let you make your own CD Player! It uses the Media Control Interface (MCI) via API to play a audio cd. [NOTE: For this class to work on a form you must reference the class eg. (Set Snd = New CDAudio. I already have prepared it in the included zip.)
Part 4 of Creating an Object Driven Interface using Custom Attributes, reflection Custom Web Controls and much more. in this part we finally get to use our interface generator The Attached Zip file contains the complete code for all four parts of this article, which i had to split up due to size limits
Generates a cryptographically secure random number. A cryptographically secure random number has to be generated from hardware and its sequence must not be predictable. At least under Windows, which uses preemptive multitasking, the only reliable and always present hardware device which changes its state in that manner, is the inbuilt timestamp counter of Pentium IV+ processors. Instead of the TSC, we also could try to access the Sound Blaster device and read the white noise generated by the microphone/line input, but this could be unreliable, since a plugged and stable sound source could give reproduceable patterns. Since the TSC value could range from 0 to 0FFFFFFFFh in eax, we need to scramble it a bit, to get an uniform distribution of the bits all over. This random number generator returns a scrambled TSC value and does not need to be seeded. Actually, the seed is taken each time from the processor, and the overall speed is noticeably higher than any other known random number generator.
A "Play" Command for Visual Basic. This is the equivalent of the QBasic PLAY command that enabled you to play notes through the PC speaker. This version allows you to take advantage of the Sound card and therefore has many advantages. It uses the MIDI interface to send individual or multiple notes to the sound card.
Converts a number of any base into any other base. For example, it can convert a binary number into decimal, octal, hexadecimal, etc. and back again. This is an improvement over the previous version as it can now handle the 'double' data-type. (Very Large Numbers). It is useful for converting DWords from the registry, etc.