| Title: |
Another Way OT But I Need Help |
| Date: |
05/04/03
17 Posts
|
| Summary: |
Need a few pointers about how to completely reformat a hard drive partitioned as NTFS under Win2K Server before installing Win XP? Booting from a Win98 disk is a quick way to create FAT32 partitions and formats. You can then change the partition type to NTFS during the Win XP install process.
|
| |
| Title: |
Date and Time Calendar Custom Tag |
| Date: |
05/04/03
14 Posts
|
| Summary: |
Searching for a popup calendar that lets the user select a date and a time? Find custom tag recommendations and code that integrates with a CFC. |
| |
| Title: |
Loop in CFMX |
| Date: |
05/03/03
4 Posts
|
| Summary: |
Trying to display database columns grouped by table? Use nested index loops with the TO attribute set to the query's recordcount:
<cfloop from="1" to="#qTable.RecordCount#" index="i">
#qTable.table_name[i]#
<cfquery name="qColumn" datasource="dsn">
sp_columns '#qTable.table_name[i]#'
</cfquery>
<cfloop from="1" to="#qColumn.RecordCount#" index="j">
#qTable.table_name[i]# #qColumn.column_name[j]#
</cfloop>
</cfloop>
|
|
| |