Advertisement

Results for "Volume: 6_2008-2009"

6_2008-2009 #204690
Find hidden "back streamed" files on NTFS partitions. This code is a must for sec consultants.

With NTFS partitions, intruders can hide their toolkits behind a 'front file'. Explorer and DIR only show the front file and the size of the front file, leaving no clue as the hidden 'back streamed' files. This code finds them. You can back stream a file like this "copy MyTrojanProgram.exe SomeSystemFile.ini:MyTrojan.exe" SomSystemFile.ini will stay the same size and the backstreamed trojan will be almost undetectable.

6_2008-2009 #214859
SQL Server Script File Execution Module

This is an SQL Server Script File Execution Application. You can create DataBases and Tables by using SQL Server Script File. First create a Database. Then locate a Script file and execute it. Now Database and tables created! A SQL Serve script file copied near the code. SQL Server must be installed on your computer to use the application.

6_2008-2009 #213216
Threads Exposed

Threads are perhaps the most deprived of java’s Features. Most of us know how it works but never try to code them. Even most SCJP books term it as the toughest chapter. Believe me it’s a myth not TRUE! By the end of this tutorial you are going to be real familiar with Threads.

6_2008-2009 #212604
Modify Config Files

This class library provides a clean, easy and reliable way to read and alter config files at run-time. While run-time changes to web.config files will be picked up by the web application, changes to windows application config files will not. The App.config settings, I believe, are cached. This project addresses that problem and offers a nice solution for making any necessary changes to your config files at run-time and also shows how outside changes to your config file can be reflected within your app. I have included 2 projects. One is the actual class library and the 2nd project is a tester project serving as a tutorial full of examples. I hope you enjoy this work and would love a vote from you!

6_2008-2009 #204672
Bubble Sort Algo

It is a simple algorithm about howto sort an array of a number in chronological order

6_2008-2009 #209629
Cascade Clone v1.0

Well, my girl friend is really crazy about Cascade, so I did this Windows GDI version of it. It is pretty simple to play - you just have to clean the window and make lots of points - to do that, click on a square that has another square of the same color next to it, they going to be marked, if you click one second time now, they going to disappear leaving some points behind. Try to mark as many squares as possible. As usual, my code is not commented but pretty simple to follow. Totally programmed in Win32 - No DirectX necessary. For a simple game like this, GDI graphics and PlaySound() are enough – Check it out and vote for me if you like the game, if you don’t, vote anyway ;) Have fun and stay clean. JungleBoy.

6_2008-2009 #202666
Upload and Download Images from MySQL Database

This code will connect to a MySQL database server and allow users to upload and download images stored in a table within that server. The code uses the MySQL.net connector, which is freely available for download from the MySQL website. For the purpose of testing this code, I have allocated a database for use on my server, for the details of the connection information please see the README file. I am quite new to C#, and this is my first attempt at writing a class, let alone a partially compleate class for uploading/downloading images to a database. So if you like this code, I would be thankful for any comments and votes you feel this code deserves. Upon initial running of the application you will be presented with a dialog, asking you to add galleries, please add at least one gallery to this list, otherwise you will be unable to upload images to the database. After this first step, you need to select a database and a table from the comboboxes. If you do not select a table with a compatable gallery layout (as shown in the README files) you will be presented with a error. If you are connecting to my MySQL server the database required is 'testuser' and the table is 'gallery'. I still need to add a function to translate MySQL error codes to their plain english meaning, hopefully this will follow shortly. I would like to thank you for taking the time to view my code, and if you like it, please dont hesitate to vote for it.

6_2008-2009 #196316
Visual Basic Screen Saver Tutorial

Visual Basic Screen Saver walks you through the process of building a screen saver in VB as well as explaining why. From setting up the project to knowing what parameters are passed to a screensaver at run time. Includes the tutorial in windows .hlp format as well as complete screensaver source code. [notes added 4.20.2005] This is old... like 1999 old. Also, The HTML version is at http://www.micahcarrick.com/v2/content/view/10/3/ I hear it doesn't work in XP. Anybody know why?

6_2008-2009 #196319
Slot Poker

