Results for "Volume: 4_2005-2006"
This code can literally do anything you wish with an INI file. Here are a list of the 21 INI functions that I created. These took me a long time to make, so please let me know what you think. A program is included that explains everything completely...from how to use the functions...to an explanation of each variable. GetKeyVal(), AddToINI(), DeleteSection(), DeleteKey(), DeleteKeyValue(), TotalSections(), TotalKeys(), NumKeys()-"To count how many keys in 1 section"-RenameSection(), RenameKey(), GetKey(), GetKey2(), GetSection(), IsKey(), IsSection(), KeyExists(), KeyExists2(), SectionExists(), GetSectionIndex(), GetKeyIndex(), GetKeyIndex2().
This article is intended to cover the basics of working with a database through ADO without diving into MFC, .NET, or any other deep Microsoft framework.
A new FlexGrid whith editing ... very cool!
FreeDB is a smaller database kind of project developed by using Microsoft.NET platform. FreeDB can be used as a database for any simpler application. User Manual for configuring the application is placed with the code. Please read that for setting up the FreeDB application. Note: Still the planned work is not completed for the FreeDB so the viewers of FreeDB are most welcome to see the code and modify its features as much as they can. If at any stage the user need any help or want to give any suggestion to the application then he can write mail at [email protected] with the subject line ‘FreeDB’
I needed a utility for my new game and Microsofts didn't work the way I wanted so I made my own. This one is better in many ways. First, you don't have to create a window or window procedure every time you make a new program, it does it for you! Second of all, it has fast set/get pixel for custom surfaces (ASM). It can also Auto Grab color keys so you don't have to worry about getting the right color key or not. A lot more... This is only version 1 and more updates will come. I uploaded this for hopes it will help someone. Enjoy it! -James-
This is a better version of incomplite Scheduling system I posted earlier.I've add more functionalities e.g booking process and the scheduling part have been highly improved.More information have been added and it's work quite well.Even though scheduling part have been improved,it's not to it's perfect level and I asked anyone to looked at the part and make some improvement then post it back to me to better the functionalities.Contact me by e-mailing me to:[email protected] or call me on +254720233259. I thanks all people whose ideas have been used to developed this system especially pscode.com participants.Gudluck:
This software is to hide the content of any file in any the .jpg or .gif images. By this, we can secure our important and secrete data from the intruders, so even the broadcasting of that image via internet, no one can come to know, that there is some usefull data hidden between this image.
add titlebar buttons to your applications
Disables the effect of Ctrl+Alt+Del and Alt-Tab. It can be used for security programs or just so the user cant exit your program or restart the computer from the keyboard.
This tutorial is for mostly beginners that need to know how to manipulate char strings easily. I recently switched from vb, and it was very hard to get used to chars (from vb's String identifier). This will show you how copy, compare, and add strings together. This will help you have an almost "VB-Like" handle on strings. This is for all uses of strings (Win32 and Console). KEYWORDS: Compare COMPARE compare Add ADD add COPY copy Copy CHARS chars char CHAR Char VB vb STRINGS Strings strings STRING string String tutorial Tutorial TUTORIAL Combine Combining
This code shows how to keep the current row position highlighted after a sort is done by a user on a DataGridView by clicking one of the column headers.
That'S soo cool, you hva the internet time, sheelexcute, and regedit.. Also theres an ocx file wich shapes the form in SHAPES
This tool translate a BMP file into a C Source File. Why this program ? Graphics files often are use to enjoy the users. Nices graphics files have are big. Memory consumed is not very important, but they require place on the disk and the user can delete one of them, or all of them, and the program can't run. To make them into a source file allow to have a DLL for them. The users will not delete DLLs. Sometimes we want to upload program with graphics files, they are too big, and the unload stops... Why don't I use JPEG file ? Because JPEG is bad, perhaps the worst format. If we have text and a maximum compression ratio, the final picture is very very bad. The best file format, I think, is the BMP format.
this application using VS2005 , MSACCESS, DAtaset to creating a dictionary, not just one kind dictionary but many kinds of dictionary u can make it(English - Indonesia) / (english - Germany) / (english -Italy) / etc just download and enjoy the application :D but sorry if there many bugs u have it in my application because i just the new one :p thanks to view my code.
Updated 3/14/09 to fix a bug in the Pow calculation. This is a very nice calculator. This code allows the user to enter multiple operations before hitting the =s button. This an advanced version of the basic Calculator using Swing II example and it has a tutorial and the src is included. The function provided are: 1. Multiplication 2. Division 3. Subtraction 4. Addition 5. Plus/Minus 6. Equals 7. Power - nx 8. 1/x 9. Square Root 10. CE - Clear Entry 11. CA - Clear All 12. M + 13. M - 14. n! - n factorial 15. Log 16. Cos 17. Sin 18. Tan 19. ALog 20. ACos 21. ASin 22. ATan
Shows how to get the former and current value in the current cell of a DataGridView along with customizing the current DataGridView context menu.
This sample project demonstrates how to do two things. First, it shows how to make a DLL. Second, it shows how to load and use a DLL during run-time in your application. Why would you want to do this? Well, you can add programmatic functionality on the fly without having to even restart your application, let alone reboot Windows. It's a very cool concept. Anyway, I couldn't find an example of this anywhere, so I am posting it in hopes that it may be of some use to someone else who is looking for the same thing. If you see any improvements that can be made to this code, please let me know.
well, i've been wanting to use the 'coolbar' component, but couldn't find an example to go by, so i spent an hour and beat it up and figured it out, so i thought i'd make my contribution to PSC in return for all i've learned from the code that others have posted here. the example i made is a mock of IE's URL(address) window with a combobox in the 1st band. in the 2nd band i added a simple mp3 player embedded in a toolbar. hope this helps out others that have been trying to figure the coolbar out....i'm prolly gonna regret this, but if you have any questions on it, email me...enjoy!
This is a module that you can add to your project to encrypt/decrypt using the CryptoAPI. This is the standard API used regardless of who provides the dll which actually does the encryption. Microsoft give you one such dll as standard with windows or NT, but the API ensures that you have the same interface to anyone elses, or even write your own. These different encryption dlls are called Cryptographic Service Providers (CSP's) and the standard Microsoft one is called "Microsoft Base Cryptographic Provider v1.0". To use a different CSP all you have to do is change a constant in this module. This module ensures that there are no carriage returns or line feeds in the encrypted value so that you can easily write it to an ini file for example. This version contains a fix to the original version.
This is an example application that shows how to draw charts in c# on .NET framework 2.0. This application draws 4 types of charts (Line chart, Column chart, Pie chart and Scatter chart) along with gridlines and title options.