Search:

Type: Posts; User: _MeRKeZ_

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Re: How to use up to 128x128 alpha channel icons as the application and form icons in

    Hi friends,

    I wanna ask a question.


    3. Create a resource compiler script

    I didn't understand this step
  2. Replies
    2
    Views
    4,124

    5x5 matrix inverse

    Hi friends,

    I want to ask a question about finding matrix which is type 5x5 inversion. These my code. This was formed by gauss jordan elimination method.

    I get overflow error in this line...
  3. Replies
    9
    Views
    8,255

    Re: Trouble installing VB6 on Windows 7

    That's what you need is this
  4. Re: Solving the equation with three unknowns

    For example,

    a+b+c = 7
    3a+5b+9c = 29
    2a+9b+7c =32

    what are the values of a, b and c?

    The programme will solve this
  5. Replies
    5
    Views
    2,459

    Solving the equation with three unknown

    Hi friends,

    I want to ask a question about a programme will solve the equation with three unknowns.

    I will make a programme will solve these equations. Now, I need to know, how I can make this....
  6. [RESOLVED] Solving the equation with three unknowns

    Hi friends,

    I want to ask a question about a programme will solve the equation with three unknowns.

    I will make a programme will solve these equations. Now, I need to know, how I can make this....
  7. Replies
    3
    Views
    575

    An error while reading the text file

    Hi friends,

    I want to ask a question

    I have a text file. It has this line:


    123 abc 123,456
  8. Replies
    3
    Views
    630

    Re: Delete the line

    I chose second one. Thanks for help, it's done
  9. Replies
    3
    Views
    630

    [RESOLVED] Delete the line

    Hi friends,

    I want to ask a question.


    Open "D:\\test.txt" For Input As #1
    Input #1, temp
    If InStr(1, temp, "123") > 0 Then
    "Delete The Line"
    ...
  10. Replies
    3
    Views
    461

    Re: draw a few functions graphics

    There are 8 command buttons
    X^2
    X^3
    x^4
    Tan(x)
    Sin(x)
    Cos(x)
    +
    Draw
  11. Replies
    3
    Views
    461

    draw a few functions graphics

    Hi friends,

    I want to ask a question. There are fifty mathematical functions in my programme ( (x^2),(x^3), sinx,cosx.. etc. )Apart from these, there is a button called "+".


    When I click...
  12. two,three,four,five.. times mathematical process

    For example,Normally, I just can get the solution of 2*3

    I want to get the solution of 2*3*4*5.

    these are my code

    [highlight=vb]
    Dim num1 As Double
    Dim num2 As Double
    Dim num6 As Double
  13. Replies
    2
    Views
    774

    Re: Arcsec and arccosec functions

    the formula is said to be like in the first one
  14. Replies
    2
    Views
    774

    Arcsec and arccosec functions

    arcsec code




    If num1 = 1 Then
    num2 = 0
    Text1.Text = CStr(num2)
    ElseIf num1 = -1 Then
    num2 = 180
  15. Replies
    10
    Views
    1,148

    Re: [RESOLVED] x^(1/3) and arcsin problems

    It was about your last message. For example, after a mathematical decimal process, the result is 0,5. When I try to use it, the programme thinks it is 0. I converted 0,5 to 0.5. Now, no problem :)
  16. Replies
    10
    Views
    1,148

    Re: x^(1/3) and arcsin problems

    @opus

    thank you very much, it's done too
  17. Replies
    10
    Views
    1,148

    Re: x^(1/3) and arcsin problems

    @opus

    First problem was solved, thanks

    When I insert 0.5 into the textbox1, it writes 0 in the textbox2. What should I do? By the way, when I try to add 2.1 and 1.1, the result is 33. These...
  18. Replies
    10
    Views
    1,148

    Re: x^(1/3) and arcsin problems

    @jcis

    K, X, X1, X2 are common variables in all functions. That's why they are on the top of the program. I changed "a,b,c as single" as "a as single, b as single,c as single". Nothing changed
    ...
  19. Replies
    10
    Views
    1,148

    [RESOLVED] x^(1/3) and arcsin problems

    hi friends,

    first, there is a problem related to function graphic

    this is the code


    Dim a, b, c As Single
    Dim K As Double
  20. Replies
    3
    Views
    658

    Re: Graphic problem

    I want second graphic
  21. Replies
    3
    Views
    658

    Graphic problem

    Hi friends,

    I have a question about drawin a graphic


    Private Sub Form_Load()

    Dim X1, Y1, X2, Y2, K, TempY1 As Double
    Dim M, N, X, A As Integer
  22. Re: drawing the function graphic by using sub procedurs

    Thanks for helping. It's done
  23. [RESOLVED] drawing the function graphic by using sub procedurs

    I tried to draw the function graphic by using sub procedurs. I receive the syntax error when I click the button. Where is the mistake?


    Option Explicit

    Private Sub Command1_Click()
    Dim x(2 To...
  24. Replies
    6
    Views
    6,681

    Re: drawing the function graphic

    I want those values to seem on the graphic as I gave the example above
  25. Replies
    6
    Views
    6,681

    Re: drawing the function graphic

    Thanks for helping me

    Why 0 and 121 cause that problem? Could you explain it?

    Can I make the programme draw last graphic?
  26. Replies
    6
    Views
    6,681

    drawing the function graphic

    Hi friends,

    I want to ask a question about drawing a graphic

    these are my code


    Option Explicit

    Const i3 As Integer = 1
  27. Re: A problem when saving the data

    it was about category1, category2, category3. They must have been combo1.text, combo2.text, combo3.text.

    Thanks for replies
  28. Re: A problem when saving the data

    I couldn't find a solution that's why I copy the code


    If category2 = "" And category3 = "" And category4 = "" Then

    Open "D:\\test.txt" For Input As #1
    Do While Not...
  29. Re: A problem when saving the data

    I have a command buttons called save and increase and I have combobox and text box.

    I select resistor from combobox and I write 10 in textbox and I click the save button. The program writes into...
  30. [RESOLVED] A problem when saving the data

    I will have a program which will save the equipments into the text file and I have a button which increases the number of the equipment. That button works now, but I want the program to save the new...
  31. Replies
    7
    Views
    2,343

    Re: Block if without end if

    it's done thanks
  32. Replies
    7
    Views
    2,343

    [RESOLVED] Block if without end if

    Hi friends,

    I receive the same error message which is "Block if without end if"

    If you tell the where the mistake is, it will be perfect for me.
    I have been dealing with this problem for...
  33. Replies
    8
    Views
    1,091

    [RESOLVED] how to filter the text file

    Hi friends,

    I need to learn how to filter the text file. For example I'm searching "electricity", I want it to filter and get the words words which consist "electricity"

    I write some code, if...
  34. Replies
    9
    Views
    1,072

    Re: Printing into a text file

    Thanks for replies, it's done
  35. Re: Password which consists capital letter, number, small letter

    Thanks for your replies, I think it's gonna work anymore
  36. Replies
    9
    Views
    1,072

    [RESOLVED] Printing into a text file

    Hi friends,

    I want to print the data into the text file but I have a problem.

    Open "D:\\test.txt" For Random Access Write As #1 Len = 50
    Put #1, 1, number1
    Put #1, 2, number2
    ...
  37. Re: Password which consists capital letter, number, small letter

    Firstly, thanks for replies..

    Actually I wanted the user has to determine a password which consists at least; one capital letter, one small letter, one number and one special character as you...
  38. Password which consists capital letter, number, small letter

    Hi,

    I want to have a password which consists capital letters, small letters, numbers and special characters. How can I make it?

    Thanks for replying
  39. Replies
    9
    Views
    890

    Re: A command button you have to click

    Spoo and LaVolpe,

    It works. Thank you very much for helping.
  40. Replies
    9
    Views
    890

    Re: A command button you have to click

    Thanks for replying LaVolpe.. If you tell the idea, I will appreciate you.

    RhinoBull

    I have three command buttons. If the user don't click two of them, he won't be able to click third one....
Results 1 to 40 of 53
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width