No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
32 Posted Topics
Hi, I have one script that should check for a couple of checkboxes which one of them is checked, and store their values, then post them back to the controller(it's an MVC application, but that is not that much important). I am doing this using an additional hidden input field, … | |
Hello, I would like to ask a plain and simple question about the Model-View-Controller architecture, in particular its implementation in ASP.NET - should the UML Class diagram for my application include all the controllers and views and their relationships, or should I just include my model classes, i.e. the entities … | |
Hello, I am just starting to play with ASP.NET MVC, I need to build a project for my school activities and I'm stuck with this (probably) simple thing, but I haven't got a clue... I need to present a View that contains checkboxes to choose from, this part of the … | |
Hello to all, I am building an application in AS3 that loads swf files using UILoader. Each swf file has its own sounds included and the problem is that when I load the files - I load them all at once, and I need to show one at a time, … | |
Re: This is not the place for insulting or fighting. The best way for you to do this is probably using PL/SQL, like with procedures,triggers etc... Do you have any knowledge of PL/SQL? If not I suggest you read some basic tutorial, like this one - [url]http://www.plsql-tutorial.com/[/url] I do not know … | |
Re: [QUOTE=somini;1355317]Hi Yugoza, I know this is fairly old post but i am stuck with the same ternary relationship problem. Were you able to map the ternary relationship into sql tables? If yes, please provide me the details. Thanks[/QUOTE] Hi, I do not know the exact design of your database, but … | |
Hello to all, I did not know how to entitle this post,since it is more of a logical problem,but it's connected to the writing of my objects to a file. So, my server expects connections from multiple clients. The clients vote for the candidates offered to them by a menu, … | |
Re: You have written your code logic in separate functions that you do not call in the main method. You should call the methods in main(), or write the logic directly in the main method. | |
OK, so I want to thank all of you that helped me with my little problems within the past few days,I have almost come to the end of this project thanks to your suggestions. Now the thing is, I used ObjectInputStream & ObjectOutputStream to write down whole objects to a … | |
Hi again. I just wrote here to ask for a little help yesterday, so I got the help and worked that out, and I'm just curious about something I am going to do in the following couple of days, as soon as I work the network part of this project. … | |
Hi, I'd like to ask for a little help. I have this program that handles basic voting,but it should be done client-server,i.e. the server offers questions and multiple clients connect to vote,the server stores the answers etc... I haven't even come to that point of storing etc.,cause I'm stuck here … | |
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 - [url]http://www.jpackages.com/jflashplayer/[/url] , but it's for Windows only (including some way of converting, so Mac would not be … | |
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 old object... But what I don't understand is how will I know when … | |
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 you missing a using directive or an assembly reference?). The line it's complaining about … | |
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 user register, I am sending their data to an Oracle database, … | |
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 new first name, last name etc... Can someone tell me if … | |
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 information, particularly the address. So I have a textbox where the new information is … | |
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 the NOT NULL option, but I think this is how my table … | |
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 - Test.aspx and Test.aspx.cs. i know that the .cs is actually the C# … | |
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 someone tell me if this is possible,and how to do … | |
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 structure etc. As far as I could see until now, I will have … | |
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 it from the file, … | |
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 trying to implement a LinkedList <Kontakt>, i.e. a list of contacts. Now, all the methods work fine, … | |
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 class, and use the exception specification "throws" in the function that might throw the … | |
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" instead ? I am doing it all the time, but if it's wrong … | |
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" solution. I added it correctly, why doesn't it recognize … | |
I got this error and have no idea what it means... May i get a little help please ? error C2059: syntax error : ']' [code][ #include <iostream> using namespace std; int broj (int be, int a[]) { int br=0; int f=0; int b[200]; for(int i=0;i<=br;i++) { for (int j=0;j<=br;j++) … | |
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 do not know how to use it, thanks … | |
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 "scanf" part out, I think the other part … | |
Re: 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 :) [ [code]#include <iostream> using namespace std; void main () { char name[30]; cout<<"Enter a name "; cin.getline(name,30); for (int … | |
Hi, it's me again with another question. Here is the thing. I have a small game - a picture is shown and you should type the name of the person that's on the picture. Then you have a "check" button which when clicked checks if the answer is correct or … | |
Hi , can anyone tell me what does this error mean? s\visual studio 2005\projects\igrabobi\igrabobi\Form1.h(124) : error C2451: conditional expression of type 'void' is illegal ? I got it when I tried to build my game. Thanks a lot |
The End.