Pointers and Values
Hi there as I learned C++ programming I discovered there are many things that I have to study and to understand its concept one of its the use of pointers.
- Read more about Pointers and Values
- 1 comment
- Log in or register to post comments
- 26 views
Saving encrypted picture
this sample code explain on how to convert picture file into bytes and store to the database(ms access/sql server)....
- Read more about Saving encrypted picture
- 16 comments
- Log in or register to post comments
- 275 views
Sales and Inventory System for Computer Sales Store
Sales and inventory system - manage incoming and outgoing stocks, sales ordering and quotation, inventory reports, etc.
- Read more about Sales and Inventory System for Computer Sales Store
- 48 comments
- Log in or register to post comments
- 1422 views
Get Youtube Video Thumbnails using VB 2008
This sample program demonstrates how to get youtube video thumbnails using VB 2008. Just enter the video URL at the textbox then using simple string manipulation, the program extracts the video id from the URL.
The video id is the unique identifier of the video generated by youtube when the video was uploaded. This video id is necessary for retrieving the thumbnails for the videos.
- Read more about Get Youtube Video Thumbnails using VB 2008
- 4 comments
- Log in or register to post comments
- 336 views
MyDB Tool - MySQL Administration, Create, Backup,Restore and Query MySQL Database
I used this tool in administering MySQL database on all my projects. I hope someone can find this tool useful. :)
Consonants, Vowels, WhiteSpace and Digits Counter 1.0
Hello there about the code I called it Vowel, Consonants, White Space and Digits Counter Version 1.0 that I have written in C++ it show how to use string library in C++ in string manipulation.
- Read more about Consonants, Vowels, WhiteSpace and Digits Counter 1.0
- 1 comment
- Log in or register to post comments
- 63 views
Using RFID in VB6
Im back again this time i will show how to use RFID Reader in VB6 Currently im developing Loadable E-Pass System for a confidential client and i want to share some of of codes regarding RFID and VB6. These is pretty straight forward i used MSCOMM (serial library in .NET) component in order to read /write buffer connected to PC's serial/usb port. This is done by using the oncomm() event in order to
- Read more about Using RFID in VB6
- 143 comments
- Log in or register to post comments
- 3269 views
ABC Payroll System Version1.0
Hello once again Happy New Year Im glad that you are always visiting the website. I start the new year with my new application I called it ABC Payroll System I wrote in C++.
- Read more about ABC Payroll System Version1.0
- 7 comments
- Log in or register to post comments
- 561 views
How to Prevent Events to Fire More Than Once
[inline:RemoveHandler.jpg=How to Prevent Events to Fire More Than Once]
If you are new to VB.NET most likely you encounter a problem with events like TextChanged or ValueChanged events.
In VB 6.0, change event is not fired when changing a value programmatically. However, in the .NET version this has been changed.
In order to avoid this problem you need to call a RemoveHandler Statement.
The following code is an example of this.
- Read more about How to Prevent Events to Fire More Than Once
- 1 comment
- Log in or register to post comments
- 48 views