Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~14.7K People Reached
Favorite Tags

25 Posted Topics

Member Avatar for marcosjp

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 network. I'd like to be able to open a terminal window on …

Member Avatar for tracedinesh
0
209
Member Avatar for marcosjp

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 able to clearly communicate what will be contained in …

Member Avatar for stevenpetersen
0
370
Member Avatar for marcosjp

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 to test it to see if its ok, I ve been scanning my own machine …

0
87
Member Avatar for marcosjp

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 Windows version using AS, but it would be a lot better if I could do it …

Member Avatar for mitrmkar
0
146
Member Avatar for marcosjp

Hi! I'm using a C program to open PDF files with this code: [code=c] ShellExecute(GetDesktopWindow(), "open", "c:\\someFolder\\myFile.pdf", NULL, NULL, SW_SHOWNORMAL); [/code] Now I need to go furthrer; I need to open the PDF file at a certain page. I've tried [code=c] "c:\\someFolder\\myFile.pdf#page=5"... [/code] ...as is suggested in Adobe's docs, but …

Member Avatar for Prabakar
0
2K
Member Avatar for ghostdogg01

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 this template from, the URL to it so we …

Member Avatar for seanansari
0
132
Member Avatar for apollokid

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 SQL. You can use the in_array function to check if a searched product name is present …

Member Avatar for marcosjp
0
130
Member Avatar for marcosjp

Hello there! I need to open PDF files from a C program. So, initially I have this solution: [code=c] ShellExecute(GetDesktopWindow(), "open", "c:\somefolder\myFile.pdf", NULL, NULL, SW_SHOWNORMAL); [/code] However, this code has its limitations: 1. It works, but a shell window comes up and closes when opening the PDF file. Is there …

Member Avatar for marcosjp
0
165
Member Avatar for marcosjp

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 code... What is the best solution to develop something like this? Javascript? Forms are …

Member Avatar for diafol
0
156
Member Avatar for marcosjp

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? I've heard it's even possible now to actualy open PDF files INSIDE Flash player. …

Member Avatar for peter_budo
0
89
Member Avatar for marcosjp

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 diagrams.

Member Avatar for roryt
0
138
Member Avatar for gproggramer175

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 LOVING it. Now, if you're just starting, try creating text based games and practice …

Member Avatar for MattEvans
0
94
Member Avatar for marcosjp

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 I guess this is realy the right choice). Now, I must also know how to store …

Member Avatar for marcosjp
0
270
Member Avatar for marcosjp

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 mis-match. Retry to keep going. Cancel to exit. The same program runs smoothly on another computer with a very …

0
43
Member Avatar for marcosjp

Hello there! How can I convert an INT value into a string? I used the itoa function successfully in Windows: [code=c]itoa(the_int_number, the_string, 10);[/code] It worked fine in Windows (DevC++) but Linux did not recognize this function. Does anyone know another way of converting INT into char[n] in C that Linux …

Member Avatar for ArkM
0
9K
Member Avatar for marcosjp

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: [code=c]void printOctets(int octets[][], char []); void printInterval(int suntwk[][], int brdc[][]); [/code] This is a college assignment and I'm …

Member Avatar for marcosjp
0
102
Member Avatar for marcosjp

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 change the system time based on the timestamp received from the server. What would …

Member Avatar for ArkM
0
243
Member Avatar for codered152

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. Yes, learning AS2 is a lot easier then AS3, BUT, and this is a huge but, AS3 is much …

Member Avatar for erico564
0
157
Member Avatar for allena

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 you write a program in C (or C++, Java, Python, etc) you will be able to compile …

Member Avatar for marcosjp
-1
177
Member Avatar for marcosjp

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 but, apparently, one of the objects is just a copy of the other. And if …

Member Avatar for marcosjp
0
154
Member Avatar for marcosjp

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 I tried to do the same using a class, things became strange... Okay, I wrote this …

Member Avatar for marcosjp
0
314
Member Avatar for marcosjp

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 should except for one thing: in one of the tabs I included a JTable that lists …

Member Avatar for jwenting
0
127
Member Avatar for marcosjp

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 table, I get this error message: java.sql.SQLException: Can not issue data manipulation statements with executeQuery(). 0 S1009 …

Member Avatar for masijade
0
125
Member Avatar for hsma

[QUOTE=hsma;589448]#include <cstdlib> file_c = i + f; file_d = i + o; The problem im having is getting the file to open.[/QUOTE] You cannot concatenate strings this way in C/C++. Use strcat. Like strcat(str1, str2); Hope this helps.

Member Avatar for hsma
0
145
Member Avatar for marcosjp

Hi there! I'm new to Java and just arrived at this forum. I hope I can get some help here - getting a little desperate. Well, I have to develop a small game in Java and in this game the user must be able to click on different spots on …

Member Avatar for marcosjp
0
158

The End.