Oct 14

ASP.NET database connections and databind

Category: asp.net 2.0

Different ways on how you can connect to your database (MS SQL and MS Access) / Binding your web form controls such as repeater and datagrid. Download this pdf: 20081014_aspnet_db_connections.pdf

No comments

Oct 14

server time display

Category: Web programming

this link may help you on how you display the server time using javascript for ticking.  http://www.dynamicdrive.com/dynamicindex6/localtime.htm

No comments

Aug 6

load external swf using a button in flash (flash basic)

Category: flash 2.0

1. create main.swf (main flash movie that will call external swfs)
2. ready the buttons
3. ready a cliploader movie clip (this will load the swf file)
4. set an instance name for the movieclip, on the example I named it as myclip
5. next create a new flash called page1.swf (we will load this at the main.swf using a button), then run or test to publish the swf
6. Put actionscript on the button:

on(release){
 loadMovie(”page1.swf”,”myclip”);
 }

7. run to test (be sure pages are published)

Download this file for sample and tutorial w/ screen pics: load_swf.zip

No comments

Next Page »