- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
40 Posted Topics
hi! What is makefile? How does it work? Is it done in the terminal? I am using Unix OS
Great thesis! Try to study JSP and PHP. ------------------------------------------------- <SPAM>
Hi hellojohnatan, I actually use scripts for this. I am using this one [url]http://www.twospots.com/free-users-online-counter/[/url] . -------------------------------- <SPAM>
Hi, I have found a very nice article about creating a pdf using php. <SPAM> ----------------------------------------- <SPAM>
:D nice one phpbeginners. I also forgot to add that line when I first tried the php mailer. ----------------------------------- <SPAM>
Hello, How could this be possible: SuperClass has a method named executeMe(), Subclass1 that extends Superclass has also method named executeMe(), Subclass2 that extends SuperClass has also the same method. When I try to call the executeMe() method from SuperClass, all classes that has been called with the method executeMe() …
Hello all, I am having a problem using HttpConnection.close() in my MIDlet. This happens on certain devices only like N5310, it is working fine on other devices. here is my code: [code=java] try{ HttpConnection http = (HttpConnection) Connector.open(URL); http.setRequestMethod(HttpConnection.GET); ....//some other processes here. }catch (Exception e){ }finally{ if(http != null) …
Hello all, I am having a problem in creating an image by using createImage() method when trying to load large files. FileConnection fc = (FileConnection) Connector.open("file:///" + path + "/",Connector.READ); InputStream fis = (InputStream) fc.openInputStream(); image = Image.createImage(fis); // I got the out of memory exception here. Are there any …
Hello all, I have a few questions in MIDlet securities (for j2me). 1. Are there any ways/codes to automatically press the Ok during the asking of permission from the unsigned MIDlet without any signing made? 2. For example, I bought a certificate from verisign, can I use this to sign …
Are there any chances that I could resize an image using the fileconnection inputstream? FileConnection fc = (FileConnection) Connector.open("file:///" + filePath + "/",Connector.READ); InputStream fis = (InputStream) fc.openInputStream(); I want to resize the image from here because if I use Image.createImage(fis); I am encountering "Out of Memory error", if the …
Hello all! I have some troubles in saving a file by byte chunks, (will use in saving large file size.). My goal is to chunk the file bytes first into a certain size before writing. I have this code: [code=java] FileConnection fc = (FileConnection) Connector.open("file.ext", Connector.READ); InputStream fis = (InputStream) …
<a href="http://www.AWSurveys.com/HomeMain.cfm?RefID=squidx22"><img src="http://www.AWSurveys.com/Pictures/AWS2_ad3_600by100.jpg" width="600" height="100"></a>
hello jake... kumusta kna? hehe
can anybody tell me how to send login info to yahoo server? thanks........
Can anyone tell me where I can get some tutorials regarding Socket programming over http. I want to make an application that enables the user to login to Yahoo IM. pls help me... Thanks...
somebody help me in makefiles pls...... how to create a menu launcher for Unix automatically using only the makefile.. thanx in advance
hi, Is it possible to run a gedit command in the terminal that will create a text file automatically and save it in my desired file extension? For example, if I run: gedit file.txt by default, it will open a null document named file.txt. But all I want is to …
hi, Is it possible to hide the build process in makefiles during the compilation and only display the echoes set? for example: all: g++ -o foo foo.cpp @echo 'building...' If I type in make, the text display in the terminal would only be: building... How would I do this? Thanx …
Try to do it by yourself... There are many sample programs in the internet to learn from.. Learn from others work, but dont just depend on it.. Have some fun... You can do it....
How would I create a desktop launcher of my application? I am using ubuntu.. All I want is to compile the program using Makefile and during the compilation it will then create a desktop launcher automatically. thank you...
Gud day, Suppose I have these files: hello.h hello.cpp main.cpp in what directory will I put the hello.o and hello.hpp so that I will only type $ g++ main.cpp -o main not, $ g++ main.cpp hello.cpp -I. -o main.cpp in the terminal.. thanks.... I will highly appreciate youre response....
Hi gud day! Anybody who knows how to save a file to [U]/usr/include[/U] in the terminal? Suppose I will save a file named hello.h to the said directory, what would I do in the terminal? thank you very much....
hi, I want to make a chat program using c++. Can you give me any site where i could find the concepts in building chat program? I will make a chat program similar to YahooMessenger.
Anyone here who uses wxWidgets? I am a newbie in wxWidgets. I have trouble in inserting an image in my application.. I am using this one: wxImage *img; img=new wxImage("pic.jpeg",wxBITMAP_TYPR_ANY,-1); this code is erotic. What would you suggest? Thanx..
is it possible that when I do this: g++ -c function.cpp the function.o will be generated in the other directory? say for example i have FUNC folder FUNC/function.cpp I want to generate a function.o that is outside the FUNC folder. thanx in advance....
Do you have any links where I can find stuffs in making c++ class archive? thanx in advance
I have these files in SOURCE folder: main.cpp header.hpp implement.cpp I want that when I compile these codes, the object files and the .exe files will be found on the different folder, let's say in folder EXECUTE that is outside the folder SOURCE. Like this: /home/usr/SOURCE * main.cpp * implement.cpp …
Is anyone here uses subversion to keep the C++ header and implementation files to the repository? I need your help... Pls reply.. Thank you...
can I open a file in a URL? for example: fopen("http://example.com/myfile.htm","r") Will this one work? If not, what are the other alternatives in opening a file in the URL.. thanks...
how do I install the package concerning GUI in c++. I am using ubuntu 6.06. tnx.
just asking where could I get complete tutorials about c++ application making through the net.. Ur help is highly appreciated.. thanx... :?:
how do i compile a project with files/codes in a subversion.. suppose I have these files in a version control: folder/implement.cpp folder/head.hpp I want to compile my main.cpp with these files What I did is: $ g++ main.cpp ../svn/folder/implement.cpp -I ../svn/folder/ -o main It doesnt work... Pls give me link …
how could I connect the saved implementations in subversion to the main/test program outside the subversion? I want to use the saved file in the subversion as a library so that i could use it in any programs... tnx in advance...
how do I delete a repository? I have added a repository using $ sudo svnadmin create /usr/svn/repos1 I want to delete it.. i've used $ sudo svn rm usr/svn/repos1 and $ sudo svn delete usr/svn/repos1 but it doesnt work.. it says that usr/svn/repos1 is not a working copy.. What does …
what does subversion mean? how could I apply this in my programs? thanx...
what site could I get complete tutorials in making a program for symbian application?? your help is highly appreciated.. tnx...
below is my program. I want to link the implementation file to main function. // implementation file // imp.cpp #include "myClass.hpp" #include <iostream> using namespace std; int display(void) { cout<<"hello"<<endl; } // main function //main.cpp #include "myClass.hpp" int main() { myClass sub; sub.display(); return 0; } // header file. //myClass.hpp …
how could I link the implementation file to the header file and to the main function. I made this program; // This is my implementation file.. (imp.cpp) #include <iostream> using namespace std; #include "CRectangle.hpp" output() { cout<< "hello"; return 0; } // This is my header file.. #include <iostream> using …
below is my program.. this concerns about IP addresses. this program works, but I have to separate the implementations in a class in the header file aside from main function.. the implementation/ the codes in the header file must be separated in one file and be conected to the header …
somebody help me pls... my task is to search a value that matches to my csv file. my csv file contents is like this: 0,"100","WA" 101,"201","BC" 202,"302","EC" this should be the scenario. enter value: 205 output: BC pls include the codes.. i am just a beginner.. thanks in advance..
The End.
squinx22