Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Scrolling Topic Review Mod
 New Topic  Topic Locked
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

GauravBhabu
Advanced Member

4288 Posts

Posted - 07 February 2002 :  01:14:42  Show Profile
Won't make difference though as long as it is only one Row and within te table. But yes, okay to remove.

www.forumSquare.com - GauravBhabu - It is difficult to IMPROVE on Perfection, There is no harm in Keep Trying.
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 07 February 2002 :  01:15:03  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
quote:

Remove the blue part.



Not doubting you, but why? I don't notice a difference

Go to Top of Page

GauravBhabu
Advanced Member

4288 Posts

Posted - 07 February 2002 :  01:18:05  Show Profile
That means the one single column will span over two columns in that row. But since it is in a separate table it makes no difference.

www.forumSquare.com - GauravBhabu - It is difficult to IMPROVE on Perfection, There is no harm in Keep Trying.
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 07 February 2002 :  01:19:16  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
So thank you both so much!

here are the finished results

Edit 1 around line 1020 ish

<table border="0" width="100%" align=center>
<table border="0" width="75%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="<% =strTableBorderColor %>">
<table border="0" width="100%" cellspacing="1" cellpadding="4">
<tr>
<td bgcolor="<% =strHeadCellColor %>" colspan="2" align="center"><b><font <% =strDefaultFontFace %> size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">T O P I C     R E V I E W</font></b></td>
</tr>
<%' 3 line Addition of Scrolling window around topic review '%>
</table>
<div style="overflow:scroll;width:100%;height:300px;">
<table border="0" width="100%" cellspacing="1" cellpadding="4">



Edit 2 around line 1120


Response.Write " </table>" & vbNewline
'EDIT 2 for Scrolling Topic Review
Response.Write " </div>" & _
" </td>" & vbNewline & _
" </tr>" & vbNewline & _
"</table>" & vbNewline & _
"</font>" & vbNewline



Edited for previous Errors...

Edited by - Steve D. on 07 February 2002 01:43:03
Go to Top of Page

GauravBhabu
Advanced Member

4288 Posts

Posted - 07 February 2002 :  01:34:22  Show Profile
Should be like this


Response.Write " </table>" & vbNewline
'EDIT 2 for Scrolling Topic Review
Response.Write " </div>" & vbNewline & _
" </td>" & vbNewline & _
" </tr>" & vbNewline & _
"</table>" & vbNewline & _
"</font>" & vbNewline



www.forumSquare.com - GauravBhabu - It is difficult to IMPROVE on Perfection, There is no harm in Keep Trying.

Edited by - GauravBhabu on 07 February 2002 01:35:11
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 07 February 2002 :  09:58:31  Show Profile  Visit Nathan's Homepage
Looks good.

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 07 February 2002 :  10:03:58  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
quote:

Looks good.



Again thanks so much! My testers like it!

Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 07 February 2002 :  18:23:53  Show Profile  Visit Nathan's Homepage
Other people may want to use this, it is very handy. So I'm gonna move it over to the mod w/o code forum.

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 07 February 2002 :  21:47:17  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
I documented up the changes a litte better and zipped up a readme file and the post.asp file and put it on my website.

http://www.stevedandrebecca.com/snitz/TopicReview.zip

Go to Top of Page

BogieMan
New Member

USA
88 Posts

Posted - 08 February 2002 :  12:35:50  Show Profile  Visit BogieMan's Homepage
where can I see the results of this work?

Go to Top of Page

BLK - Jetta
Starting Member

23 Posts

Posted - 11 February 2002 :  19:11:06  Show Profile
You can view it on my forum http://triad.technosapien.net/forum/

USER: test
PASS: test

Very easy to implement

P.S. Here is the TXT from the zip file

======================================
Purpose

This mod puts the Topic Review window in a scrollable area below the post composition area.

Edit post.asp (Do not copy on top of existing installation - line numbers are approx.
----------------
3 Line ADDITION
1 Line EDIT
1 Line ADDITION
----------------


*** 3 Line ADDITION around line 1020

</table>
<table border="0" width="100%" align=center>
<table border="0" width="75%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="<% =strTableBorderColor %>">
<table border="0" width="100%" cellspacing="1" cellpadding="4">
<tr>
<td bgcolor="<% =strHeadCellColor %>" colspan="2" align="center"><b><font <% =strDefaultFontFace %> size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">T O P I C     R E V I E W</font></b></td>
</tr>
<%' BEGIN 3 line ADDITION of Scrolling Topic Review '%>
</table>
<div style="overflow:scroll;width:100%;height:300px;">
<table border="0" width="100%" cellspacing="1" cellpadding="4">
<%' END 3 line ADDITION of Scrolling Topic Review '%>


*** 1 Line Edit around line 1125 remove the underscore at the end of the line

rs.MoveNext
strI = strI + 1
if strI = 2 then
strI = 0
end if
loop
end if

' BEGIN 1 Line EDIT for Scrolling Topic Review
' Remove the underscore at the end of the line.
Response.Write " </table>" & vbNewline
' END 1 Line EDIT for Scrolling Topic Review
' Remove the underscore at the end of the line.


*** 1 line addition right below

' BEGIN 1 Line ADDITION for Scrolling Topic Review
Response.Write " </div>" & _
' END 1 Line ADDITION for Scrolling Topic Review

" </td>" & vbNewline & _
" </tr>" & vbNewline & _
"</table>" & vbNewline & _
"</font>" & vbNewline
end if



=====================SO it looks like below=========================

Response.Write " </table>" & vbNewline
'EDIT 2 for Scrolling Topic Review
Response.Write " </div>" & vbNewline & _
" </td>" & vbNewline & _
" </tr>" & vbNewline & _
"</table>" & vbNewline & _
"</font>" & vbNewline


Go to Top of Page

BogieMan
New Member

USA
88 Posts

Posted - 12 February 2002 :  09:59:41  Show Profile  Visit BogieMan's Homepage
OH ok...doh! I get it now..

Yes I like this...

Thanks!

Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 12 February 2002 :  13:29:32  Show Profile  Visit Steve D.'s Homepage  Send Steve D. a Yahoo! Message
My site is http://www.itsallswing.com/forum

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Previous Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.19 seconds. Powered By: Snitz Forums 2000 Version 3.4.07