Forum: Networking Hardware Configuration Oct 20th, 2009 |
| Replies: 0 Views: 321 If you were asked to offer a multi-site video conferencing solution, where quality is more important than price, what would you offer? With my current knowledge I can offer just two things: 1) Use... |
Forum: C++ Oct 8th, 2009 |
| Replies: 4 Views: 257 atoi("0");
(int ) text[0]-48 |
Forum: C++ Jun 12th, 2009 |
| Replies: 10 Views: 624 Could you please copy-n-paste what you are getting as an output after deleting 7's. Have you validated your appendNode function? have you validated your print function?
Could you please post all... |
Forum: Graphics and Multimedia Jun 12th, 2009 |
| Replies: 10 Views: 1,488 Hi, Jason
Thanks again.
Since deadline is almost reached, I've decided to apply a "rude" solution to this problem.
I've decreased cell size to 30x30. And since max array size 140, I've made my... |
Forum: C++ Jun 11th, 2009 |
| Replies: 10 Views: 624 Hi.
I think you've declared tmp to be an integer, it should be a pointer to ListNode.
ListNode * tmp ; |
Forum: C++ Jun 10th, 2009 |
| Replies: 10 Views: 624 Here you are directly freeing up the the node, deleting it. So if it's in the middle or at the beginning of the linked list, your list is corrupted, broke.
head->2 -> 7 -> 1 -> 7 -> 12 -> 7
... |
Forum: C Jun 10th, 2009 |
| Replies: 9 Views: 562 That's the point. We all started at that stage, and it's good idea to give more information than compiler does in order to be helpful. I'm not accusing him/her for lack of knowledge, I'm not expert... |
Forum: C Jun 10th, 2009 |
| Replies: 9 Views: 562 well guys, I thought before posting.
A person who couldn't resolve this kind of error, wouldn't understand the explaination of Salem, which is just a little bit more desciptive than compiler error |
Forum: Graphics and Multimedia Jun 9th, 2009 |
| Replies: 10 Views: 1,488 Hi, guys
I've a little problem, again. Before closing the thread I just wanted to ask. As you might have seen from the code, I'm reading array from the file. I want my flash to be resized depending... |
Forum: Graphics and Multimedia Jun 9th, 2009 |
| Replies: 10 Views: 1,488 JasonHippy
Thanks. As always your answer is correct and in place.
I don't know how can I thank you, if you were in Canada, definitely I would have to buy you a coffee :)..
Thanks again.
BTW,... |
Forum: C Jun 9th, 2009 |
| Replies: 9 Views: 562 Change "int fact;" to "int anotherVariable;" |
Forum: Graphics and Multimedia Jun 8th, 2009 |
| Replies: 10 Views: 1,488 I forgot to tell you guys that I've tried it in a standalone player (Media Player Classic - with flash player on it), and it's working great on standalone player.
I'm attaching my files, but I... |
Forum: Java Jun 8th, 2009 |
| Replies: 7 Views: 1,228 1) You can use space to seperate tokens
2) You can use string tokenizer in order to reduce you code and pain
It's not possible to solve your problem with few line changes, you've to change the... |
Forum: Graphics and Multimedia Jun 8th, 2009 |
| Replies: 10 Views: 1,488 I'm playing it locally, and the file containing data is located in the same directory as flash animation. And I'm loading file just by name "data.txt", so file should be in the same folder as flash... |
Forum: Graphics and Multimedia Jun 7th, 2009 |
| Replies: 10 Views: 1,488 Hi, guy
I've created an animation (swf file) using AS3 and FlashDevelop.
I'm able to compile and play it in FlashDevelop but when I open it in any browser (IE, Firefox, Chrome) I just see the... |
Forum: Java Jun 7th, 2009 |
| Replies: 7 Views: 1,228 Very bad style of programming and it's difficult to read your code.
Try to use stringtokenizer to parse the string, try to avoid unnecessary variable creation within a loop, try to see what variable... |
Forum: C Jun 1st, 2009 |
| Replies: 4 Views: 761 1-tip:
Each time you are calling malloc, it's giving you totally different location, so old values that you have stored are left in old location. Try realloc.
if (count>size){
... |
Forum: *nix Software May 28th, 2009 |
| Replies: 2 Views: 1,314 We've created seperate account for each possible user. This was the best choice considering security policies in our company.
Thanks a lot. |
Forum: C++ May 12th, 2009 |
| Replies: 5 Views: 1,353 When you call malloc, it gives you a pointer to the dynamically allocated memory. The first few bytes show how much memory is being allocated so that "free" knows how much space to release. If you... |
Forum: C May 12th, 2009 |
| Replies: 14 Views: 832 Church
Google using keywords "free download english dictionary words for brute forcing" there will be tones of free downloadable dictionaries.
jephthah:
No problem
Number of permutations... |
Forum: C++ May 11th, 2009 |
| Replies: 5 Views: 1,353 If it's dynamically allocated "array" (A pointer to the adress where R pointers a stored, each in terms pointing a beginning of the mermory that holds C number of T typed items), it seems for me... |
Forum: C May 11th, 2009 |
| Replies: 14 Views: 832 It seems you didn't understand the problem itself. Just a reminder for you:
How would you know which one is the solution to the problem? You are not brute forcing to make a word only,... |
Forum: C May 11th, 2009 |
| Replies: 14 Views: 832 It seems for me that this problem is not solvable. You would never know whether you have hit true solution or not. Besides character permutations there will be word permutations also. But as... |
Forum: C May 10th, 2009 |
| Replies: 3 Views: 323 You can store it in a char (8 bit) variable.
Even if "char" gives impression of "character" variable actually it's just a integer of 8 bits.
This should solve you problem if I got it correctly.... |
Forum: Graphics and Multimedia May 9th, 2009 |
| Replies: 6 Views: 1,650 JasonHippy
Thank you very much for forwarding me to an easier way of doing it. I've installed flashdevelop and using it. Now I realized that AS3 is really programming language with all OO properties... |
Forum: Graphics and Multimedia May 3rd, 2009 |
| Replies: 6 Views: 1,650 More Info:
I'm using Micromedia Flash MX Professional 2004 (version 7.0.1)
ActionScript 2
1) I created a movie clip ("arrow") and added following code to the movie clip.
onClipEvent... |
Forum: Graphics and Multimedia May 1st, 2009 |
| Replies: 6 Views: 1,650 Hi, Experts
I really need to do following animation:
Arrows moving on some path (to be determined by a function). Let's this path to be circle. I want several arrows (number of arrows must be... |
Forum: Graphics and Multimedia Feb 10th, 2009 |
| Replies: 1 Views: 629 Hi,
I was looking for an animation that gets names of winners (1,2,3 place) and shows them in an attractive way. They way of getting input is not important, it might read from file or anything.... |
Forum: JSP Feb 2nd, 2009 |
| Replies: 0 Views: 443 Hi,
I don't know whether this is correct place to ask, but since my application is J2EE application (JSP) I'm asking it here.
We've several web applications, some of them are J2EE applications... |
Forum: C++ Jan 30th, 2009 |
| Replies: 4 Views: 302 You may want to implement your own Double Class (which will hold data as a string internally) |
Forum: *nix Software Jan 22nd, 2009 |
| Replies: 2 Views: 1,314 Hi,
I've a *ix machine and I need to share some folders with Windows users. I use samba for this purposes. Samba is set-up and works fine. All windows users use one id to mount (net use) samba... |
Forum: C++ Jan 7th, 2009 |
| Replies: 6 Views: 391 I have thought about the way you proposed earlier. But this way does NOT guarantee that I'll signal T1 inside X(). Unfortunitly, we can't make any assumptions about the time spent by X();
How... |
Forum: C++ Jan 6th, 2009 |
| Replies: 6 Views: 391 ok :)
the problem is that I can't solve it even algorithmically/theoretically- so I've not "tried" it. Algorithmically, I can NOT determine how can I signal/interrupt exactly inside the function... |
Forum: C++ Jan 6th, 2009 |
| Replies: 6 Views: 391 Hi,
Thanks for you quick reply.
I think I couldn't explain my problem correctly.
T1 is calling X(), I want to send a signal to T1 when it's inside the function X(), not before calling it nor after... |
Forum: C++ Jan 6th, 2009 |
| Replies: 6 Views: 391 Hi, experts.
I want to test whether (third library) function (say X) is interruptible or not.
For this, I want to create two threads one for calling function X, the other for interrupting (sending... |