Search Result
Collapse
9 results in 0.0014 seconds.
Keywords
Members
Tags
-
Can I create an autoinstall to choose the version of MS database required?
I have developed an MS Access database for Office 2003 and 2007. Can an auto install be created to allow the client to choose the version they use and install that only? -
Resize the website automatically in different resolution
I'm a beginner in developing a website. Currently, I'm in progress of creating a website by slicing my layout in photoshop and using dreamweaver to edit it. I want my website to fit in nicely when viewed by different browsers and resloutions. The width of my image is 1000. I have tried resizing it down to 800 but still it won't auto fit in the browsers? How can I achieve that? -
Sudoku in python
I am looking to make an autofill function for a sudoku game in python. I want to make a function that fills empty squares in with values. If there is only one possible answer by analysis of the row and column and 3x3 box that it is in. Any suggestions and how to do this? -
Excel VBA 2003 : Populate Text on a range in sequence automatically
I've created a textbox control on a userform and I am trying to figure out how to make the text populate to a worksheet range in sequence automatically. I've figued out how to get the text that the user types in to populate in a specific range, but I'd like each entry from the user to populate on the next cell below the previous entry automatically. I've used .showdataform to do this, but I want the userform to be customized rather than using .showdataform.... -
fuchsia555 started a topic is there code to auto reload images if it doesn't loaded first time in users browser?in PHPis there code to auto reload images if it doesn't loaded first time in users browser?
Is there code to auto reload images if it doesn't load at first time in users browser ? -
MusoFreak200 started a topic how do you make your background image automatically resize itself to fit any screenin HTML CSShow do you make your background image automatically resize itself to fit any screen
hello
i am creating a website for both my school assignment and to really upload.
could someone help me with the following question, please?
how do you make your background image automatically resize itself to fit any screen without having extra scrollbars and having the image stay fixed and the words just move?
any help would be appreciated.
TY
MusoFreak200 -
Access 2003 - forms and radio buttons
Hey all,
i am trying to do the following and am having problems, if there is anyway you can guide me or even point me to some material that may help it would be great.
I have created a form in access that allows users to input data and save record, the form is used for logging system faults when users call in.
when a uiser calls the operator will answer call and place the username in field1 (combo box)... -
Auto populate fields from sql database.
I need some help or tips on the following.
I have a .sql database file with the folowing structure:
And here is a sample of the data inserted in to...Code:DROP TABLE IF EXISTS `car`; CREATE TABLE IF NOT EXISTS `car` ( `id` int(10) default NULL, `Make` text, `Model` text, `Year_` text, `Car_Fuel` text, ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
Using scrollTo() with a <div>
I need to be able to automatically scroll a div all the way to the right when new content is added to it via ajax. I've tried direction: rtl; which works in FF and IE but not Safari.. so i'm trying this:
...Code:<script type="text/javascript"> function scrollDiv() { document.getElementById('id').scrollTo(1000,0) } </script> <div onmouseover="scrollDiv()"></div>