Forum: Java Nov 2nd, 2009 |
| Replies: 0 Views: 182 Hello to all, I would like to ask if someone knows any way to display a .swf file in a Java application. I found this link about an API that allows that - http://www.jpackages.com/jflashplayer/ , but... |
Forum: ASP.NET Aug 19th, 2009 |
| Replies: 2 Views: 244 But I'm not working in Visual Studio, but in Web Developer, and this is not an ASP.NET project, but a website, so I do not see .dll files, only .aspx. .asmx (my web service, including .disco etc) and... |
Forum: ASP.NET Aug 18th, 2009 |
| Replies: 2 Views: 244 Hi, I get this error when I try to access my project which I've just put up on a server - Compiler Error Message: CS0246: The type or namespace name 'DataSet1TableAdapters' could not be found (are... |
Forum: ASP.NET Jul 31st, 2009 |
| Replies: 6 Views: 460 Thanks to all of you, this thread has been solved. Greetings. |
Forum: ASP.NET Jul 30th, 2009 |
| Replies: 6 Views: 460 The reasoning is that by not using the built-in controls you learn more on how to code them on your own. However, even if I were using the built-in control, I guess I would have this problem again. I... |
Forum: ASP.NET Jul 30th, 2009 |
| Replies: 6 Views: 460 Hello, I have this application that would let a user register (I used an ASP.NET control for that one), and then log in (I do not use ASP.NET control for the login, I am making it myself). When an... |
Forum: Oracle May 31st, 2009 |
| Replies: 5 Views: 971 I created a sequence STARTING WITH the value that's by one greater than the maximum value in my primary key column, so there wouldn't be any errors (no overlapping). So, that actually solves my... |
Forum: Oracle May 31st, 2009 |
| Replies: 5 Views: 971 I found it better to use a "form" page, which is automatically bound to one table, so I will be able to insert data into that particular table. But, I have a problem here too :( Since my table (the... |
Forum: Oracle May 26th, 2009 |
| Replies: 5 Views: 971 Hi, I created a simple application in Oracle APEX, and on the first page (blank page), I put a textbox. Now, I want to be able to insert the input data from the textbox into the tables, e.g. insert... |
Forum: ASP.NET May 9th, 2009 |
| Replies: 1 Views: 770 Hi, I have this little application in ASP.NET, written in C#, it's about keeping simple information about clients, so I have the user enter info, and then, another page when he or she can update the... |
Forum: Database Design Apr 30th, 2009 |
| Replies: 2 Views: 723 I have no idea how I missed that :) Thanks a lot ! Greetings. |
Forum: Database Design Apr 29th, 2009 |
| Replies: 2 Views: 723 Hello, I am trying to run my tables in the Sql Workshop using the Sql Commands option in Oracle, and I get this error - "ORA-00922: missing or invalid option". I read that this is somehow related to... |
Forum: ASP.NET Mar 16th, 2009 |
| Replies: 3 Views: 793 Thank you very much, I see the difference now, and yes - it had been automatically done. Greetings |
Forum: ASP.NET Mar 15th, 2009 |
| Replies: 3 Views: 793 Hello, I am quite new in ASP.NET, I am currently studying C# (still am at the beginning), and I got this task to separate the "code for the presentation part", so I would get two separate files -... |
Forum: Graphics and Multimedia Feb 7th, 2009 |
| Replies: 0 Views: 730 Hello, my friend here is making a component in Flash, but he was working with Action Script 2, and now he needs to convert it to AS3. so that it would be able to work with FlashPlayer 10 . Can... |
Forum: Java Jan 27th, 2009 |
| Replies: 4 Views: 437 Well, you are right. I kind of got into this these days, and it is interesting indeed. Thanks for the help, I appreciate it. Regards. |
Forum: Java Jan 25th, 2009 |
| Replies: 4 Views: 437 OK, thanks for this one, but I have seen these classes, and I am asking if there's another class somewhere, 'cause these are not quite a tree class... I guess I will have to work with my own classes... |
Forum: Java Jan 25th, 2009 |
| Replies: 4 Views: 437 Hello, I would like to ask is there any class connected with the Tree data structure in the Java Api, since I couldn't find one. I'm just starting to study the Binary Search Trees, the Heap data... |
Forum: Java Dec 26th, 2008 |
| Replies: 7 Views: 1,569 Well, you are right :) I just cannot see how I missed it... I had my project named different from my class, so I was looking for the class name in my Eclipse Workspace all along... So foolishly of... |
Forum: Java Dec 25th, 2008 |
| Replies: 7 Views: 1,569 I think i almost solved it, but I get this "FileNotFoundException", although I have this "izraz.txt" file in the correct location. Can anyone take a look at the code please ? Thanks in advance.
... |
Forum: Java Dec 15th, 2008 |
| Replies: 7 Views: 1,569 I got this far, but I guess this doesn't help..
import java.util.*;
import java.io.*;
public class Stack {
private int top;
private String [] stack; |
Forum: Java Dec 15th, 2008 |
| Replies: 7 Views: 1,569 I think I can try with this one
if(st.nextToken() == "+" || st.nextToken() == "*"){
But it would be hard to do it... |
Forum: Java Dec 15th, 2008 |
| Replies: 7 Views: 1,569 Hi to all, I am stuck with these problem, so I must ask for a little help. I have this "postfix notation" expression " 5 9 + 2 * 6 5 * + " ,written in a file "izrazi.txt". So , I am supposed to read... |
Forum: Java Dec 14th, 2008 |
| Replies: 2 Views: 854 Thanks a lot ! I see the mistake now, I keep forgetting about the mighty Object class :) This really helped me. Have a nice day ! |
Forum: Java Dec 14th, 2008 |
| Replies: 2 Views: 854 Hi, I have this little program with two classes in it. The first class Kontakt (Contact in english) contains information about a person (name,surname and number). Now, in the PhoneBook class I am... |
Forum: Java Dec 12th, 2008 |
| Replies: 5 Views: 451 OK, thank you very much, I must say I got a really clearer picture of what's happening when throwing an exception. I will try to write a few classes, I hope there'll be no problems at all. Thanks... |
Forum: Java Dec 11th, 2008 |
| Replies: 5 Views: 451 Thanks for the link, it is helpful. I understand that there are these so called "Runtime Exceptions", I'm not really interested in them. I will give you this kind of example so you would understand... |
Forum: Java Dec 11th, 2008 |
| Replies: 5 Views: 451 Hello, I'm new in Java programming, just learning it and I want to ask you about the Exceptions. As much as I understood, I just need to create a class e.g. "MyException" that extends the Exception... |
Forum: C++ Sep 5th, 2008 |
| Replies: 5 Views: 965 Hello to all, can anyone please explain to me the following: I know how to use the copy constructor, I know that it's used only in the initialization, when i wanna initialize a new object using an... |
Forum: C++ Aug 8th, 2008 |
| Replies: 15 Views: 1,414 Hello, I was just looking up the threads and I must say I saw a lot of codes with "std::string", "std::cout", etc... I just wanna ask, wouldn't it be better if you just wrote "using namespace std"... |
Forum: C++ Aug 4th, 2008 |
| Replies: 3 Views: 2,031 Thanks a lot, the #include statement was missing :S. It's ok now, thanks again |
Forum: C++ Aug 4th, 2008 |
| Replies: 3 Views: 2,031 I get an error when I try to give this button a na ction of showing a new form. It says:
"error C2039: 'poeni' : is not a member of 'IgraBobi'". But this "poeni" form IS a member of the "IgraBobi"... |
Forum: C++ Aug 4th, 2008 |
| Replies: 2 Views: 424 Ok, int main it will be :) Thanks man, I appreciate it. |
Forum: C++ Aug 4th, 2008 |
| Replies: 2 Views: 424 I got this error and have no idea what it means... May i get a little help please ?
error C2059: syntax error : ']'
[
#include <iostream>
using namespace std;
int broj (int be, int a[])
{... |
Forum: C++ Aug 2nd, 2008 |
| Replies: 1 Views: 981 Hi, may I ask for a little help ? I don't know how to type a command for selected radio button. I mean - for example - if radio button is selected do this... I know there is a function KeyPress, but... |
Forum: C++ Jul 29th, 2008 |
| Replies: 3 Views: 435 Hi, I would like to ask you for help in converting this code from C to C++. It's my little friend 's homework, but I can't help him 'cause I know nothing about C :( In fact, I just can't figure the... |
Forum: C++ Jul 26th, 2008 |
| Replies: 6 Views: 566 OK, I won't do this again, I promise. And dude, try to understand the solution. it wasn't easy for me to write it, I'm a newbie you know. |
Forum: C++ Jul 26th, 2008 |
| Replies: 6 Views: 566 Man, I realise that you could solve the problem right away, I know you guys are experienced and these problems are too easy for you. I just wanted to help the dude like some of you guys helped me.... |
Forum: C++ Jul 26th, 2008 |
| Replies: 6 Views: 566 I just got some kind of solution, I think it would work. Try this out, and please tell me if it does the job. Cause I'm a new guy too :)
[
#include <iostream>
using namespace std;
void main... |
Forum: C++ Jul 24th, 2008 |
| Replies: 6 Views: 843 Well, I decided to replace the textboxes with radiobuttons, so I'm fine now, but thanks a lot, this helped me very much in planning my future projects ! You people rock :) Not everyone would do this... |