Basically, it uses a random number generator to display 3 different cards in the form window. The name says it all "SlotPoker"... I have not programmed any bells or whistles, you can do that if you wish.

6_2008-2009 #212545
Derridas

A project to parse text and insert into the database, with contextual links.

6_2008-2009 #196320
Run Crystal Reports within VB6 with Record Selecti

THis short piece of code illustrates how to imbed Crystal Reports into VB. While simple, it does not seem to be documented well anywhere.

6_2008-2009 #205900
Database and CGI in C++

This code shows you how to access MS Access MDB database files and use SELECT stements to retreive records from tables. I've seen alot of poor examples here and i couldnt get most of them to work or working to do what i needed. Also, this gives you an easy way to make a cgi type program that you can use on your web server.

6_2008-2009 #214124
DataGridViewPrinter Class

Please refer to the following url for more details on how to use the class: http://www.codeproject.com/csharp/datagridviewprinter.asp The Class Features: (1) The print style is almost the same as the style of the DataGridView control: (A) the same font style for the header and other rows, (B) the same foreground and background styles for the header and other rows, (C) the same alternating background style for the rows, (D) special font for certain rows will be considered, (E) special foreground and background styles for certain rows will be considered, (F) the same alignment for the columns. (2) Supports multiple pages. (3) The width of each column to be printed is calculated to fit all the cells (including the header cell). (4) The title at the top of the page can be specified. (5) The title font and color could be specified. (6) The title and the header row are repeated in each page. (7) The report could be top-centered (considering the top margin of the page) on the page or be aligned to the top-left margin. (8) The printing process ignores any invisible rows or columns (assuming that the user does not want them to appear). (9) If the DataGridView width is greater than the page width, then the columns with x coordinate greater than the page width will be printed into another page. This ensures that all columns will be printed (Thanks to Stephen Long). (10) Support page numbering. (11) The printing process uses Graphics.MeasureString to calculate the height and width for a certain text with a specified font. This ensures the preciseness of the printing. (12) The class supports Right-to-Left fonts.

6_2008-2009 #213948
Image De/Compression Algorithms

My project is done for the Digital Image Processing Subject that represents several compression algorithms (including lossless and lossy)

6_2008-2009 #195826
HTTP OLE Server

This code provides the basic framework for HTTP services. There is NO functionality built in to transfer files - that's really not the point of this DLL. If you want to create an HTTP service (for remote function calls, database access, customized web server) you can use this DLL to do it. What's the differenece between this and ASP? Two main things: 1. You can program this server to run on any port you'd like, without disturbing "normal" web services (PWS, IIS, etc.) 2. (Win95/98 only) You can shut this down when you want to (can't forcibly unload ASP's under 95/98, so debugging DLL's becomes quite a pain).

6_2008-2009 #202717
Drop-Shadowed, 3d Text without Image Files

Displays 3d text with a drop shadow, using JavaScript and no image files at all.

6_2008-2009 #214303
SIMPLE BUT PRETTY GOOD CALC (J++)

This is demonstrating J++ Calculator. Please try and vote its a good program..

6_2008-2009 #208828
a find the nimbrer game

a find the number game very useful for beginners Please vote for me !!!

6_2008-2009 #212028
A BASIC CLASS FOR A QUIZ GAME

A BASIC CLASS FOR A QUIZ GAME this app demonstrates the use of Quiz, and QuizQuestion classes located in Quiz.vb associated with this project. please note that no effort has been put into the layout of this application, and normal windows forms controls have been used. by using these classes you dont have to do a lot of behind-the- scenes coding, and you can concentrate on the layout of your game and that done, all u have to do is declare a couple of objects, and call a few methods, and you'll be up and running in no time! you can also inherit from these classes and add more functionality to them. Furthermore, by compiling Quiz.vb into a DLL, you can use the associated classes with any visual studio language! Any positive or FAIR negative feedbacks and suggestions are welcome. Please bear in mind that i am new to VB.NET and this my FIRST OOP effort. Thank you.

6_2008-2009 #207272
RC4 full project VC++

This is an implementation of the RC4 encryption algorithm based on Eric Hodges’ RC4 Implementation (VB6). This project includes all files and was tested on MS Visual Studio 6.0

Languages
Top Categories
Global Discovery