334 Posted Topics
Hi there, I've lost my password and username and am trying to log in using sysdba. It doesn't log me in and I would like to retrieve my username and password without re-installing the software. IS there a way of doing that?> | |
Hey everyone, I'm developing a web app for iPhones and hopefully, it can be rendered using an android device as well. I'm using HTML5, jQuery for mobile and cakePHP. Is there a way that I can convert my code to some other code that will produce a hybrid app? I'm … | |
Re: I hear you man it sounds like it's a tough assignment for you. Ok. I will give hints but I ain't too sure how fluently you speak the language (java) or even understand it. For the first program, think about the variables that will store the values you need for … | |
Hi everyone! My questions for the day are: Has anyone here used Wakanda studio/server to make a native app for smartphones? if yes or know anything about it, Give us an insight please. Do you know any free and easy to use studio that lets you develop native apps using … | |
Hi everyone, I had Oracle working perfectly fine and was able to connect to 127.0.0.1/apex . After a fresh re-install, I couldn't access the page. I can manage to log into oracle database by using SQL command line. I'm running Oracle 11g express edition. The message I get when I … | |
Re: I think you'd have to also type the port number after the localhost address. E.g http://localhost:8080 after you start tomcat. | |
Re: I believe it does. The way you defined is inside a function which means it's a local variable and the only place you can use it is within the function that it's defined in. You need to have a global variable which you can access and change its value anywhere … | |
Re: Do you have any particular reasons for using Xampp and not Wamp? I think Wamp shouldn't give any errors and it is really handy to install. In response to your question, Did you change anything in the phpmyadmin at all? | |
Hi everyone, I had an issue today with my hard disk(internal hard drive). I was trying to partition the C drive.Eventually, I successfully paritioned it then I was asked a question then I pressed yes. Here is the problem. Everything changed from primary partition to simple volume. I was not … | |
Hi everyone, I'm sure the update statement is well-written but for some reason Oracle sql command line is refusing to execute it. UPDATE myTable SET country = 'Aus' WHERE username = '"martin"'; // I know you can see single quote and double-quote as well. Well, names were inserted into the … | |
Re: You're using java for that? This sounds like something I was thinking about recently. I would like to know how it actually works and how it recognises peoples' faces | |
![]() | Re: True. You've got a lot of money to own a server but at the same time, you need to think about what sorts of problems you will be running into by just having your home server. What if someone tries hacking into the server? Is your server gonna be secure … |
Hi there, Just wondering if there is a way of inserting tuples into a table without specifying the primary key id. insert into myTable (username, password) values (value1, value2); Ok. When I use the above mentioned statement, it complains about duplicate keys. Anyone know why? shouldn't the key be generated … ![]() | |
Re: I picked something that may be causing your code to not work. On line 38 after the Else statement, you don't have braces. Try putting opening brace and a closing one and see how you go. Yeah, I agree with the other guys on putting the code in classes which … | |
Re: Hi there, You can use jQuery if you want some cool effects. have a look at [jQuery](http://www.jquery.com) in pure javascript, you'd need something like the below code. This does what you want using ElementById. It is not gonna be hard then to work out what you exactly want to do. … ![]() | |
Hi everyone, I want to get started on learning jQuery Framework.I got the basics of the JavaScript at this stage. But now, I don't know where to start with jQuery. Other than the jQuery.com website. Would you suggest easy-to-follow introductions to jQuery? Is there a big difference between jQuery and … ![]() | |
Re: @JorgeM.. so what happens to the blue colour in this case? I never used the !important rule. | |
Re: The required attribute is used to indicate that particular field is required and needs to be filled in. Think of it as an input validator.It has got nothing to do with language translation at all. I hope this helps. | |
Re: You don't ever use the word OR. Use this symbol || which means or. This symbol && means AND. if($row['banned'] == 1 or $row['banned']== 2) { } What is the message you get when you run your code? Try putting values you're trying to check within single/double qoutes. | |
Re: I know Java can be sometimes confusing when you're trying to learn something new about it. I think there is a problem with defining the array. However, Have a look the Java Tuturial website which explains one dimension and multi-dimension arrays.[The link is here](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html) Scroll down to the section mentioned … | |
Re: > echo ("<SCRIPT LANGUAGE='JavaScript'> > window.alert('You entered an incorrect password!') > </SCRIPT>"); Try this. echo( " <script language='JavaScript'> alert('You entered an incorrect password!'); </script> " | |
Hey everyone, I'm posting this thread in this forum because I am not sure where else it should go to. Anyway, I'd like to straight jump to the question. I want to make the URL to my site look like mob.mysite.com. how do you achieve something like this? do I … | |
Re: The main use of CMS's is that it manages your content in terms of creating, deleting or updating content on your site and also part of that would be adding HTML elements such as links, uploading images and stuff like that. it saves you a little bit time with coding … | |
Re: I didn't work with Ajax. But I still can help you with the logic. Store the name of an image in a variable and pass it to the function just to make the function use the new name if the old one has been changed. I hope this helps a … | |
Re: What do you exactly mean by "you saw too many types of Java"? Since you had a good background in programming, Java shouldn't be too hard then. I found this [thread](http://www.daniweb.com/software-development/java/threads/99132/starting-java-java-tutorials-resources-faq) helpful if you're looking for some books on Java to read or tutorials to learn from as well. Download … | |
Re: Since you have got an experience in C++, You should be able to grasp Java or python easier. Depedning on what you're looking for. IF you're after fast development, then Python it is you choice. Otherwise, Java is the choice if you're after a long-term development. If you want tp … | |
Re: Check out these websites http://www.thejavascript.com/ or http://www.javascriptkit.com/ if these aren't much help, ask our brother Google! | |
Re: You will have to go through the CSS file and see what is not working exactly. If you find any, then try to replace it with something else or if there is not an alternative way then it means it is not supported. | |
Re: Here is what you need. It has the doctype declared and also the document elements declared. IF you take all that and paste into a notepad and save the document as index.html, then try running it in a browser. You will definitely not see anything other than the title for … | |
Re: Try to access the localhost from a browser and see what error you get. Then, post the error here so we can help you more. | |
Hi everyone, I'm looking for the page that explains the rankings within DaniWeb community and shows how many posts are needed to move you up to the next level and stuff. Cheers! | |
Hi there, I would like to know what the differences between primitive string type and object string type are because I declared both of them and had a look the functions that I can invoke on them. They are the same functions. Can anyone explain the differences/similarities please? | |
Re: What is wrong with your code? Is there a particular section that you need help with? | |
Re: You may need to change some property values in your CSS file. Have a look at this tutorial http://www.electrictoolbox.com/jquery-superfish-menus-plugin/ | |
Re: OR maybe you access any hosting website behind the scene and once you get some data then you display it to your users. | |
Re: Refer to the plugin you're using. They should have some description for the functions. | |
Hey there, Why does the function compact not work for me? it is a function according to the javascript documentation. The problem is, however; if I add the brackets after it, the browser complains for some reason and it says compact is NOT a function. Also, with the function parseInt, … | |
Re: > I found John Doe for you. > From: Koyara Uemintoh > Sent: 2012.07.15 01:55 > > I've found your scumsucker. > > She is in the Boranai system, Throne Worlds constellation of the Domain region. > OR It's like this > He is at Amarr VIII (Oris) - Emperor … | |
Re: I haven't used blogspot at all. If blogspot provides you with a CMS or something similar to this, then you should be able to configure your site through the settings. Display older posts and who can see your posts and stuff like that. | |
Hi there, I was reading a book on the plane and something interesting came to my mind that needs an answer. The length property of objects is a read/write value. Let's say, you've got an array that has 6 elements in it and you change its length to 10 as … | |
Hi everyone, The function I've got works perfectly but the problem is that it displays the message quickly and then the message disappears for some reason. Am I doing something wrong?? function validateForm(){ var input0 = document.getElementById('input0').value; var input1 = document.getElementById('input1').value; var input2 = document.getElementById('input2').value; var input3 = document.getElementById('input3').value; var … | |
Hi everyone, I am looking for an editor or plugin for Komodo or Eclipse that provides me with the CakePHP function autocompletion and syntax correction as well. Thank you all. | |
Re: do { // Output your article HTML if($advert) { // Output your advert } I don't want to confuse mtho. But I would like to understand this section of code. OK. It is going to start printing out **the first article** and then it will check for the boolean value … | |
Hi everyone, I was in a group meeting for a project and my group members were talking about minimizing the number of tables and having two big tables and one or two small tables connected to the main big ones. The question is : What is better to have less … | |
Re: Have you got any code yet? If you do, please post it here using the code element next to Italic. | |
Re: The JVM is indeed a platform independent. That means you can develop programs on Windows and fortunately, you can run them on Linux, Mac and Windows. The beauty of the JVM provides programmers a way of using the same native code on different platforms. On the other hand, objective-c developed … | |
Hi everyone, Would anyone suggest good tutorials on simple game programming in javascript preferably using HTML4 ? Thank you.. | |
Re: Google also provides JavaScript API's for their maps if you want something faster in terms of giving your users reponse. | |
Hi there, why does the sort function not sort out numeric values depending on their values(large to small or small to large)? var drinks1 = [40,30,10,20,100]; println(drinks1.sort()); // this will give you 10, 100, 20, 30, 40 it sorts those values as follows: 10,100,20,30,40 Is there a way of changing … |
The End.