Forum: C++ Sep 3rd, 2008 |
| Replies: 4 Views: 289 |
Forum: *nix Software Sep 3rd, 2008 |
| Replies: 3 Views: 834 Re: How to extract .rpm files from .bin file Hi,
Which software you need to install? But why do you looking to extract file from .bin?
Which Linux flavour you are using?
If you have any rpm file install it by using "rpm -ivh rpmname".
Please... |
Forum: *nix Software Sep 3rd, 2008 |
| Replies: 1 Views: 343 process id Hi,
I am using kubuntu 8.0. In the init script "start-stop-daemon --stop --quiet -p $PID_FILE" used to stop a daemon. It is also specified at the top that PID_FILE="/var/run/daemon.pid".
I can... |
Forum: *nix Software Aug 29th, 2008 |
| Replies: 1 Views: 614 some issues Hi all,
I am using kubuntu 8.0. The following problems am facing,
To stop a network we use
/etc/init.d/networking stop - I can ping after stopping.(so it is not working.)
Also anybody know how to... |
Forum: VB.NET Jul 28th, 2008 |
| Replies: 6 Views: 633 Re: WebBrowser Hi,
When i run my application the browser control should displayed in a full screen with no tittle bar.
I need help to do the following,
1, When i pressed any key the browser control should get... |
Forum: VB.NET Jul 25th, 2008 |
| Replies: 6 Views: 633 Re: WebBrowser i solved all the things that i have mentioned in the prevoius post.
Ur post really helps me a lot i have some more questions not this time...
Thanks
Renjith |
Forum: VB.NET Jul 25th, 2008 |
| Replies: 6 Views: 633 Re: WebBrowser Thanks for the valuble reply..
Actually my form has some other controls and a web browser too. In the code i mentioned the web address(for example- http://dictionary.com) to display in the browser... |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 6 Views: 633 WebBrowser Hi,
I have a webBrowser and a Button. When i clicked the button I want to display a URL. When it displayed the WebBrowser should be in fullscreen. How can do this?
Thanks in advance.
Renjith |
Forum: C++ Jul 9th, 2008 |
| Replies: 7 Views: 369 |
Forum: C++ Jul 9th, 2008 |
| Replies: 1 Views: 139 Re: C++ Refer the following link and try to do it by yourself
1, http://www.cplusplus.com/doc/tutorial/templates.html |
Forum: C++ Jul 8th, 2008 |
| Replies: 6 Views: 412 |
Forum: C++ Jul 8th, 2008 |
| Replies: 7 Views: 244 |
Forum: C++ Jul 3rd, 2008 |
| Replies: 9 Views: 722 |
Forum: C++ Jul 2nd, 2008 |
| Replies: 5 Views: 173 Re: Struct problems? like this,
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{ |
Forum: C++ Jul 2nd, 2008 |
| Replies: 4 Views: 138 Re: about ints #include<iostream.h>
main()
{
int t,n;
cout<<"Enter a number:";
cin>>n;
t=n%10;
n=n/10;
cout<<"is:"<<n;
cout<<"is:"<<t; |
Forum: C++ Jul 2nd, 2008 |
| Replies: 4 Views: 503 Re: Phone book using C++ http://linux.softpedia.com/get/Programming/Widgets/Qt-179.shtml
Yoe can easily follow this by referring Qt assistant |
Forum: C++ Jul 1st, 2008 |
| Replies: 6 Views: 526 Re: writefile using ifstream & ofstream Try this,
char * fbuffer;
long fsize;
ifstream cpy ("sample.txt");
ofstream target (finaldir.c_str());
cpy.seekg(0,ios::end);
fsize=cpy.tellg();
cpy.seekg(0,ios::beg);
fbuffer = new char [fsize+1]; |
Forum: C++ Jul 1st, 2008 |
| Replies: 10 Views: 305 Re: ERROR cout<<endl;
cout<<"\n";
both the above statements are same. Both are used to put a new line. |
Forum: C++ Jul 1st, 2008 |
| Replies: 10 Views: 305 Re: ERROR else it will print 1223334445555...
to print like this
1
22
333
... i included that line.
Also u have to learn what happend if ypu put a semicolon at the end of for loop. Avoid mistakes.
You should... |
Forum: C++ Jul 1st, 2008 |
| Replies: 10 Views: 305 Re: ERROR Remove the semicolon after the loops.
that is
#include<iostream.h>
#include<conio.h>
void main()
{
cout<<"\n\n\n\tPATTERN\n\n\n\t" ; |
Forum: C++ Jul 1st, 2008 |
| Replies: 6 Views: 526 |
Forum: C++ Jul 1st, 2008 |
| Replies: 5 Views: 343 Re: Array Bounds This will work fine.
You are getting and printing values to/from unallocated memory. You didn't get any garbage value because no other process intervening. |
Forum: C++ Jul 1st, 2008 |
| Replies: 3 Views: 458 Re: loop switch case '1' : int HipValley(int& Rise1, int& Rise2, double& Eave, float& a);
what is this?
int HipValley(int& Rise1, int& Rise2, double& Eave, float& a);
is this a function call?
If so no need to... |
Forum: C++ Jun 30th, 2008 |
| Replies: 5 Views: 229 |
Forum: C++ Jun 30th, 2008 |
| Replies: 7 Views: 1,510 |
Forum: C++ Jun 27th, 2008 |
| Replies: 6 Views: 453 |
Forum: C++ Jun 27th, 2008 |
| Replies: 9 Views: 245 Re: Assignment help my prevoius posy only help you to remove the error. this will works fine
#include <iostream>
#include <string>
using namespace std;
const int NR_PLAYERS = 4;
void inputInformation(int goalsP[],... |
Forum: C++ Jun 27th, 2008 |
| Replies: 9 Views: 245 Re: Assignment help use the following
names = (string*)namesMore;
instead of
names = namesMore; |
Forum: C++ Jun 27th, 2008 |
| Replies: 6 Views: 453 |
Forum: C++ Jun 18th, 2008 |
| Replies: 3 Views: 2,977 |
Forum: C++ May 20th, 2008 |
| Replies: 11 Views: 528 Re: SMS(student managent system) I think you are thinking about including a file in another file. Write a main function in one file and include the needed header files with that file. Also in each class include the header files... |
Forum: C++ May 19th, 2008 |
| Replies: 8 Views: 400 |
Forum: C++ May 16th, 2008 |
| Replies: 8 Views: 400 |
Forum: C++ May 15th, 2008 |
| Replies: 4 Views: 148 Re: gdb debugger I used the following method to debug
g++ -g test.cpp -o test
If i use g++ test.cpp -o test then try to use break point i got the same error. But using the above methode it could working fine.
But... |
Forum: C++ May 15th, 2008 |
| Replies: 4 Views: 148 Re: gdb debugger Actually there is no such file named init.c in the directory. I think it may be one of the file related to gdb. I compiled my file using the option -g. And run by gdb executablefilename. then i... |
Forum: C++ May 15th, 2008 |
| Replies: 4 Views: 148 gdb debugger Hi ,
I am using openRTSP test program. In the make file i used debugg option.
But when i tried to debugg for example : "b 320", i got the following error.
No line 24 in file "init.c".
I don't know... |