No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
25 Posted Topics
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
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 … ![]() | |
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. … | |
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. | |
Re: 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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: [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. | |
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 … |
The End.