Results for "Volume: ASP_Volume2"
Have you ever wanted an auto complete on your combo box well here it is. I have posted this before but it was my first time and the formating was all messed up. So now it's in a working project.
There are a variety of very dirty, and undoubtably illegal, things you can do with Delphi Experts if you know the names of the controls in the Delphi IDE. This expert examines the Delphi interface starting with Application for the components it contains. It does this by recursively iterating through the component arrays. Because not all components are simultaneously present, dialog boxes for example are only created when required, the expert puts a hook into the IDE which monitors WM_PARENTNOTIFY for WM_CREATE messages. When it sees one it knows something may have been added to the IDE so re-searchs the component arrays. The main interface for this expert a treeview which shows the heiracry of the IDE controls starting with Application. A memo box shows the available RTTI on a component when clicked on. By Grahame Marsh.
SQL Web Query using ASP.Net with VB.Net code behind. This is my first project with the new studio; I think this shows the intention of separating the presentation code from business logic. I have previously never done any ASP work so this is from a VB programmer. USES: ASP.Net, VB.Net, ADO, SQL DataAdapter and the web Data Grid. SETUP: Pretty simple really, all you really need to do is modify the connection string and you should be able to use it. For development I was using the Northwind DB from an SQL server. In the readme.txt I give more info on the setup. If anyone has a problem let me know, I hope I included all the right files. Enjoy
This example shows a way to use the System.IO.FileSystemWatcher object.
Updated the C# logic, since it was a bit messy. The purpose of this code is to calculate the age, given the BirthDate. Of course this is a trivial task, but is just to show one way to accomplish this task in VB.Net and in C#. The Zip file contains both projects. There is a slight difference in the logic since the VB one round the months, while the C# calculates the days too.
do a domain whois lookup from your own site, just input the whois server & website (no www.)
Get the latest code from www.pscode.com (Planet Source Code), from any world. Makes use of looping & regular expressions (the hard part), since psc's latest code ticker had the code on 2 lines & had to use 2 regular expressions & 2 loops for each code, not easy. But bettter than most codes you see that will just grab the whole ticker code, mine parses & just takes the links. *UPDATE*, I changed it form lngWID=# to world=# (just seems easier), & now you dont just have to put the number in, you can put like: world=vb or world=c . *UPDATE #2*, Does the EXACT same thing as the first update but I changed it so it doesnt have the code to get & parse the source 9 times, I made it into a funtion (psccode) so it can just do psccode(number); example: psccode(1); would be for vb. Cuts the code down ALOT, bout 1/3 the size now. *UPDATE #3* lets you choose what PSC URL you want to use (only changed function and how it is used). hopefully ill get it working where you can choose how many urls you want to get & have 0 get them all done soon.
Generate a random string of caracters to use for identifying your users on your web site. Can also be used to generate passwords.
How To Enable/Disable Ctrl+Alt+Canc Alt+Tab Ctrl+Esc Cool! If you like it vote for me please! I need your vote!
In VB6 many people used BitBlt as a quick way of doing sprite animation of various types. This is a quick way of doing the same thing in VB.Net.
Manipulate databases via Microsoft’s ActiveX ADO Libraries. A sample database has been included. Get schema and data information as well as load, store and save blob info to a file. Note: Works with Access 97/2000, Oracle 8i (drivers required), and Microsoft SQL Server 6.5 and 7.0. ---See Readme.txt!---
popup window how can I submit a form, close the popup window and target the results of the form into the main window? Found at: http://www.irt.org
Removes trailing spaces from the end of a string. See "trim" to remove leading spaces.
How can I open a window which will always stay on top of all browser windows? Found at: http://www.irt.org
DGB - A simple database program, Version 1, shows how to use linked lists, printing, clipboard, and other stuff.
The purpose for me was to create a simple game so that I could get exposure to Artifical Intellegence. I think I've suceeded in making a good bit of code with good, human like AI. I don't think you could find a more challenging player. If anyone can make this code shorter let me know.
BLACKJACK VS THE COMP, My code probably isn't that great, but it works...
This is a better random number generator than comes standard. It's from a very good book on algoritms. You should read it
How can I capture a login name and password in a popup window and then pass it onto the next page? Found at: http://www.irt.org
How to Activate CapsLock and NumLock from Code