Results for "Category: Miscellaneous"
This "thing" takes advantage of a thoughtless mistake on microsoft's part. This prog can stay on top of anything, even the task manager! PLEASE VOTE! -Note: I used code from Jan Alexanders Transparent form to achieve the flashing effect
This is a simplified example that shows how to register an app to individual PCs using a key that is derived from unique properties such as the CPU ID, OS serial, MAC address etc. It's real easy to do & secure enough to keep most users honest. Feel free to modify & use it as you see fit & please vote if you find it useful. Any feedback or comments are welcome and why not take up my cracking challenge - no one has succeeded yet! It uses WMI so if you're running W95, W98 or NT4 & you get an automation error download the WMI engine from: http://download.microsoft.com/download/platformsdk/wmicore/1.5/W9XNT4/EN-US/wmicore.EXE. Update info: The app is even more secure as it now includes complete obfuscation of the key variable and a simple and easily expandable anti-hacking routine (currently includes RegMon, FileMon, SoftICE - routine is adapted from Kevin Lingofelter's code at http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=10000&lngWId=1).
This code is for people who want to make skin in an easy way, and it demonstrate a way to do a custom message box with the Msgbox command (msgbox "the message","the title"). Also, my code teach how to do a transparent control (like commandbutton or textbox or FORM), please rate it good, I take several days searching API'S
it create a new language like "|-|i 0r ß-Y-€" pretty cool :P
TaskBar Utilities - Made Easy is a program that hides the specific aread of TaskBar made easy... Please Vote!!! Thank You!!!
Well this is the code for you! If you are a PSC Code contributor, you know that after downloading your code people seldom comes to vote. It's because people forget the link and never bothers to find it again. That's why I have made this for you... Now This User Control(PSCVOTE) makes it so easy for people to reach your code's voting page at anytime from anywhere. What you need to do is keep this user control in your project and use it wherever you wish. Enjoy those GREAT Votes!
The Purpose Of This Is To Make It As Simple As Possible To Print Your Cd Covers Realy Good Layout (Graphics Included) If You Want To Carry On this Project Please email Me At i8crowts@hotmail.com (Only Tested On Windows XP) Plz Vote As This Is My First App
Files needed to distribute along: CMDLG32.OCX MSCOMCTL.OCX - 1MB (VB 6 SP3) or COMCTL32.OCX - 596KB (VB 5 SP3) MSWORD.OLB Client-server app to keep track of inventory. Main functionalities include accounts payable, accounts receivable, human resource, user management and reporting. User management includes access control to the main functionalities. Main page even include a ticker system allowing messages to be conveyed to the users systematically. Simple reports are mostly available only on-screen (non crystal report). Please vote for me or at least provide your feedback as I need to know what areas require improvement or change. I also need to know how well am I doing in order to decide upon to further develop the key areas. In the future, will try to use object-oriented programming style because it is a good way of programming. Will be standardising the way of reporting as well. Haven't tested in a real multi client environment. If anyone of you have tested it, please let me know if there are any issues of concurrency and stuff like that. Any other suggestions? Please leave your comment here! Thanks!
Good information to help building a good ASP page.
This trick will show you how to startup your program first thing on windows XP(nt or 2k) without writing any enteries in the registry or adding anyshortcuts in the startup menu.. This trick will also disable the running of the explorer.exe and any startup program by doing that , the desktop and taskbar will not load!! and you'll only have your program running, providing complete user restriction over windows , cool ha ??!? Please Vote!!
I wrote it all in a very easy to use module that you can just attach to your project.For any questions/suggestions feel free to contact me.
This is a application to hide your folders from unauthorized access. The hidden folder can be un-protected in just a mouse click. A password can also be assigned to this application. This program is one of my favourites.
TO ALL USERS: We moderators have written a short letter that explains our new job, and what you can do to make PSC run more smoothly.
The goal of this software is to emulate ants ability to coordinate into the task of food-gathering, by mean of short-span individual reactions to environment events. The algorithm used on this simulation considers, among others, the following points: Individual ant brain does not have the enough capacity to remember neither food or nest locations. Ants react to the environment secreting scents, which are impregnated on the ground (odor traces). Odor traces have a limited persistence, vanishing as time pass. When an ant finds some odor trace of interest, it increase it adding some extra amount of scent. Ants cannot 'clean' odor traces as they find them; just increase them or ignore them. On this simulation, ants use two kind of odor marks. The first, in brown, is secreted when the ant finds the nest. The second one, in green, is secreted when the ant finds food (See screenshot). When abandoning the nest, ants move randomly in search of food ('explorer' behavior), leaving an odor trace whose intensity reach his maximum value on the nest. When they find food, they mark its location using a food trace, analogous to the one used when they find the nest. Ants carrying food follow the food trace from higher to lower intensity; the nest trace is followed from lower to higher intensity ('deliverer' behavior). Ants carrying no food follow food traces from lower to higher intensity ('tracker' behavior)
This article is an update of the first tutorial that shows how simple it is to disassemble and understand VB programs. Based on Feedback, I've added a few more sections and edited some text. This is the 'trailer' to what's coming up next. The next tutorial will continue where this one will stop. So instead of updates, you'll be finding a multipart tutorial which packs in a lot more important stuff without repeating the old information. So go ahead and read this , so you can make the most of the big one's...coming up real soon. I'd like it if you could VOTE for me as well as give me feedback on what you want in the next tutorial, and post about what's good and what's not in this one.
As long as you know Assembly Language, it is easy to read disassembled listings of executable files written in C/C++ or PASCAL, especially if you are using IDA Pro as your disassembler. This is so because C and C++ Compilers generate (or at least try to) efficient code. Some Compilers like Borland C++ use simple instructions for complex operations(also remember that this is not always the case) which make it easier to study them. Implementation of Code Constructs such as loops, IF statements, Ternary IF statements, switch constructs etc. can be found very easily as each one is unique and distinct. However the same is not true for Applications written in Visual BASIC. VB Programs are said to be very slow and hence deliver poor performance. There is a reason for this. Visual BASIC programs unlike those written in other languages don't use Windows API Directly. Local functions present in VB Runtime Files are called which call functions from the Windows API.Most of the Visual BASIC functions are present in MSVBM60.DLL (if you've got Runtime Files ver. 6.0). So to study VB programs, we must disassemble and analyze the MSVBM60.DLL file as well. Since VB programs use such a complex API Function call procedure, programs tend to run slower.(There are other reasons as to why VB programs run slower but I won't be covering it as it's off-topic.) It becomes difficult to analyze VB Programs as it uses functions which are not part of the Windows API and hence we are not acquainted with them. My primary aim in this Tutorial is to teach the reader how to understand disassembled listings of programs written in Visual BASIC. My secondary aim is to help you realise why Visual BASIC is not suitable for writing small,fast and efficient programs. Almost all authors of Visual BASIC books mention that Visual BASIC does not give you applications with good performance. This tutorial tells you why. The Tutorial will talk about executable files compiled in Visual BASIC in Native Code ONLY and not p-code. After reading this tutorial, you should be able to disassemble,debug and understand Visual Basic Applications. You may also be able to reverse engineer Protection Mechanisms written in Visual BASIC.
This is an example of a keylogger using winsock. It's a client/server application and also my first upload to PSC. Please leave comments.
EAN Barcodes is a DLL that programmers and delvelopers can use to add bar-coding functionality to their applications. Just add the reference to the DLL, set a few proporties and you're away. See the document file and demo program for more details on using it. Enjoy. Vote if you like but would prefer some feed back.
Linear Barcodes is the second part to my Bacode submissions. As with the EAN barcodes, this a DLL that programmers and delvelopers can use to add bar-coding functionality to their applications. Just add the reference to the DLL, set a few proporties and you're away. See the document file and demo program for more details on using it. Enjoy. Vote if you like it but would prefer some feed back.
Balloon Help Version 2 2 Methods of displaying Balloon Tip Help: 1. Uses EDITBALLOONTIP structure, EM_SHOWBALLOONTIP message and SendMessage to add balloon tip help to your textboxes 2. Uses ToolTip class to add balloon tip help to your other form controls (except ListViews, ListBoxs, TreeViews and RichTextBoxes)