Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #3K
~10.8K People Reached
Favorite Tags

40 Posted Topics

Member Avatar for squinx22

hi! What is makefile? How does it work? Is it done in the terminal? I am using Unix OS

Member Avatar for palashjhabak
0
160
Member Avatar for Member #120589

Great thesis! Try to study JSP and PHP. ------------------------------------------------- <SPAM>

Member Avatar for cossay
0
86
Member Avatar for hellojohnatan

Hi hellojohnatan, I actually use scripts for this. I am using this one [url]http://www.twospots.com/free-users-online-counter/[/url] . -------------------------------- <SPAM>

Member Avatar for minitauros
0
140
Member Avatar for thijscream

Hi, I have found a very nice article about creating a pdf using php. <SPAM> ----------------------------------------- <SPAM>

Member Avatar for squinx22
0
166
Member Avatar for Xaibo

:D nice one phpbeginners. I also forgot to add that line when I first tried the php mailer. ----------------------------------- <SPAM>

Member Avatar for squinx22
0
353
Member Avatar for squinx22

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() …

Member Avatar for musthafa.aj
0
96
Member Avatar for squinx22

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) …

Member Avatar for squinx22
0
145
Member Avatar for squinx22

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 …

Member Avatar for articlemaster9
0
111
Member Avatar for squinx22

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 …

Member Avatar for peter_budo
0
55
Member Avatar for squinx22

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 …

Member Avatar for kvprajapati
0
224
Member Avatar for squinx22

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) …

Member Avatar for JamesCherrill
0
89
Member Avatar for preetika

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

Member Avatar for stultuske
0
88
Member Avatar for jk_bscomp
Member Avatar for squinx22
0
68
Member Avatar for squinx22

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

Member Avatar for jk_bscomp
0
64
Member Avatar for squinx22

somebody help me in makefiles pls...... how to create a menu launcher for Unix automatically using only the makefile.. thanx in advance

Member Avatar for Salem
0
68
Member Avatar for squinx22

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 …

Member Avatar for thekashyap
0
80
Member Avatar for squinx22

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 …

Member Avatar for thekashyap
0
136
Member Avatar for omegajam

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

Member Avatar for squinx22
0
87
Member Avatar for squinx22

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

0
51
Member Avatar for squinx22

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

Member Avatar for squinx22
0
103
Member Avatar for squinx22

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

Member Avatar for ndeniche
0
95
Member Avatar for squinx22

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.

Member Avatar for squinx22
0
122
Member Avatar for squinx22

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

Member Avatar for ~s.o.s~
0
79
Member Avatar for squinx22

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

Member Avatar for WolfPack
0
46
Member Avatar for squinx22

Do you have any links where I can find stuffs in making c++ class archive? thanx in advance

Member Avatar for vijayan121
0
90
Member Avatar for squinx22

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 …

Member Avatar for Ancient Dragon
0
86
Member Avatar for squinx22

Is anyone here uses subversion to keep the C++ header and implementation files to the repository? I need your help... Pls reply.. Thank you...

Member Avatar for jwenting
0
118
Member Avatar for squinx22

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

Member Avatar for squinx22
0
88
Member Avatar for squinx22
Member Avatar for Ancient Dragon
0
29
Member Avatar for squinx22

just asking where could I get complete tutorials about c++ application making through the net.. Ur help is highly appreciated.. thanx... :?:

Member Avatar for John A
0
77
Member Avatar for squinx22

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 …

Member Avatar for WolfPack
0
111
Member Avatar for squinx22

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

Member Avatar for thekashyap
0
117
Member Avatar for squinx22

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 …

0
61
Member Avatar for squinx22

what does subversion mean? how could I apply this in my programs? thanx...

Member Avatar for squinx22
0
100
Member Avatar for squinx22

what site could I get complete tutorials in making a program for symbian application?? your help is highly appreciated.. tnx...

Member Avatar for vijayan121
0
101
Member Avatar for squinx22

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 …

Member Avatar for John A
0
194
Member Avatar for squinx22

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 …

Member Avatar for John A
0
173
Member Avatar for squinx22

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 …

Member Avatar for Member #46692
0
79
Member Avatar for squinx22

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

Member Avatar for thekashyap
0
156

The End.