• Member Avatar for Learner010
    Learner010

    Stopped Watching How is the weather today in your country?

    How is your weather in your country? I am living in the Philippines and the weather here today is stormy and according to news, we are overloaded of typhoons in …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Arrays in C++

    > int (*pa)[10]; // A pointer to an array that can store 10 integers does that equivalent to `int *pa=new int[10];` ?
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Making a Table 2 or Three Using Even and odd numbers

    it should be #include<iostream> using namespeace std; int main() { int num,x=1; cout<<"enter number"; cin>>num; if(num%2==0) { cout<<"Even"; for(;x<=10;x++) { cout<<(2*x)<<endl; } } else { cout<<"Odd"; for(;x<=10;x++) { cout<<(3*x)<<endl; } …
  • Member Avatar for Learner010
    Learner010

    Began Watching Making a Table 2 or Three Using Even and odd numbers

    I need a program which shows the number is even or odd and print the table of 2 if the any even number we enter and when we enter the …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Making a Table 2 or Three Using Even and odd numbers

    we don't do your homeworks , its your duty to complete it. but as a help i can suggest the following structure , you can use to solve your assignments. …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Pointers and arrays

    why is this not possible to create an integer array using pointer (same as what we do with characters . example `char* str="hello world"` ) why the statement below is …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Pointers and arrays

    is it possible to declare integer pointer contain 3 values ? if yes , then how can i declare such pointers ?
  • Member Avatar for Learner010
    Learner010

    Created Pointers and arrays

    I read about pointers and it says that array names can be used as pointer constants and pointers can be used as array names and here is an example that …
  • Member Avatar for Learner010
    Learner010

    Began Watching Pointers and arrays

    I read about pointers and it says that array names can be used as pointer constants and pointers can be used as array names and here is an example that …
  • Member Avatar for Learner010
    Learner010

    Marked Solved Status for Creating Header File

    hello , after learning on functions in c++ , i created several functions and now i wanna create a gourp which will have these several functions at a place(i think …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Creating Header File

    ok , i got it. thanks everyone for passing your suggestions over this thread.
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Creating Header File

    thanks AD for good explanation i got the concept what you want to say but i was wondering if you could give sample code here which uses two files(both `a.cpp` …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Creating Header File

    thanks mike for very good explanation . but before watching your reply here i done it , here is what i did: i created `functions.h` and define functions there and …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Creating Header File

    ok i done what i wanted i created a file `functions.h` and write all the code there and compile this file and here is what i used to include this …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Creating Header File

    okay , now i decide to create a library , for this i have move the code to `functions.lib` file and compile it. now how can i add this library …
  • Member Avatar for Learner010
    Learner010

    Began Watching Subprogram sample

    Please help me to answer the following problems, I am new with the c++ code, Write a c++ program that may be use to compute the area of square (area=side*side) …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Subprogram sample

    > I am new with the c++ code, I'm also new , and new user can learn and finally becomes expert.And c++ is very easy to learn. > Write a …
  • Member Avatar for Learner010
    Learner010

    Edited Creating Header File

    hello , after learning on functions in c++ , i created several functions and now i wanna create a gourp which will have these several functions at a place(i think …
  • Member Avatar for Learner010
    Learner010

    Created Creating Header File

    hello , after learning on functions in c++ , i created several functions and now i wanna create a gourp which will have these several functions at a place(i think …
  • Member Avatar for Learner010
    Learner010

    Began Watching Creating Header File

    hello , after learning on functions in c++ , i created several functions and now i wanna create a gourp which will have these several functions at a place(i think …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in window form Problem ?

    your current form refers to as `Me`. so , if you coding behind `Form2` then you have to use` Me.Textbox1.Text` instead of `Form2.Textbox1.Text`. but if you are working on `Form1` …
  • Member Avatar for Learner010
    Learner010

    Began Watching Problem in getting "<< gets(string)" to workout

    Hi Coders!!! I am developing a Bank Management System ..In one of its provided facility i.e.new account creation i am having problem with gets(name) . void account::create_account() { cout<<"\nEnter The …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Problem in getting "<< gets(string)" to workout

    i use getline(cin,name); but problem will still exist until you clear the buffer . write this to clear the buffer : cin.ignore(numeric_limits<streamsize>::max(), '\n'); don't forget to include `<limits>`. please correct …
  • Member Avatar for Learner010
    Learner010

    Began Watching window form Problem ?

    I have 2 form called form1 and form2 why i cannot use this code form1.textbox.Text = "Hello" ????
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in window form Problem ?

    Because it cannot refer to itself through its default instance name , for this you have to use `Me` try this: `Me.Textbox1.Text="Hello"`
  • Member Avatar for Learner010
    Learner010

    Began Watching help..got an error in update statement

    what's the problem with this ? any 1 can help me out..tnx in advance Dim filePath As String Try filePath = Application.StartupPath() & "\" & DBFile connection = New OleDb.OleDbConnection(ConnectionString …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in help..got an error in update statement

    please check your update statement(i will start programming with database very soon but before right now , i am reading Book on SQL). i saw there the correct syntax for …
  • Member Avatar for Learner010
    Learner010

    Began Watching function

    an int function cube () that returns the cube of its single int formal parameter please attach in my emile bmekixavi@gmail.com
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in function

    functions are very easy to learn (i recently learned it , except recursion, which today i'll finish).just read [My Tutorial](http://www.daniweb.com/software-development/cpp/tutorials/471863/beginners-tutorial-on-functions) and read the section titled "Argument and return". if you …
  • Member Avatar for Learner010
    Learner010

    Edited Beginner's Tutorial On Functions

    As usual, after learning new stuff, I write on it. Yesterday I finished learning on "Functions in C++" and found that functions are very easy to learn and useful. Hope …
  • Member Avatar for Learner010
    Learner010

    Created Beginner's Tutorial On Functions

    As usual, after learning new stuff, I write on it. Yesterday I finished learning on "Functions in C++" and found that functions are very easy to learn and useful. Hope …
  • Member Avatar for Learner010
    Learner010

    Began Watching Beginner's Tutorial On Functions

    As usual, after learning new stuff, I write on it. Yesterday I finished learning on "Functions in C++" and found that functions are very easy to learn and useful. Hope …
  • Member Avatar for Learner010
    Learner010

    Marked Solved Status for Add Form in Mdi Form

    i want to add child forms in mdi parent form and i done this but the problem is : i have an picture box in the top of MDI form …
  • Member Avatar for Learner010
    Learner010

    Created Add Form in Mdi Form

    i want to add child forms in mdi parent form and i done this but the problem is : i have an picture box in the top of MDI form …
  • Member Avatar for Learner010
    Learner010

    Began Watching Add Form in Mdi Form

    i want to add child forms in mdi parent form and i done this but the problem is : i have an picture box in the top of MDI form …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Error while formatting USB Flash Drive: The Disk is Write Protected.

    once you update the regedit information you have to restart your computer and then try to format the disk with the as usual method(i mean right click and select format …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Error while formatting USB Flash Drive: The Disk is Write Protected.

    sorry i didn't see that . but you can with regedit this is HKEY_LOCAL_MACHINE ----> SYSTEM ----> control ---->StorageDevicePolicies now set write access by setting there 0. if you don't …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Error while formatting USB Flash Drive: The Disk is Write Protected.

    using DISKPART select the disk and then type the command `attributes disk clear readonly`
  • Member Avatar for Learner010
    Learner010

    Began Watching Error while formatting USB Flash Drive: The Disk is Write Protected.

    I am having my friend USB, which contains the error while Formatting, copying, deleting, renaming, moving files from it. The error is `"The Disk is Write Protected"`, I don't Know …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Error while formatting USB Flash Drive: The Disk is Write Protected.

    try this in command prompt: format <drive letter>: ex: format H: and then follow the instructions.
  • Member Avatar for Learner010
    Learner010

    Stopped Watching Error in beginning android tutorials

    May sound all too easy for some, but I'm just getting started on android development and I can't find out why I got an error when everything is exactly as …
  • Member Avatar for Learner010
    Learner010

    Began Watching c++

    how to do user inputs to array with calculation in c++
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in c++

    first off , i don't understand what do you mean by *with calculation in c++* second , you can't get help by asking your question in such a manner. you …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Bad Grammar

    > My son wrote "I have red the book" last night - or maybe he was saying he has a book called Red.... i think that he was saying that …
  • Member Avatar for Learner010
    Learner010

    Began Watching Error in beginning android tutorials

    May sound all too easy for some, but I'm just getting started on android development and I can't find out why I got an error when everything is exactly as …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in I'm a student from Việt Nam

    hello
  • Member Avatar for Learner010
    Learner010

    Began Watching I'm a student from Việt Nam

    Hi everyone, I guest I'm very young in here, now I'm just 17 years old. My passion for coding is very large, I've learnt basic Pascal at school and now …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in How to create Trial

    i am not much familiar with registry and therefore i think that going with program setting will be good enough for me to understand the code. i want to create …
  • Member Avatar for Learner010
    Learner010

    Began Watching Programming

    What must be the code in order for the ff to be displayed once you clicked the command button? 1 1 2 1 2 3 1 2 3 4 1 …
  • Member Avatar for Learner010
    Learner010

    Replied To a Post in Programming

    please show us your efforts to solve this problem . its almost impossible to get assistance if you don't prove what you have done. for this code, you neeed nested …

The End.