356 Posted Topics
Re: We need more than that. Pretty much tells us nothing. What is "Tree_Node"? | |
Re: A lot of reading functionability but no writing; Will there function to make our own client for posting threads/posts to Daniweb? Nice though :) This is something not seen on most forums. | |
Re: > Thank you for the quick response bguild. That was carelessness on my part about the Play method naming. Personally, dont listen to bguild; In most cases, noone sees your code except you. You dont need to write how a set of code conventions state. You write the code however … | |
![]() | Re: I believe the site legally has to allow a option to delete all information (personal). |
Hello I have this: String price="10,00 €"; int num=2; int sum=Integer.valueOf(price)*num; System.out.println(sum); //Should print out AT LEAST 20,00 But note: That € sign can be $, €, £ or another AND it can come before or after the numeric float amount. What is the best way to do this? Thank … | |
Re: > Do not use any built-in date functions in your computer language. What? Why reinvent the wheel? | |
Re: Have you uninstalled and reinstalled Eclipse? | |
Hello I, like everyone else, has made a text based calculator but Ive never worked with GUI in Java. Im using MyEclipse. Very simple. Numbers, four symbols (+, *, / and -) and "=" Nothing else How would I even start with this? Thank you | |
Re: The timer/thread is the easy part; Syncing the client/server is the hard part. | |
Hello Im trying to send emails thru Java and they have HTML plus embedded images. Everything shows up except the embedded images. What could be wrong? My email is a entire String with HTML code. Thank you | |
Re: Lets see because I might not understand some of what you said :) You have a Excel file. Lets say with the following cells: A1: How A2: Are A3: You B1: I B2: Am B3: Fine You want to create something like (example purposes) CREATE TABLE how ( are VARCHAR(100), … | |
Hello Im trying to send emails from my eCommence site and seems not to work. It works on my local server though so I know it is not a configuration issue. Is there a way I can try out if the port is blocked or not? Thank you | |
Re: public void main () { } Its clean, its a effective. I have NEVER understood why the hell people put { on the same line as the function. Its not clear. | |
Hello My hosting company uses AwStats and some of the numbers are conflicting and/or confusing. What is the difference between "pages" and the other option? Thank you | |
Hello Im trying to send a HTML email but I want to encrust into the HTML a image without it being a attachment. The content of the email is pure HTML so in order to do img src it needs to be a live link AFAIK. If it can be … | |
Hello Dont ask why but lets say I want to encrypt "hello" and the encrypted forum is "238324" I want to do: String avariable=dcrypt(238324); //avariable should now hold hello public string dcrypt(String encryptedtext) { //do decrypt stuff return descriptedtext; //decriptedtext should be hello } Basically thats what I want.....Dont care … | |
Hello I have a jQuery Thickbox window and I want to make it stick as far as possible to the top of the browser window, so the top is visible. If the bottom is not visible, this (for now) is not a problem. How can I do it? | |
Hello Im trying to make a cookie that I can use across one domain on different pages. Lets say my domain is example.dev var expiremilliseconds = 86400000; var currdate = new Date(); var expirationdate = new Date(currdate.getTime() + expiremilliseconds); document.cookie = "somecookie=true;domain=.example.dev;path=/;expires=" + expirationdate.toGMTString(); Thing is, I browse around my … | |
Re: ASP.NET is problably running on a IIS server. You have to put it in the root folder of your IIS server. Having said that............... ![]() | |
Usually its IE but this time its Chrome.... The page is coded for Firefox. Page works in IE9, Opera, and Firefox but breaks in Chrome (and naturally Safari). How do I apply fixes for Chrome? Thanks | |
Hello I want to make some shortcut keys (example Alt+K) to do a "onclick" on a button. How can I do this? Daniweb for example has that "Ctrl+B" makes the text bold. Thanks | |
Hey I have a program in retrieving data from a HTML page with Javascript using Java. Lets say I have the structure of C:/index.html C:/js/script.js index.html contains: [code] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script type="text/javascript" src="js/script.js"></script> </head> <body> <a href="javascript:void(0);" id="add"><img src="images/menunew.png" alt="plus" border="0" /></a> … | |
I want to use a localStorage variable in a PHP page. Very simple but "strange". AJAX comes to mind. Whats the best form to do this? Thanks | |
Re: > You're welcome!! :) Thanks guys. Why did you join? :P On a side note, Dani developed this http://www.daniweb.com/web-development/php/threads/9379/vbulletin-mod_rewrite which was at its time (and Im sure many older sites use it as well today) helpful to MANY webmasters as it generated traffic for them. A bit of Daniweb history: … | |
Re: > You can start by posting your question in the java forum instead of VB.Net. Consider it moved. I doubt it but maybe he wanted to make it simple by porting it to VB .NET (doubt it but anything is possible) | |
Re: > So you saying this site is the best if you tend to ask stupid **questionsa** and don't know how to spell the word stupid? Isn't life ironic? | |
Re: Django is written in Python which AFAIK only is server side, for web applications (It can be used client side but there is few support on browsers or it does not come out of the box) . Javascript is client side and supported on all browsers out of the box. | |
Hello Im having problems with the OS's FTP server so I want to write my own with its own possibilities. The processor is x86 so it wont be for ARM or anything. The IDE is I imagine VS (2012). Some questions: 1) Where can I even start? 2) I choose … | |
Hello Magento is WAY too complicated for a small eCommerce. What is a powerful but a lot more simple eCommerce? I perfer PHP since the (code) transition would not be too difficult.... | |
Has anyone worked with C# and OAuth 2.0? Documentation/examples is VERY poor on how to do a simply login. Thank you | |
Re: > guyz really need help on this one. There is a reason people have created (several) third party libraries for this. The out-of-the-box way of doing is very long and/or complicated. Are you using 1.0 or 2.0? | |
Re: > I go to "edit profile", clicked on the "update member profile" button and log out. After that, the only way (for me) to login is to reset my password, The only thing that can remotely have to do with it (I doubt it is thing) is that if you … | |
Re: http://www.obviex.com/samples/encryptionwithsalt.aspx And where it says: Random random = new Random(seed); Put Random random = new Random((int)DateTime.Now.Ticks); Would be, I believe, the timebased encryption you are looking for.... | |
Re: 1: Is Hibernation neccesary? 2: (99% of all SQL related problems are because of this) Have you ran the actual SQL query by itself to make sure the actual SQL is legal/correct? 3: Another thing, I dont see you actually executing the query, just preparing it. Please comment on these … | |
Hello Im trying to make a small program but when I get the .EXE from the Debug or/and the Release folder it complains about a DLL missing (RestSharp) which is avaliable in those folders if I move it to (for example) C:/ How can I "embed" the DLL into the … | |
Hello Im having problems removing the ALT+0160 character from a string. iswhitespace doesnt seem to work. How can I manually remove it? | |
Im trying to modify where “sales_flat_quote_item_option” is modified (more so inserted). I want to add some code so I can write it to a file as well. Where is this done? Thank you ![]() | |
Im on the page showing the products I have avaliable in my Magento store. I want to get the current ID of the order (or the ID of the cart, something unique that I can follow right up until I pay) should I continue on adding the order to my … ![]() | |
Hey I want to remove all strange whitespaces (such as Alt+0160) except the actual space, as in spacebar. How can I do this? | |
Re: There really is no "best". Microsoft's SQL Server basically works out of the box I believe. But all others are pretty much compatible. I personally always suggest MySQL/MariaDB. Very configurable (Note that this is a good AND bad thing) MSSQL is good but It just not 100% free nor open … | |
Re: http://www.daniweb.com/community-center/daniweb-community-feedback/threads/439477/opinion-who-thinks-making-a-post-on-these-forums-is-horrible | |
Re: > Sorry to bump this thread, but DaniWeb currently does have a public API: Funny how things change from one year to the next. | |
Hello Im trying to reach a website ( http://developer.mozilla.org/ to be exact ) and I cannot reach it. I cannot ping it either. But http://www.downforeveryoneorjustme.com/developer.mozilla.org says that it is up. What is wrong? | |
I have a listener on canvas for whenever I click on it. At certain moments (like when a checkbox is checked) I want to disable that listener and make clicking on it do nothing. How do I do this? jQuery is allowed. | |
Hello I know the title is horribly explained.... I want to store about Bob his name (string), last name (string), and age (integer). Basically that; Im thinking about a 3 demensional array. Would this be correct? Also I want easy; I dont care if it takes up more memory of … ![]() | |
Re: OK, several things pop into mind 1: Does FireBug throw any errors? 2: Are you sure you are using jQuery's noconflict correctly? 3: http://forum.jquery.com/topic/noconflict-does-not-work Lets see those three points and see if we can see something. | |
Re: Here is a intresting thought though: In now, a modern area, are proxy servers really neccesary (in the scenario you put of pulling a logo)? With all the bandwidth avaliable to most first class countries....I dont see it logical. I agree in other scenarios though a proxy server is very … | |
Re: > Both can be active, but Windows should prioritize the adapter with a faster connection. UNIX will also always pick the lower (fastest) metric | |
Hello I know threads are problably better just left (even if solved/closed) but I think it would be nice to be able to delete our own threads. If we post a custom algorthim (for example, this is a exageration) to the meaning of life, we wouldnt like other people to … |
The End.