Forum: JavaScript / DHTML / AJAX Jan 21st, 2009 |
| Replies: 13 Views: 2,435 thank you for the help essential
regards,
ayi |
Forum: HTML and CSS Jan 21st, 2009 |
| Replies: 3 Views: 560 thank you
i change from absolute to fixed and it works perfect |
Forum: HTML and CSS Jan 20th, 2009 |
| Replies: 3 Views: 560 i found a css code that make my toolbar stay in the bottom of the page
but it is not working when there is scrolling on the page
the toolbar is floating, the position is not absolute bottom
... |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2009 |
| Replies: 13 Views: 2,435 this is the code that i got from you
give it a try
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2009 |
| Replies: 13 Views: 2,435 i made changes in here in the resetLists
function resetLists(){
document.forms[0].select1.options[1].selected = true;
document.forms[0].select2.options[1].selected = true;
if... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,435 how do you save the cookie when someone click on reset button?
i am totally confuse now
coz i still cant save the reset value in the cookie
any help would be good |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,435 thank you so much for the help
but when i refresh the page, it not saved to the cookie
so the color still like the one without default background |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,435 your code is just reset the listbox but not reset the background color, font type and font size to default
function resetLists(){
document.forms[0].select1.selectedIndex = 1;
... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,435 sorry
i forget to attach the function to get the value to the listbox
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,435 <script type="text/javascript">
function resetLists(){
document.forms["body"].elements["select1"].selectedIndex = 1;
document.forms["body"].elements["select2"].selectedIndex = 1;
}
</script>... |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 790 This one is working example
but i want to change it into listbox instead of radio button
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 790 this is my latest code
there are several option for user
background color = red, green, blue
font color = red, green, blue, black
font type = arial, times, verdana, tahoma
font size = small,... |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 790 if i have lots of option like change the background color : blue, red, black, green and fontfamily : tahoma, arial, verdana fontcolor: red,green, blue
that will be mean that i have to make css... |
Forum: JavaScript / DHTML / AJAX Jan 14th, 2009 |
| Replies: 5 Views: 790 hi
i am new to javascript and i try to play around with it but i am stuck at the moment lol
hope that someone can help me check my code and tell me what is wrong with it
in the page the user... |
Forum: JavaScript / DHTML / AJAX Jan 13th, 2009 |
| Replies: 7 Views: 4,908 internet explorer 7
well thank you for your help anyway
i try to modify it |
Forum: JavaScript / DHTML / AJAX Jan 13th, 2009 |
| Replies: 7 Views: 4,908 to essential
the code you gave me is not working
it does not change the background and the font
i try to put text under div id="tube" but nothing happened
can you help me please |
Forum: JavaScript / DHTML / AJAX Jan 12th, 2009 |
| Replies: 7 Views: 4,908 it is not working
i can change the font type using button click
but i cannot use combo box
<a onClick=document.getElementById('hey').style.fontFamily='verdana'> Make it VERDANA!!!</a>
this... |
Forum: JavaScript / DHTML / AJAX Jan 12th, 2009 |
| Replies: 7 Views: 4,908 Hi
i make list box to change the font type, font color, font size and bacground color in listbox
this is what i made so far
<html>
<head> |
Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,714 Nah
i let it be like that
thx for the help |
Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,714 yeah,
it can be by copying from the one that i have on the server?
coz my one is saved in the vs project sollution
and try to make another copy to the user in another specified folder
so... |
Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,714 this is asp using c#
string filename = "tracking result.csv";
string sExportFile = Server.MapPath(filename);
it just the piece of the code
the code save the file to the server |
Forum: C# Jan 7th, 2009 |
| Replies: 4 Views: 334 the problem is that theReader return string and the variable return int(number)
which is i have to format it to string to make the reader read |
Forum: C# Jan 6th, 2009 |
| Replies: 4 Views: 334 mydb thedb = new mydb();
MyGlobal oapp = new MyGlobal();
//define the reader
System.Data.OleDb.OleDbDataReader theReader = null;
//defining sql... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,495 mydb thedb = new mydb();
MyGlobal oapp = new MyGlobal();
ups, the code oleDb connection is in the mydb() method
i put it in separate file
well, i found my mistake
there are no... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,495 no error actually
when u set break point, it is not getting the reader value
i mean it cannot read the database
theReader = thedb.SQLExecute_Reader(_sql);
if (theReader !=... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,495 coz i am a newbie, so i dont know how to use the code tag.
this is test the code tag
private void Search_Click()
{
string strSearch = ""; |
Forum: C# Jan 5th, 2009 |
| Replies: 8 Views: 1,495 I have a problem about updating access database.
there are 3 columns in my database : ID, searchkeyword, count
in the form there are button n textbox
if user enter a new search keyword, the... |