195 Posted Topics
Re: interesting to say the least! haha, I'm here developing a site for a small buisness with a userbase of like 600 members, and I am testing every change I do in Chrome IE9 FF and Opera... while ebay isn't bothered to develop for more than one single browser. Good thing … | |
Re: use the query string to pass the venue id to the generic venue display page, make your <a> tags ref that page with "?id=xxx" at the end, from the venue page fetch that xxx value and query your db for that specific venue, and display that venue's fields as you … | |
Re: and exactly how will the ... "target user" find this tool? by googling "google for old people" ? i think it's not only useless, but also degrading. Like putting all the people of a certain age in the same basket. Its like assuming no 60 year old is ever going … | |
Re: well , of course it opens the same list if there is the same text in ever <li> tags, change the text and see if its different. on a side note, you dont need to have the javascript function twice, both lists will use the same. also you can't have … | |
Re: If you do not mind having javascript in your page you can do this without posting back. Otherwise, by doing this with asp it is done on server side and will require the page to refresh everytime you click the checkbox. | |
Re: hehe , read your code out loud, and you will figure it out :) | |
Re: [msdn](http://msdn.microsoft.com/en-us/library/ms189799.aspx) [example 1](http://www.sqlteam.com/article/an-introduction-to-triggers-part-i) [http://www.sqltrigger.com/](http://www.sqltrigger.com/) | |
Re: [preg_replace](http://php.net/manual/en/function.preg-replace.php) | |
Re: if you want this to work you will need to execute the loop on a different thread, otherwise you are never going to be able to ask for a user prompt to stop the clock while the infinite loop is going. even then im not sure how you are going … | |
Re: can you post the code that stores data in the db? | |
Re: you can't just directly play with values in 2 textboxes in 2 different web pages, unless 1 page calls the other directly, in which case you will be able to retrieve the info you want from the request object. If the pages dont come directly one after another, you will … | |
Re: here is a tutorial that restrict file type and length! :) [tutorial](http://asp.net-tutorials.com/controls/file-upload-control/) | |
Re: just my 2 cents but when i wanted to make a tictactoe game, i found that the buttons were not very elegant for that! what i did, and keep in mind this is just a suggestion, or a challenge if you want, is simply add a JPanel to my JFrame, … | |
Re: if you already have a page that displays all the comments then the question is not "how" but "where" no? simply reuse that code in the first page! :) unless im not understanding right what you were saing in your question, but anyways. In your page, simply have a section … | |
Re: in the <img> tags you will want to change the src parameter, simply change that link to the path of your image in your website's folder architecture. I usualy make a single folder called Images directly in my website's root, and you can get that using : <img src="Images/yourpic.jpg" alt="..." … | |
Re: also perhaps come up with some evidence of having done some coding yourself! ;) | |
Re: you are only looking if the td content is equal to "link", if(totaltr.html()== "link"){ if you put "links" inside, it wont enter the if and thus it wont add the "htmlBlock" to the "totalProductList.innerHTML" | |
Re: also 48 is not the factorial of 54, its not the factorial of any number either :P !4= 24 & !5 = 120 | |
Re: explain "isn't working" please. what are you expecting it to do, what does it do? | |
Re: i think the even bigger concern , is the ammount of useful and helpful posts that receive no voting at all, with or without rep. some of these people are just plain ungrateful :( | |
Re: if you do not want to refresh the page between each selection then you will need to use ajax to populate the dropdowns. you can get started with [w3schools tutorial](http://www.w3schools.com/ajax/default.asp). | |
Re: in your example, p one does not clear p two simply because it comes before p two in the html. whenever you float something, it gets detached from the default "block" objects. Clear allows you to control the position of floating objects. i know this sounds obscur but take your … | |
Re: the vb.net code only gets executed on server side, if you want to do anything dynamic, like changing the big picture, it will have to be done with javascript typically, althought there are versions of such galleries in pure css. i might be wrong but from a quick look at … | |
![]() | Re: ive seen that technique used a lot indeed, for the exact reason that you only need to modify it once for all 5 pages. I would say go for it tiger! :) |
Re: the SQL command itself is not what you want to print, first the terms you are using are backwards, its hard to read you when you use "column" and mean row, and "row" when you mean column! ;) now, you will want to create a SQLDataReader and set it to … | |
Re: does the rest of your query function well if you take the group by out ? | |
Re: I have always developped user tables in the single table pattern, but ive never had to do one in a real security situation, only in college projects.... I do have do create one for a real project in the following months and i dont believe it would make much difference … | |
Re: [try/catch help](http://www.exampledepot.com/egs/Java%20Language/TryCatch.html) really not too complicated. | |
Re: im not sure about the performance of the OR in SQL , but in java and C# the single pipe "|" will test both conditions even if the first one is true, while the double pipe "||" does not, so its just a matter of finding out which model of … | |
Re: if you save your images after they are generated. i would also save the path in a database and then use one single loading page that fetches the image id from the query string. but without knowing exactly how you want to interact with your pages its hard to say … | |
Re: once you retrieve the data for the dropdown list from the database, what type of variables do you save it in? where is that declared? The simplest thing to populate your dropdown would be to drop the servlet completly and put the database code in a java class, which you … | |
Re: did you try printing out > String Name = request.getParameter("name); to make sure it contains the right info? | |
Re: alright well from what i am reading, you create a table with a row for each students , but put no value in the textbox for the "present/absent" column. Then, you immidiatly update the table with the query : > "update csea set pa='"+pa+"'" where pa is the parameter from … | |
another feature gone missing, mostly irrelevant but i still found it interesting when posting a new thread and waiting for an answer to see how many people visited it without answering! (also i saw someone mention this but it was 3 weeks ago~ permalinks for posts would be fun to … | |
Re: did you add runat="server" in your tags? | |
Re: how is the msdn article about this too sparse? i find it pretty straight foward! [article](http://msdn.microsoft.com/en-us/library/ms171728.aspx) // This method demonstrates a pattern for making thread-safe // calls on a Windows Forms control. // // If the calling thread is different from the thread that // created the TextBox control, this … | |
Re: hey next_tech, it seems to me like you should add the keylistenner to the JTextBox and not the JList, since the Enter key is suposed to add something to the list, it wouldn't make much sense to add something that is already there, or am I missing something? Some source … | |
I totally understand this is probably not what it was actually called but i dont recall, what I am looking for is the page where you would see some info on reputation changes and post statistics and other stuff, but it was not the public profile that other users can … | |
Re: well without your code nor your databases, we can't help much, but what i would do is break the problem down into small prototype pages that just test very simple querys at first. start with the datatypes that you say do show up in the updated site, to make sure … | |
![]() | Re: im guessing its because the javascript is hardcoded to work with a certain id, and the div you are trying to hide is not using that id also im not sure its good practice to have <br>s in your script block but im guessing that was added for the post … |
Re: have you tried setting DecDateMade to DBNull instead of Nothing? | |
Re: [CODE] GEMCCdb.Update GEMCCdb.Close [/CODE] when you update and close the record set, it is still going to finish the current loop iteration, and when it comes to check the condition to loop again, your loop checks if GEMCCdb.EOF and when GEMCCdb is closed that is impossible to do. anyways, ANYTIME … | |
Re: if you do set up a for loop grabbing the max x and y of your shape coords, then simply compare them to the current size of your JFrame and if it isnt big enough to display them set its size accordingly, if youd rather resize the JPanel you are … | |
Re: do you mean "at least as high as the sidebar" or "EXACTLY as high as the sidebar" ? if "at least" then is sidebar fixed height or dynamic? [INDENT] if fixed then i suggest : css , min-height else javascript/jquery is gonna be needed to dynamicly fix height (if its … | |
Re: may i ask where the second RecordSet is? also i suggest using the column name as a string instead of column number like many others did, you put 2 but do you know if the columns are zero based or not? and it might be the second column now but … | |
Re: guess he got it from [URL="http://stackoverflow.com/questions/9668361/music-in-java-start-stop"]here[/URL] since he tried both forums and they were quicker! | |
Re: try changing the font of the component you are printing on for a monospaced font, your code seems good, but the character widths is what is causing you numbers not to be aligned. | |
Re: from the original code (dont know about current code) i see that you could probably have fixed it or at least fix the problem you reported by changing these lines : [CODE] for(idx=0; idx < text.length(); idx++) if(digit.indexOf(text)>=0) // <-- here you look for an occurence of the contents of … | |
Re: im just gonna take a guess that when transfering the files it is possible your html file made it whole but the css file got corrupted and it possible that this causes the css file to either 1)not be found 2)not be loaded or 3)start loading rules but encounter an … |
The End.