Results for "Volume: 2002C"
NOFI Messages is an easiest-to-use small utility that helps you to save the Message Box of your choice. You can Copy the Syntex for the MsgBox function of any Message Box to the Clipboard which can be used while coding your application in Microsoft Visual Basic. Your comments will help me to improve. Please vote for my code if you find it usefull.
Did you ever what to time something up to thousands of a second. This is not possible by using time() and timers at all. This little class (only uses 3 variables) can time up to a thousands of a second with your CPU clock frequency. There's a little example program also shows the difference between using: {if VarX "" then} AND {if Len(VarX) 0 then}. The last one will execute between 20-25% faster. The timer can show this in fractions of a second.
Magic square is a set of numbers arranged in a particular order whose column-wise, row-wise and diagonal-wise sums are all the same. This program explains the mathematics behind an odd magic square. Magic, Fun, Maths, Interesting, Easy even for beginners and excellent!!
Create custom shaped form. Triangle, circle, a form woth holes in it. If you can think of it, you can do it. You can even create a shape from a bitmap. Just look at the screenshot and you'l know what I mean. Feedback and rates appriciated.
This code will convert numbers to and from decimal, hexadecimal and octal. It's really useful and simple to follow code - intended for the beginner. If you use it, there's no need to give me credit but lease vote for it, thanks. -lgr
A graphical calculator. Many thanks to Chris Seelbach for his help. Please leave comments and vote for me if you like the program.
contains a easy to use excel class so you can create excel spreadsheets with out using excel automation. it writes the data you to the row,col u want to a .xls file u specify.
OK, I've made some more changes to the app. It's is still imcomplete, but I did promise some people that I would post a newer version so here it is. What it does............Right now, it lists all the classes, forms and modules that a project uses. For each procedure, it will list all the procedures that the given procedure calls. It will also tell you if the procedure called is out of scope, etc. There are still a few bugs with the tracing part. I haven't completed the "Procedures that Call me" section yet. Ok, other features, it will trace any threat words within the loaded application. There is a Threat word manager, so you can add/edit and delete the threat words. You can print the code of a selected module. That's about all I have implemented as of yet. Hopefully I will have the rest in a week or so.
What's this? Haha, yes, my version of the Windows XP Installation program!
My code sends streaming screenshots over the internet, will work under Win98 and Win2k. Uses the GetDC and cDIBSection API's, req's the Intel Jpeg Library v1.1, freely downloadable from vbaccelerator.com, or get it off my site, http://www.pumkinhed.com/ijl/index.html
This code shows how to make a RAT or a remote administration tool using winsock. With this code you can get alot of information to help you in developing your own RAT or program just like netbus of sub7, but not for evil. :P
A simple CD Player yet it is very LEET for beginners. Has all standard CD Player features. PLease vote for my pathetic code.
Thanks for all your interests in my original post, i've updated many bugs... so try it out yourself... have fun. Purpose : An http proxy server which relay request from client to the original server/other proxy.
This program takes a valid Username & Password from breathe.com and logs you in. When you are logged in (it tells you) you can send SMS messages to any mobile phone.
Explains the concepts of Subs, Functions, and Parameters. If you are a little fuzzy on the difference, take a look.
This is the latest version of my mouse-zoom camera add-in. It is especially useful when designing skinned forms. You can zoom in the form so that you can place your controls at the right places. The source code is heavily commented. UPDATES (since v1.0): 1.The mouse-cam pauses now when any code-window gets focus, and resumes for any other window. 2.The last zoom level is saved in registry, so that add-in starts with the last zoom level. 3.The link to Office DLL is removed. MenuBar icon placement is now without creating a menubar object. The add-in uses therefore much less resources now. 4.MenuBar icon is changed. It looks more professional now. 5.Button tool-tips added.
# IMPORTANT - COMPILE THE PROGRAM BEFORE RUNNING # This is a 3D starfield made using Win32 API but NO DIRECTX or other graphics DLLs. To give you some idea of the power, on my 400 Mhz PC it can render and animate 10000 stars at over 30 FPS! The # of stars is variable. The program is designed for pure speed and therefore does not have many features. This program is an example of 1/ Using pointers in VB 2/ Getting direct access to GDI graphics memory 3/ 3D to 2D transformations 4/ Fast manipulation of huge amounts of data (the stars coords) I know there are lots of other starfields on PSC, but I dare to claim that this is the fastest! Please leave feedback and rate the code.
This code simulates a 6502 processor. you can program in assembly language and test your ideas without the actual chip.
This code Searches AltaVista.com and puts the results into a listview. The your can click any result and it is opened in the default browser.Please put your comments down, and if you find any bugs pls put then down too. :)
Populating a standard combo box with data from a recordset of 15,000 records or more seems to take forever. I used API calls instead of the AddItem method and my test results shows my function is at least 3 times faster than the AddItem Method. This download does not come with a database file, so if you'd like to test it then provide your own db. Please post the number of records in your ADODB recordset object, the time it takes to populate the combo box with the Additem method (just uncomment a line in my test project, it comes with a timer), and the time it takes using my RecsetToCombo function which is made up of a couple of API calls.