Forum: *nix Software May 21st, 2009 |
| Replies: 0 Views: 678 Hi there!
As a College assignment I must write a network scanner that will create a report containing all open ports and some network statistics etc.
The code is almost done.. however, as I need... |
Forum: C++ Mar 3rd, 2009 |
| Replies: 1 Views: 381 Hello there!
Is it possible to detect the Windows version (or at least detect if it's XP or Vista) from a C++ code?
I'm working on an ActionScript/C++ solution and, right now, am detecting... |
Forum: C Feb 12th, 2009 |
| Replies: 13 Views: 1,934 Hi Prabakar,
What I've found out is GetDesktopWindow() works a bit different in Vista: it does not accept the directory info in the third parameter. So you have to indicate the directory in the... |
Forum: C Feb 11th, 2009 |
| Replies: 13 Views: 1,934 Hey Prabakar,
You mentioned you use a portable reader. Maybe this is a solution, where do I get it?
I've googled it and found so many different options... is there one from Adobe?
Thanks! |
Forum: C Feb 11th, 2009 |
| Replies: 13 Views: 1,934 Well.... I was too quick to celebrate...
It works fine in Win XP, but not on Vista.... oh well...
I wonder why!! |
Forum: C Feb 11th, 2009 |
| Replies: 13 Views: 1,934 THANK YOU!!!
Thank you VERY MUCH!
You saved my day!!!
Thanks!
All the Best! |
Forum: C Feb 9th, 2009 |
| Replies: 13 Views: 1,934 Well, so far I've not succeeded in making it work.
It is very easy to get the righ result when you open PDF files in a web browser: all you have to do is follow the PDF file name with the #page=n... |
Forum: PHP Feb 6th, 2009 |
| Replies: 1 Views: 543 What you can do (as one of many possible solutions) is create two arrays each containing the product names valid for furnishing and lightings and then use a conditional structure to build the final... |
Forum: C Feb 6th, 2009 |
| Replies: 13 Views: 1,934 Hi!
I'm using a C program to open PDF files with this code:
ShellExecute(GetDesktopWindow(), "open", "c:\\someFolder\\myFile.pdf", NULL, NULL, SW_SHOWNORMAL);
Now I need to go furthrer; I... |
Forum: C Feb 6th, 2009 |
| Replies: 4 Views: 387 Great! Actually, there is:
Toos->Compiler Options->Settings->Links->Do not create a console windows->Yes.
Thank you. |
Forum: C Feb 6th, 2009 |
| Replies: 4 Views: 387 You're right. Actually my original file did have different letters after the slash ahd DID work. Anyway thanks for the tip.
I will ask this in a different way. Forget Windows. How do I get... |
Forum: C Feb 6th, 2009 |
| Replies: 4 Views: 387 Hello there!
I need to open PDF files from a C program. So, initially I have this solution:
ShellExecute(GetDesktopWindow(), "open", "c:\somefolder\myFile.pdf", NULL, NULL, SW_SHOWNORMAL);
... |
Forum: PHP Jan 27th, 2009 |
| Replies: 3 Views: 438 Hello!
I created a simple CMS with PHP/MySQL and would like to make it easy for people to insert some formatting, such as bold, italics, underlined, links, etc., so that they don't have to know html... |
Forum: Graphics and Multimedia Jan 15th, 2009 |
| Replies: 1 Views: 1,419 Hello there!
I need to create a Flash menu for a CD-ROM and open PDF files from it and using Adobe Reader's command line parameters so that the PDF files are open in specific pages.
Possible?
... |
Forum: Site Layout and Usability Jan 8th, 2009 |
| Replies: 8 Views: 1,422 Yep, I always do a video.
Then again, I need the charts. :) |
Forum: Site Layout and Usability Jan 5th, 2009 |
| Replies: 11 Views: 3,770 Fireworks and Photoshop are definitely not good for this purpose.
What I'm looking for is a simpler (cheaper) option for MS Visio 2007, this one really rocks.
The sites are built by myself. ... |
Forum: PHP Jan 4th, 2009 |
| Replies: 1 Views: 1,017 Well, 8 hours ago I posted this desperately in need of an answer. Yes, it's Sunday, but one's got to work hard if he wants to get somewhere faster... No one replied... but... I've found the... |
Forum: Graphics and Multimedia Jan 4th, 2009 |
| Replies: 5 Views: 1,237 Let me see if I get it: you have a Flash template but it's a SWF file, not an open editable FLA file and wants to change the text inside?
Maybe you should start by letting us know where you got... |
Forum: PHP Jan 4th, 2009 |
| Replies: 1 Views: 1,017 Hi there,
I'm building a multilanguage CMS based Web site using PHP 5- MySQL and I'm facing problems with languages.
From what I've been reading I must use charset UTF-8 (as Wikipedia uses this... |
Forum: Site Layout and Usability Dec 29th, 2008 |
| Replies: 8 Views: 1,422 I work with Flash, Dreamweaver, CSS, HTML, PHP, MySQL and more. :o)
Yes, paper is definitely my choice when designing the overall site (or software) structure).
What I need is something to help... |
Forum: Site Layout and Usability Dec 28th, 2008 |
| Replies: 11 Views: 3,770 Hi,
I haven't found any forum where I felt this woud fit so I hope this is not too much off-topic.
I'm looking for a tool to help design the structure of a website to be built. I want to be... |
Forum: Site Layout and Usability Dec 28th, 2008 |
| Replies: 8 Views: 1,422 Hi,
Im looking for a tool to help design the structure of a website to be built. I want to be able to clearly communicate what will be contained in the site when it is finished with the use of... |
Forum: Game Development Oct 24th, 2008 |
| Replies: 11 Views: 1,601 I agree with MattEvans.
C++ and OpenGL are the nicest way to create games.
I know some C/C++, Java, very little C#, some Java and a good deal of ActionScript.
Right now I'm learning OpenGL and... |
Forum: Monitors, Displays and Video Cards Oct 24th, 2008 |
| Replies: 0 Views: 681 Hello there!
I'm trying to run C++ programs using OpenGL library on a machine with a nVidia video card. But... I'm getting this error message:
nVidia OpenGL driver
Driver component sizes... |
Forum: Window and Desktop Managers Oct 4th, 2008 |
| Replies: 4 Views: 3,205 I hope I'm posting this to the right forum; if not, I apologise.
Here's what I'd like to do: I have a PC running Linux and a notebook running Vista, both "talk" (ping) to each other over the... |
Forum: C Sep 28th, 2008 |
| Replies: 4 Views: 6,979 Hello there!
How can I convert an INT value into a string?
I used the itoa function successfully in Windows:
itoa(the_int_number, the_string, 10);
It worked fine in Windows (DevC++) but... |
Forum: C Sep 14th, 2008 |
| Replies: 2 Views: 549 Indeed!
Solved the problem.
I specified the array dimensions and things worked perfeclty.
This is what happens when you stop working with a language for some time and delve into another one.... |
Forum: C Sep 13th, 2008 |
| Replies: 2 Views: 549 Hello there!
I wrote a small program in C on Windows using DevC++. It works perfectly, but when I try to run it on Linux I get compiler erros at these lines:
void printOctets(int octets[][],... |
Forum: C Aug 26th, 2008 |
| Replies: 5 Views: 925 Hello there!
I've built a simple server and a simple client in C (Linux).
Among other tasks, I need the server to send the timestamp (using time.h) to the client.
Then I need the client to... |
Forum: Graphics and Multimedia Jul 14th, 2008 |
| Replies: 6 Views: 1,213 I must disagree with antwan1986 as for the ActionScript version.
My advice is DON'T start with ActionScript 2, reasons being:
1. It's past. Present and future is definitely ActionScript 3.
2.... |
Forum: Assembly Jun 30th, 2008 |
| Replies: 1 Views: 814 Assembly is the closer you can get to the computer hardware with a programming language.
Instead of using IFs, WHILEs, etc., you will move values to registers and memory locations by hand.
If... |
Forum: Python Jun 30th, 2008 |
| Replies: 2 Views: 722 Oh, I see! Thank you!
Now it works!
Thanks a lot! |
Forum: Python Jun 29th, 2008 |
| Replies: 2 Views: 722 Hello there, again!
Well, once I solved the stupid bug I had in my first Python class ever, now I'm getting results I wasn't expecting.
The problem is: I instantiated two objects of this class... |
Forum: Python Jun 29th, 2008 |
| Replies: 1 Views: 517 Hello!
Well... aham... I found the bug.
The line in which I appended the values to the array was outside the for. Hence the index out of range error message.
The for structure should read,... |
Forum: Python Jun 29th, 2008 |
| Replies: 1 Views: 517 Hello!
I'm studying Python and wrote a very simple class to work with bidimensional arrays - just as an exercise.
Before writing te class I played around with functions and they worked fine.
When... |
Forum: Java Jun 7th, 2008 |
| Replies: 2 Views: 1,774 Hello!
As a college assignment, I'm finishing a small applet that communicates with a MySQL database (through a Java server via RMI - all this is part of the assignment).
It's doing all it... |
Forum: Java Jun 5th, 2008 |
| Replies: 1 Views: 1,341 Hi there!
I'm building a small application using Java and MySQL (college assignment).
Everything is ok when all I'm doing are queries using SELECT.
Now, when I try to INSERT anything in the... |
Forum: C++ Apr 20th, 2008 |
| Replies: 3 Views: 2,252 You cannot concatenate strings this way in C/C++.
Use strcat.
Like strcat(str1, str2);
Hope this helps. |
Forum: Java Mar 23rd, 2008 |
| Replies: 6 Views: 3,202 Right now, as I do not have too much time ahead, I'll go for the first solution as it seems to be simpler to do (for me, at least).
Yes, I definitely have what I need to go ahead!
Thank you very... |
Forum: Java Mar 23rd, 2008 |
| Replies: 6 Views: 3,202 Thanks a lot! It works! :)
So you're saying I can do the same with each Square individually?
I've tried changing Squares code and including exactly the same from MyPanel, but nothing happened. ... |