Results for "Volume: 2_2002-2004"
Shows tooltips! You can customize it. If you use it please send me an email. Email: [email protected] Also it took 5 minutes but it is awesome. At least I thought it was better than the regular tool tip! You can have multilines with this one. Look at the screenshot so you can see what it looks like. Thanks, Carroll Dearstone
This program demonstrates how you can take a table from a database (MS Access only in this demo) and convert all the records in that table into an HTML document for viewing in a web browser. With very little effort, you can add more HTML tags, more records, etc to have a really nice looking web page. I'm working on one that will use SQL statements to get certain information, instead of the whole thing. The code is well commented, and any questions can be directed to me
I looked for a way to format the date into dd/mm/yyyy server side. not much here so here is a one liner for those who need it.
It has three facilities: Phone book, Documents uploading/deleting facility, Sending emails. It needs a IIS(Internet Information Server) with CDONTS object.(..for email).
This code allows you to run ASP code from a web page. The code is then written to file, executed and deleted again. Could be usefull for administrative tasks, or even built in some online management system. Feedback and votes appriciated.
Ever wanted a quick-and-easy file association for your application? Sure you did! this is it and all in 4 functions: 1. Associate - Associate any file type with your app 2. Remove Association - quicly remove it 3. Backup Association - dumps an association to reg file 4. Restore Association - merege backup reg file/any reg file to the registry
Concatenating is not very efficient in VBS, especially when a large number of small string are concatenated. Here is how to speed it up
The article demonstrates using Winsocks for rudimentary communication with UDP
This Script will go out to planetsourcecode.com and retrieve the newest submissions. It saves the data it got in a text file so we don't get the info every time the page loads. It will get the submissions from ALL Worlds on PSC. After it gathers the data it strips All the HTML from it. Then it will out put the submission in a table for easy display. See Screen Shot for Output. Ive Uploaded it in zip format now for eazy download.
BoS - Beta 2 Version - Now with a NEW green skin, an installation readme, a skin creation readme that describes how to make your OWN skins for BoS and bugfixes for lower screen resolutions.
The code creates SQL Statements on the fly. You don't have to sit and go thru that huge database creating a page long SQL statement. This little asp page allows you to select the DSN and the table name and it will generate the UPDATE / INSERT and DELETE statements for you. The other great thing this does is creat those request.querystring and request.form statements that you need to add if you are going to pass data from page to page. It does a trim on all fields and a replace for apostrophes, so the database does not throw an error. THE UPDATE AND DELETE REQUIRE YOU AD A WHERE CLAUSE. YOU WILL SEE THE TEXT WHERE CONDITION AFTER THEM. You can try it online at: http://www.biondocom.com/psc/dynamicsql/
Shows you how to use Sockets in both Windows and Linux. Has 3 examples for both operating systems! in a total of 6 programs with screen shots! Has a help file for windows users just in case they cant get it to comple. The example programs are: Client, Server and IP Address lookup program.
What i did was Make the Code Much Shorter, Went from 25 Lines of Code, to 9 Lines of code.. ORIGINALY DONE BY: thuggish_187
This code demonstrate how to open a recordset from other page, which you can call (recordset page library). This is useful when you are calling recordsets in every page.
This is second version of my Chat-Gofrin. 1. Manual is big and I can't upload with code on PSC. 2. If you need manual(and I think that yes) then you can download it from my homepage www.volny.cz/gofrin I add some new function (smiles, admin page, now user can edit his login information and lot of other ...). I hope that you will like it. Gofrin
This is an exmaple of how to use xml as a guest book. Simple node creation and data insertion, then taking the nodes and outputing them to your guests. I've also added paging to only view 10 at a time. Its heavily commented and i try to give as much explanation as humanly possible. Please give comments, criticisms and quetions. I'm relatively new and need it.
This is a game i call stick man. Use to manuver the character and press SPACE to jump. when you are on the 2nd and 3rd floor and you wish to teleport you must use U to go up and J to go down. collect all the beers in time to reach the next level.
LabDev sBuilder is designed to automate the boring task of building a Form & ASP page to receive and process the values submited; Once stablished a Connection, it generates all the necessary ASP ode for you, to manage a particular table; It generates code for the Form, Request.QueryString & Request.Form, Sql Insert, Update & Delete, and Connection Obj/String :-)
This code provides an IsNull function like that used in SQL Server. This allows you to check if a variable contains null, and if so return a specific value. This can prevent you from having to write things like iif(not isnull(rst!FieldName), rst!FieldName, ""). For new programmers, especially those working with databases, you will quickly become aware that trying to access a database field that contains a null value often results in the dreaded error #94 - Invalid Use of Null, which means you constantly have to write code to trap for that possibility.
This code will help make your code more common, and provide simpler viewing for the Request.Form collection, by allowing the developer to place the entire Request.Form collection into a single Sub, therefore helping to organize your code a little better. We’ve all seen the type of code where Request.Form’s are done many, many time throughout an ASP. It’s hard to keep track of, right? Well, using this Sub will help you to organize your code, and your form collection.