Search Results

Showing results 1 to 40 of 63
Search took 0.01 seconds.
Search: Posts Made By: marinme
Forum: Storage Sep 21st, 2007
Replies: 0
Views: 1,638
Posted By marinme
So.. my old motherboard died on me after a couple of years of good service and I had to buy a new one. Old board was a MSI K7N2-Delta2-LSR(link...
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 4
Views: 1,813
Posted By marinme
How are the two offices connected? How are people in Saudi Arabia able to see the second set of IPs if they are not connected to the internet or another network with an internet connection?
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 5
Views: 37,567
Posted By marinme
I recently had an issue like this with one of my clients at work. Unfortunately, our solution was to replace the router. We were using the linksys wrt54g ver. 5 with the latest firmware and a westell...
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 2
Views: 1,207
Posted By marinme
While I'm not to sure how internet connection sharing works, have you verified you have connectivity between the wireless pc and the desktop pc?
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 4
Views: 2,140
Posted By marinme
I'm not really sure what requirements you have for this project? Do you just need to build a simple network and secure it? How about deploying a vpn solution would that work?
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 2
Views: 1,199
Posted By marinme
Is it working when he is physically connected to the modem directly?

If so, what kind of router does he have?

Have you tried deleting cookies and temporary internet files? Or flushing the dns?
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 4
Views: 2,005
Posted By marinme
**EDIT: Can you resolve the domain name or ping microsoft.com? Well... after saying that, I found they block pings... Are you able to resolve the domain name for microsoft.com?

Well, from the...
Forum: Networking Hardware Configuration May 2nd, 2006
Replies: 6
Views: 1,876
Posted By marinme
It doesn't mean your router is bad definitively, but it does mean that your connection to the router dropped. If all you had to do was powercycle the router to bring it back up, the port you are...
Forum: Networking Hardware Configuration Apr 30th, 2006
Replies: 6
Views: 1,876
Posted By marinme
Now... when you say directly connected, do you mean to the modem or via ethernet to the lan side of the router?

Here is something you can do to see which connection is going down:

I'm assuming...
Forum: Networking Hardware Configuration Apr 29th, 2006
Replies: 4
Views: 2,005
Posted By marinme
You may find this thread here helpful... I knew I remembered reading something about this:

http://www.daniweb.com/techtalkforums/thread23403.html
Forum: Networking Hardware Configuration Apr 29th, 2006
Replies: 3
Views: 2,393
Posted By marinme
Ok, I'm guessing the "Gateway is offline" error you are getting is from MSN messenger... Is that what you are having problems with? Or just the internet connection in general?

MSN - I don't use...
Forum: C++ May 3rd, 2005
Replies: 4
Views: 15,273
Posted By marinme
It should work just using
p = &vec_account;
Forum: C++ May 2nd, 2005
Replies: 5
Views: 2,591
Posted By marinme
Well, what have you tried to use for a control break yet? Just show us the code from that section.
Forum: C++ May 2nd, 2005
Replies: 1
Views: 2,729
Posted By marinme
shouldn't this be posted in the help forum? not in the Tutorials thread?
Forum: C++ May 2nd, 2005
Replies: 5
Views: 2,591
Posted By marinme
Sure! But I need you to help me help you.

What problems are you having doing this? Have you tried to design something that would work for this?
Forum: C++ May 2nd, 2005
Replies: 4
Views: 15,273
Posted By marinme
double * func()
{
vector<double> vec;
return vec;
}


I don't think there is a typecast for double to vector<double>. What you should do is use a pointer to a vector<double> variable:
...
Forum: C++ May 1st, 2005
Replies: 3
Views: 4,779
Posted By marinme
Looks like you're missing the string library...

#include <string>
using std::string;
Forum: C++ Apr 30th, 2005
Replies: 1
Views: 2,598
Posted By marinme
ifstream inStream;
ofstream outStream;


fout << "Grade" << grades <<endl;
fout << endl;


Here is your problem with fout, you didn't declare an object of the fstream named fout. Now, what...
Forum: C++ Apr 27th, 2005
Replies: 7
Views: 1,746
Posted By marinme
So, what have you done so far? Do you not understand the assignment?

Hint: use a for loop, the modulus operator with the number two to find if it is even or odd
Forum: C++ Apr 27th, 2005
Replies: 9
Views: 8,699
Posted By marinme
That works too :)
Forum: C++ Apr 27th, 2005
Replies: 9
Views: 8,699
Posted By marinme
Actually, for what he's asking for... I do need to make a modification, but not what you are saying.

ArrayToBeFilled[i-1] = i;

