Results for "Volume: 2002ASP"
It correctly executes a program
My code calculates prices and prints a professional invoice which businesses can use.
To calculate area for a circle, square and rectangle. It is a basic but I had nothing better to do.
Lets you transfer files via LAN, using winsock. My version of gh0ul's example lets you pick buffer sizes and fransfers files faster. Credits go to gh0ul, for lots of the stuff seen in this app.
dynamically add your favorites/bookmarks to a menu file.
This is a Game where you see how many Check Boxes you can click in so many seconds. I know it sounds dumb but it's competitive. Especially on 20 seconds. Please email me with comments.
This program downloads a file. It was very easy to do. I have been looking for one that works with my IE proxy and couldn't find one. They all used my 2nd proxy server instad of the first, or they asked my for the server IP, The way I have it set it will use the IE proxy to download my files, and leave the second server for Netscape. (I have one connection for IE and another for Netscape, for reasons you don't need to know) Download it and try it. Works great.
Iconnect as a highly cusomizable IP-Publisher; it can be used to: optimize remote-control connections (even via modem) to your computer, launch your webserver (or other programs) and shutdown your system after disconnect (if you want).
Version 2.0.0 of Richard Hayden's D3DWorld is a great improvement on version 1 (D3DScene) of my Direct3D 8-based 3D world. Lighting is now used in many shapes and forms to enhance this scene. I have also improved the program, making it more efficient and it runs slightly faster. I have added a church-style building to the world (complete with stained-glass windows), which looks pretty effective. Six times of day are now simulated realistically using lighting. The screenshot below was taken when the time of day was set to evening. Next I hope to add collision detection and transparency and billboarding, to simulate objects like trees etc. If anyone can help with the collision detection and transparency areas, then please do. ([email protected]). I also hope to make a more realistic sky. So look out for any proceeding versions! Please vote and/or provide feedback in return for me making this code available to you! On my last submission I was quite dissapointed that out of about 400 visits, there were only 4 votes and about 2 feedbacks, apart from my own 2 comments. Really, the least people can do for developers who put up their code here for free, is to rate it!
VB, Assembler & Resource files by Robert Rayment (see small update below) Only those interested in this topic should download these files. If you have been following some of the VB+assembler progs I've been putting on PSC you may have noticed that the assembly part is either in a bin file (com in earlier examples) or in a DLL. The disadvantage of both these is that they need to be in the same folder as the prog. This is OK for testing but is a nuisance for an EXE. Also we're usually talking about small bits of assembler to beef up parts of VB (Heineken approach). The DLL may be specific and so is not appropriate to register. Assembled snippets are often much faster than VB. Also, once you've got over the red-tape and peculiarities of the particular assembler, its often _easier_ (this may be a secret so don't tell anyone) A DLL has a minimum size of 16KB and a bin file 4KB (cluster size). What this submission shows is how to put your assembler code into a resource file which gets incorporated into an EXE freeing it from associations and only taking a few more bytes than the bin file size. A 32-bit Hex/Long integer/Binary converter is developed to demonstrate these techniques. The zip file is ~11KB. UPDATE: it is possible to simplify the load from res by InCode = LoadResData(101, "CUSTOM") lpMCode = VarPtr(InCode(0)) avoiding the save to disc. Make sure to delete the line lpMCode = VarPtr(InCode(1))
Hello Friends, I'm back this time with another COM which scans for directories/folder. Many will appreciate this effort simply because this COM searches for folders and subfolders from a given path and populating it in an array. Some of you may ask "Well ...so what's new? ...aren't there applications that already do that?" ... my answer is YES, there are others too ...but maybe not as efficient or fast as this one. This COM uses the "iterative flag check" algorithm to eliminate redundant entries and also avoid skipping over unchecked paths. Besides, this is a COm ...so you can now use it along your VB/VBA/ASP application ...with the ease of just a few lines of coding!! To try an example of its efficiency,I'd suggest that you start a "Standard EXE Application" in VB, reference(Project->References) this component(ArunSysUtils.dll), add a command button and a list box. You will find a demo project that uses the COM called Client.vbp
Example of how to use DAO to create and manage a database using the Jet Engine ... You must include the DAO Object library using the referneces selection from the Project menu item. I used 3.6 in testing however, it should be fine with 3.51. This is also a good example for new programmers who want to learn SQL.
Search a directory for files containing a specified string and return a list of such files. Once again, I've uploaded this in response to a quetion posted in the Discussion Forum.
Here is a VB wrapper for RC.exe, the DOS resource file compiler, that allows you to put a .dll into a resource file and compile it into an executable making it more or less stand-alone. Included is a useful sample project that contains a .dll and some code written by Catalin Petolea (Mancubus), [email protected]. This sample shows how to create the dll in the Form_Load from the .exe and also has a CPU information module that can very easily be dropped into any project. It returns a concise string containing most information on CPU's.
View pictures dropped to the program (remember, dropped only!) (give comments please!)
This code is meant to show how to grab the mouse's coordinates in a picture box. This example uses MouseDown, but MouseMove also works. This is really handy for coding graphical chat clients.
To calculate the area of a circle, triangle, rectangle and a square. This application is a bit more advanced where I use images instead of picture boxes and I make it more neater. I also added a common triangle.
This is for API gurus. - SendMessage API It observes ur form or controls on it for messages comming from system. Puts them in listboxes with all parameters. Selecting item in listbox makes a reusable code with SendMessage
This code is designed for reading text files. i have written this code because i did not want to use the slow "open for input..." and "freefile" bla bla code... I know i coul do this via the richedit control, but i wanted to know how to do it via api, and maybe you to... This code is using the "CreateFile" Api, which must be called differently in windows 2000. Therefore, i added a "IsWin2000" function to check for windows 2000. Update: Now added a class which wraps the module, lot's of events and functionality. it's 50ms slower in read (with my test file) Class module includes also function ReadCharacters which reads the specified ammount of characters from the open file.