• Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Edit Post Button

    Ok, it's probably just a timing issue then.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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).
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 = …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in retaining output window when using #include<stdio.h>

    Or just simply `cin.get()`
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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() { …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Dog Ears

    If they stand up they are also more likely to freeze in the winter.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Result Of Student

    can't help you without the code you wrote.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Trip through the US

    How much different is that then the pollution caused during normal car manufacturing?
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in libusb tutorial

    The error you posted is a compile-time error, not link-time.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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?
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Urgent need ur inputs

    Can't help you if you don't post code.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in C - headache

    Post the code you have written so that we can see where your "issues" are.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in C-strings

    I don't think some of that came out right -- what is �$� ?
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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. …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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`
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in int vs char?

    >sorry sir,for mistakes i have made Take 10 lashes with a wet noodle :)
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Compiling ctorrent

    why not ask that on [their forums](http://sourceforge.net/p/dtorrent/discussion/)?
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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)
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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 …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    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.