-
Replied To a Post in How is the weather today in your country?
Warm, but wind, rain storms and tornados all day. We have had four major wind/tornado storms come through during the last 24 hours and they will continue for another 6 … -
Replied To a Post in Problem with - Put up a list
The constructor needs to duplicate the items in the parameter. Iterate through each of the shapes in list parameter and call list2.Add() method to add the shape to list2. Since … -
Replied To a Post in Question about LinkedList in C
line 23: after allocating the new node you need to set the next pointer to NULL so that the program can detect the end of the list. -
Marked Solved Status for Edit Post Button
After the time has expired to edit a post can you just remove the Edit Post button? It's somewhat confusing to make changes then no Save button. -
Replied To a Post in Edit Post Button
Ok, it's probably just a timing issue then. -
Replied To a Post in Trip through the US
Don't forget to go [Bungee Jumping over the Hoover Dam](https://www.google.com/search?q=bungee+jumping+hoover+dam&tbm=isch&tbo=u&source=univ&sa=X&ei=nn09U-zRHYS42gXD64HACQ&ved=0CDsQsAQ&biw=1058&bih=534). -
Created Edit Post Button
After the time has expired to edit a post can you just remove the Edit Post button? It's somewhat confusing to make changes then no Save button. -
Replied To a Post in Dog Ears
>And with a pair of unsterilised cissors even, recipe for serious infections. I'd wipe then off on my muddy cow-shit ridden cloths first :) I was actully just joking when … -
Replied To a Post in Result Of Student
So if you have 3 numbers all the same you want the 1st, 2nd and 3d largest to be that same number? I just tried it -- use <= and … -
Replied To a Post in Copy and paste without using Clipboard Class
the clipboard is the operating system (Windows) way to copy/paste. You can copy from one process and paste it in the same or another process. Similar concept to shared memory … -
Replied To a Post in COMPLEX DATA TYPES IN C#
You mean you wanted until the day before the assignment is due to get started?? Good luck. -
Replied To a Post in CAN I USE LOOKUP SEARCH CONTROL IN WINDOWS APPLICATION?
ListBox has a FindString() method. When you enter text in the textbox, pass the text on to ListBox.FindString(). If you need anything more complex searching then that, I'm afraid you … -
Replied To a Post in Question about LinkedList in C
I think the problem is line 36. freenode is the new node to add to the head of the linked list. all you have to do is this: freenode->next = … -
Replied To a Post in retaining output window when using #include<stdio.h>
Or just simply `cin.get()` -
Replied To a Post in Result Of Student
delete line 2, conio.h is not needed. replace line 36 with cin.get(). what data did you enter? Your program worked correctly for me #include<iostream> using namespace std; int main() { … -
Replied To a Post in Dog Ears
If they stand up they are also more likely to freeze in the winter. -
Replied To a Post in retaining output window when using #include<stdio.h>
you mean after your program exists? run your program in a console window instead of from within the IDE. -
Replied To a Post in Run query in Microsoft Access 2013 on only non-empty form fields
That is still a very simple select statement as I posted earlier, just add the columns you want to the where clause. `WHERE client is not null and project manager … -
Replied To a Post in Dog Ears
>i am just curious to know if there are any at home remedies that I can make for him Use a pair of sizzers and cut them off. -
Replied To a Post in code blocks class
You don't compile each module down to \*.exe, but instead just to object module then use the linker to link both object modules together at the same time. And you … -
Replied To a Post in Result Of Student
can't help you without the code you wrote. -
Replied To a Post in Header file Correct?
Move the include statement down below to line 4, after the ifdef statement. Yes, you can put include statements in header files, it's done all the time. -
Replied To a Post in Trip through the US
How much different is that then the pollution caused during normal car manufacturing? -
Replied To a Post in libusb tutorial
The error you posted is a compile-time error, not link-time. -
Replied To a Post in Need a best c compiler for free download
And if you use QT compiler you can have one set of source code for both \*nix and Windows, AFAIK you won't have to rewrite anything to change from one … -
Replied To a Post in pointer dereferencing
Post your code, the diagram you posted is not very helpful to find the problem in your program. My guess is that the pointer you used was not initialized to … -
Replied To a Post in C-strings
You started with the right approach, just that you are reading the data wrong. Read the data an entire word at a time. Note that you will need a 3 … -
Replied To a Post in libusb tutorial
Post code here in your thread so that we get line numbers. The links you gave do not give enough info to know where the problem might be. -
Replied To a Post in Error C2679 Reading File
The arrays are declared as two-dimensional arrays and line 26 is trying to treat them as one-dimensional arrays. Why are they two-dimensional instead of one dimensional arrays? -
Replied To a Post in Urgent need ur inputs
Can't help you if you don't post code. -
Replied To a Post in C - headache
Post the code you have written so that we can see where your "issues" are. -
Replied To a Post in C-strings
why read it one character at a time. You can read it a whole word at a time and save yourself a lot of grief. -
Replied To a Post in C-strings
I don't think some of that came out right -- what is �$� ? -
Replied To a Post in doc files ine c++
Very very difficult, but they can be read easily in C# and VB.NET due to the .NET functions that are not available to standard c++. In C++ it's a lot … -
Replied To a Post in MYSQL C++
You can't. You need a 32-bit or 64-bit compiler to do that. Turbo C++ is just too old -
Replied To a Post in Trip through the US
The Prius battery in US is warrented for 8 years/100,000 miles ([link](https://answers.yahoo.com/question/index?qid=20090510110216AAH8aH2)). >Toyota has a comprehensive battery recycling program in place and has been recycling nickel-metal hydride batteries since the … -
Replied To a Post in libusb tutorial
Read [this page](http://sourceforge.net/apps/trac/libusb-win32/wiki), which is a windows port of the library. Since you are already using it in Ubuntu you should have little or no difficulty using it in Windows. … -
Replied To a Post in Ubuntu in Windows 8
They are correct -- you can't duel boot both. But you can use a [VirtualBox](http://www.oracle.com/technetwork/server-storage/virtualbox/downloads/index.html?ssSourceSiteId=otnjp) and install it there. -
Replied To a Post in Default Member Avatar Broken
I'm using IE11 and I see that but in a circle, it's a square like you showed in the member's Profile page. It looks like that on Chrome too. My … -
Replied To a Post in Run query in Microsoft Access 2013 on only non-empty form fields
how about `SELECT * from table where projectNumber is not NULL` -
Replied To a Post in int vs char?
>sorry sir,for mistakes i have made Take 10 lashes with a wet noodle :) -
Replied To a Post in Compiling ctorrent
why not ask that on [their forums](http://sourceforge.net/p/dtorrent/discussion/)? -
Replied To a Post in Problem in output of C
try [this](http://www.infolet.org/2012/10/how-to-get-turbo-cc-in-full-screen-on.html) -
Replied To a Post in Trip through the US
In [this list](https://www.fueleconomy.gov/feg/best/bestworstNF.shtml) the Prius is the most fuel efficient car of the non-electric cars. >But I'm under no illusion it's "good for the environment" compared to other cars in … -
Replied To a Post in C++ Rainfall Program: Linked Lists
If you want the implementation code in the header file then you have to make them inline methods of the class, not coded outside the class as you would in … -
Replied To a Post in int vs char?
>The basic difference between int( keyword of integer) and char(keyword of character) is the first is integer that is includes numbers(without float values),whereas character includes (a to z and A … -
Replied To a Post in Use of getch
>how to creat recovery softwear? Study c or c++ for a couple years and you might be ready to answer that question yourself. -
Liked / Shared ??? how do i run a (webpage) from inside my (vb.net) program ???
i wrote a (visual basic.net-2008) desktop app that allows ham radio operators to enter a call, such as WA0H, and the program gives the ham's location (springfield, mo.). you can … -
Replied To a Post in C++ Rainfall Program: Linked Lists
My guess -- define RainfallListNode before RainfallList because RainfallList uses RainfallListNode which has not been declared yet. -
Replied To a Post in More bad news for Android; but is it quite as bad as made out?
I've been using two android devices for over 2 years now and have never encountered such a problem. One is a Samsung tablet and the other a Samsung smart phone …
The End.