Added: 1 year ago
From: itsaji
Views: 14,990
Sort by time | Sort by thread (beta)

Link to this comment:

Share to:

All Comments (108)

Sign In or Sign Up now to post a comment!
  • ummmm soooooo weak you end the vid so early you fucking trolll!!!!!!!!!!!!!!!!!

  • You calculator is nice I was wondering if you could e-mail me the codes for it. My e-mail address is facelv@yahoo.com. I would greatly appreciate it.

  • when i put "Value2" in the code of the equals sign, it can't be. a blue line goes after typing! what should i do?

  • WHATS THE CODE FOR MEM???

  • thank you a lot a lot and a lot...

  • Your source is not good :(

    i hef a error..

  • Value2  is = ______

    Plc Help me

  • i don;t get it how you do the memory function can you please explain that?

  • 11:55 What is that?? saci.spvoice??

  • sorry but what about the other buttons like MR etc

  • I FUCKING LOVE U

  • Value2 Error?

  • hi all

  • does this work with order of precedence? if not could you please write a code to add to it for that to work

  • What is the modual for Value2?

  • code for mem anyone?

    

  • also with along what i said i dont beleive u showed the mr and ms buttons either...

  • 9:59 <-- where im at and btw i dont beleive u showed what the code for value2 is...

  • Pretty funny how in the description it says "Adding advanced options such history, speak result, Memory, backspace" but when it actually comes to adding memory, backspace, square root etc. Your guide ends. You just quit after making that speaking thing, saying now just add background and you are done. How can you be done when you haven't even added half the functions of a calculator?...

    Very Weak.

  • @Thasduck : Codes that you are looking for:

    pastebin[DOT]com/NY5FHmcm

    [DOT] is .

  • Codes that you are looking for:

    pastebin[DOT]com/NY5FHmcm

    If you need any help with code or something type me on channel and i will help you.

    Thumbs UP!! ;) See ya around

  • @Onlykl1 i get some errors ("Mem" is not declared ) how do i fix that

  • Comment removed

  • Comment removed

  • Comment removed

  • Where is the code for √? Plz tell us!

  • hey i was wondering if u could help me out i dunno what you coded for the MC,MR,C,CE,M+,M- <-, √,±, and 1/x Buttons if you could please post them or make another vid that would be such a big help to me

    thanks,

    -madman11919a

  • what is the codes for backspace?

    

  • Comment removed

  • Comment removed

  • @richardwang1007

    Here: pastebin[DOT]com/5amkSFcf

    Add this in your backspace code section after the

    private sub...

    then at the top after

    Public Class Form1 Public Value1, Value2, Mem As Double Public Oper As Char

    Add

    Private hasDecimal As Boolean

  • @neweltradom thx!

  • Hi itAji

    This tutorial is 1a , but how can i make Textbox2 uneditable???

    Thankx 1000times for this vid

  • @MrBejta

    First way is to disable it in the form load event (but it will be grayed out)

    TextBox1.Enabled = False

    Second method is to use a Label control instead of Text box and set the background & foreground color

  • @itsaji

    THANK YOU sooo Much

    You're just GREAT

  • @itsaji, what code did you use for the M- button?

  • @itsaji or just Read Only = True

    no grey

  • @MrBejta You can have in properities option called "ReadOnly" and you just select False. It's good because user can copy the number in the TextBox but not edit it! If you have some questions send me a message!

  • @MrBejta could make it read only

  • @MrBejta

    goto to textbox2 property --> ReadOnly = True

  • @MrBejta textbox2.readonly = true

  • Hey I've got a problem:

    When I work with numbers like 0.5;0.7 etc. The get rounded to 0 or for example:

    0.7+1.6=1

    and the history says:0+1=1

    How can I fix this i think I must change the text box to Single or something but how

    can you help me? I can give you the Whole Form and The Module1 if you need.

    Can you Help me?

  • @berkonvo

    Declare the variables as double data type. because the value of text box is stored into these variables

    eg:

    Public Class Form1 Public Value1, Value2 As Double

    and in the module use this statement

    Form1.Value1 = Val(Form1.TextBox1.Text)

  • Please tell me where you defined Value2, i'm about ready to give up on this thing

  • @Kittycatnya12367 : Both value1 and value 2 are defined at the same place (Public Class Form1)

    eg:

    Public Class Form1

    Public Value1, Value2 As Double

  • where are the codes for the <-, MC, MR, M-, M+,C,CE,1/x

    please post the codes

  • ±, √, MC, MR, M+, M- where codes

  • ±, √, MC, MR, M+, M- Where codes

  • I have watched your video trying to find the code for the backspace button, but have not seen it anywhere, any chance you could post the code for it please?

    I checked your website as you said in a comment that the code is on there, but I can't seem to find it lol

  • @CptChaos783 This code is different than on the project file.  If (Len(Trim(TextBox1.Text)) > 0) Then TextBox1.Text = Mid(TextBox1.Text, 1, Len(Trim(TextBox1.Text)) - 1) End If

  • ѵ - is it that one?

  • Comment removed

  • need all the missed code

  • Alt+241 didn't work for me heres the symbol ±

  • @darysmer

    Try Alt + 177 , If it does not work Try Copy & Paste

  • @itsaji i didn't finish it it gave me 20 errors ;D i was useing 2008 ver Professional

  • @darysmer I had , no I have the same problem 20 ERRORS

  • What about Squareroot, Sin Cos and Tan?

  • @Primus2X ' General Declaration Imports System.Math ' Define Variable Dim Num As Double ' Use the Functions Num = Math.Sin() Num = Math.Cos() Num = Math.Tan() Num = Math.Log() You can make a scientific calculator . Call the val(Textbox1.Text) in each of the functions.
  • @itsaji I'm confused, do you put it in module1 or form1?

  • @Primus2X

    In Form1

  • @itsaji It doesn't work

  • • Code for M, M+, M-, +/-, C,CE which I missed in the video • Declare variable M • dim M = 0 • for M+ • M = M+ val(TextBox1.text) • for MR • TextBox1.text = M • for M+ • M = M+ val(TextBox1.Text) • for M- • M = M- val(TextBox1.Text) • for +/- • TextBox1.Text = val(Text.Box1.Text) * -1 • for CE • TextBox1.Text = "" • for C • TextBox1.Text = "" • Value1 = 0
  • @itsaji heyy mate i'm am new to this stuff could you plz tell me where the code goes and what is the value2

  • @itsaji what is the DOT? M+ • M = M+ val(TextBox1.Text)

  • @richardwang1007

    The dots are bullets for new line, when I paste the code here the formatting got messed up.

  • Where did you explain about the "M" Family and the +/- sign And CE + C?

  • Thanks for pointing out that .. I think, I missed that part when I edited it. I know you can figure that out .I will add that part to comments.

  • Where did u add value2????????????????????????

  • Value2 is not a member of 'Calculator.Form1'

  • @ActionReplayCoDS

    It is defined in Class Form1 .. where Value1 is defined.

  • @itsaji defined as what exaclty as char or as double?

  • @Primus2X

    Define it as Double

Loading...
Alert icon
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more