Solved How to add many entries by msg>>>

SalmanZeiad

Member
Local time
Today, 22:54
Joined
Oct 30, 2017
Messages
112
How to add many entries by msg>>>ATTACH
 

Attachments

  • 321.jpg
    321.jpg
    27.1 KB · Views: 126
i want by msg`s box
Away you go then. :-( MSGBOX is for output, not input.? Whilst you can tailor them somewhat, I do not believe you can use them for input.?
Happy to be proved wrong.

Really, it should be a form I would have thought?
 
Msgbox does not accept Textbox input.
you need to create a special msgbox form.
 

Attachments

Well go on then, show how you did it.? :(

You never know, someone else might want to do the same thing?
Private Sub Command284_Click()
Dim CPU As String
Dim RAM As String
Dim HDD As String
Dim Spec As String

CPU = InputBox("Enter CPU.")
RAM = InputBox("Enter RAM.")
HDD = InputBox("Enter HDD.")
Spec = (CPU & "," & RAM & "," & HDD)

Me.Spec = Spec
End Sub
 

Attachments

  • wwww.jpg
    wwww.jpg
    4.8 KB · Views: 109
@salman
OK so you solved it 'by yourself' using the input box approach suggested in post #2 that you then effectively rejected!😏
 

Users who are viewing this thread

Back
Top Bottom