I need to thumbnail website templates and i want them like 100x100 then like 300x300 for a web template website. I don't like the way im currently doing it and want to use Photoshop or Fireworks. Or any other good program that is free and easy to use. Thanks!
i am new in c programming
i observed both software's are used for Console Application
so i just wanna know different b/w these software`s and the visual C# Express second name is visual studio?
Good Day All,
I have an MS Access front end connected to an SQL back end. When I create tables I want to properly index these tables so that my queries will run more efficiently. Can someone point me to either web sites or recommend and books on the best practices and rules for indexing tables?
Thanks
How can I set up a searchable database website... for an example see www.petfinder.com, I need a similiar or better system for my website but I don't know how to set it up. :o)
I want to make a desktop application which will request some services over the web?I don;t know where i can find a big list of all webservices...At this moment i know that yahoo and google offer some webServices...I want for example a webservice from Wikipedia...but not just wikipedia....
i am going to develop a dictionary that converts from English to Amharic and vise versa.
create table myTable( id number primary key, englishWords varchar2(100),amharicWords varchar2(100));
then during translation if i put the word 'play' it is expected to give
somewords that contains it.
that means it will give 'play,played,display...'
if i make as follow
select * from myTable where englishWords like %play%;
this will result in giving all words that contain the word PLAY.
if there are 500 words that contain the word PLAY , so i will get 500 words which is not good for users.
To select few words not more than five.
for example i have the following words in my table.
play,playing ,played, displayed,displaying,abcdPLAYxyzz,abcdxyzPLAYopqr
select * from myTable where englishWords like %play%;
it will select all the above words but can i select few words that contain play, not all words that have PLAY?
<html>
<body>
<script>
var totalInventory=700
var numberPurchased=200
var numberSales=0
while (totalInventory > numberPurchased) {
totalInventory = totalInventory - numberPurchased
numberSales++
}
document.write(“Our stock supply will support “ +numberSales
+ “ of these bulk sales”)
</script>
</body>
</html>