He wants it to be 1 to N for values.

But thanks for pointing...
Forum: C++ Apr 27th, 2005
Replies: 6
Views: 2,528
Posted By marinme
Please don't ask for help in a private message. I will be more than happy to help you if you just let us know what part of this assignment you are having a problem with... not just which assignment...
Forum: C++ Apr 27th, 2005
Replies: 9
Views: 8,699
Posted By marinme
Here is a code snippet of a function to initialize something using a value:


void FillMyArray(int ArrayToBeFilled[], int TopValueToBeInserted)
{
for(int i = 1;...
Forum: C++ Apr 27th, 2005
Replies: 9
Views: 8,699
Posted By marinme
Yes.... yes, I do.

I love answering questions sometimes!
Forum: C++ Apr 26th, 2005
Replies: 2
Views: 4,189
Posted By marinme
What problems are you having with it?
Forum: C Apr 26th, 2005
Replies: 3
Views: 1,407
Posted By marinme
What don't you understand about arrays? How to declare/define them? How to use them?

I'm not sure about other people, but I'm too lazy to follow your link to even bother looking at the exercise,...
Forum: C Apr 26th, 2005
Replies: 7
Views: 2,050
Posted By marinme
just return the temp variable you assigned in the pop function, that should return the value in the array. But, like I said, you may want to initialize the values in the array before increasing the...
Forum: C Apr 26th, 2005
Replies: 7
Views: 2,050
Posted By marinme
void vector::insertAt( int value)
{
if( first >=0)
{
maxsize++;
theArray[maxsize] = value;
}
}

int vector::pop()
Forum: C++ Apr 26th, 2005
Replies: 6
Views: 2,528
Posted By marinme
so.... what are you having problems with? Are you getting any errors? Is it not giving the right values for something? Let us know what the problem is and we can try to help you
Forum: Posting Games Apr 21st, 2005
Replies: 2,038
Views: 145,071
Posted By marinme
Weirdly catatonic flying birds were found blinking dim lights after thinking for a long period, living slowly.
Forum: C Apr 20th, 2005
Replies: 2
Views: 1,709
Posted By marinme
using namespace std;

float* expect_t(float expt[], *p, int n, Activity & myActivityStruct)
{
for( int i = 1; i <= n; ++i ) {
expt[i] = ( p[i].pt + ( 4.0f * p[i].prt ) + p[i].ot ) / 6.0f;...
Forum: C Apr 20th, 2005
Replies: 3
Views: 1,687
Posted By marinme
code tags with spaces added to make them visible - [ code ] to begin the segment, [ /code ] to end it.

well, I'm at home now and have my compiler to run this through...
Error on the second...
Forum: C++ Apr 20th, 2005
Replies: 9
Views: 2,735
Posted By marinme
void schedule::printLine (const int cnt, int b, string courses[], int hours[], char grades[], float gpa, int totalHours)


//this function will print the output...
Forum: C Apr 20th, 2005
Replies: 3
Views: 1,687
Posted By marinme
Well, my first suggestion would be to read things about posting... before posting... Please us BB code tags.

Secondly, I'm not seeing the ending bracket to your main() function..

Now... other...
Forum: C++ Apr 19th, 2005
Replies: 26
Views: 7,723
Posted By marinme
Well, using what I've given you, it seems you need to combine two things... how to use private data members in a function.. and how to call the function... The rest is just writing the function to do...
Forum: C++ Apr 19th, 2005
Replies: 26
Views: 7,723
Posted By marinme
do you mean a private data member that is an array in your class?
since the function is a function of the class, it has access to it as if it were a global variable. Just use it's name:

Mat...
Forum: C++ Apr 19th, 2005
Replies: 21
Views: 30,868
Posted By marinme
Microsoft Visual C++... great IDE, very easy to use, but costly...
you could always go for Dev-C++, it should work fine for you
Forum: C Apr 19th, 2005
Replies: 4
Views: 1,657
Posted By marinme
It seems to me you just need to initialize and print the values... your initialization seems to only add the name, but not the numbers.

something like

football.n = 0;

should initialise the...
Forum: C Apr 19th, 2005
Replies: 4
Views: 1,657
Posted By marinme
Well, if you had read the thread at the top stating "Please use BB code tags", this would be much easier to work with.... but I'm sure Narue will come through and add them, but don't get used to it...
Forum: C++ Apr 19th, 2005
Replies: 26
Views: 7,723
Posted By marinme
I'm not sure what you mean by this...

int main()
// Is this output right?


I don't see any output... also, you don't have any curly brackets defining the main() function


Mat...
Showing results 1 to 40 of 63

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC