YES
first of all
go to register.asp line 330 / 331
and find this lines
--------------
'Read in the users details from the form
If strMode = "new" Then strUsername = Trim(Mid(Request.Form("name"), 1, 15))
--------------
and change the 15 to 30 for example
then change the username text box on the register.asp , length > to maxlength="30"
then
just change the Username field size in Database ( MS Access )
go to > tblAuthor > Username > field size: > and change it to
40 for example
save it and ...
pay attention that this is just for register.asp
and the user name if you want it really work without any error
you have to change these setting for all of pages that use username
for example : forgotten_password.asp or pm_buddy_list.asp and ...
and the login page that you must change it ,otherwise you can`t
login to forum with a more than 15 characters username.
In the login page this line 99
-------
'Read in the users details from the form
strUsername = Trim(Mid(Request.Form("name"), 1, 15))
-------
change 15 to 30 or ...
and change username text box length > to maxlength="30"
==============================================
GOOD LUCK
------------
FARSHAD