Меню

Vb net msgbox ошибка

GIP

5 / 5 / 0

Регистрация: 07.04.2010

Сообщений: 273

1

03.01.2017, 10:48. Показов 1133. Ответов 5

Метки нет (Все метки)


Кто может подсказать почему может не отображаться на экране сообщение :

VB.NET
1
MsgBox("Сообщение", MsgBoxStyle.Critical, "Исходные данные")

ситуация следующая :

одна форма меняет содержимое текстового поля на другой форме,
срабатывает процедура

VB.NET
1
Private Sub Text28_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Text28.TextChanged

далее еще несколько, в одной из которых срабатывает команда сообщения, появляется звуковой сигнал при выполнении команды показать сообщение, но само сообщение никак невозможно увидеть !!!! и прога дальше не двигается, т.к. пользователь не может нажать ОК !. На VB6 таких проблем не было, здесь проблемы….

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



Programming

Эксперт

94731 / 64177 / 26122

Регистрация: 12.04.2006

Сообщений: 116,782

03.01.2017, 10:48

5

1072 / 805 / 143

Регистрация: 25.07.2015

Сообщений: 1,772

03.01.2017, 12:11

2

Всё срабатывает.
У вас очевидно где то глюк при вызове.

Миниатюры

Не отображается на экране сообщение MsgBox
 



0



5 / 5 / 0

Регистрация: 07.04.2010

Сообщений: 273

03.01.2017, 12:14

 [ТС]

3

не срабатывало именно у меня….я решил вопрос следующим образом,
из предположения что весь процесс запускается не формой, которая выдает сообщение, а другой,
то организовал таймер на форме с сообщением, чтобы «отпустить» запускающую форму,
тем самым от таймера процесс запускается на самой форме, выдающей сообщение, и глюк пропал….



0



22 / 22 / 7

Регистрация: 26.05.2011

Сообщений: 256

10.01.2017, 02:04

4

GIP, MsgBox не работает, если его вызывать не из основного потока приложения. Это уж точно, но возможно суть еще в классах из под которых он вызывается. Разные формы – разные классы. У Вас, как я догадываюсь, msgbox вызывается не из той формы, которая конкретно сейчас выполняет какое-то действие (иначе бы все работало), а оно вызывается формой, которая сейчас как бы в стороне и срабатывает лишь событие.
В общем, я сам не изучил толком поведение msgbox. Скажу лишь, что вызывать его стоит только прямо в том основном коде, с которым работает программа и основной поток. Можно в функциях или процедурах, на которые «прыгает» Ваша программа. Лично я в иных случаях отказываюсь от его использования и ищу иные пути решения задачи, где помещаю сам msgbox в прямой вызов при определенном условии (что, собственно Вы и сделали), но с таймером я бы уж явно не городил
Что-то мне кажется, что можно все проще написать. Опишите ситуацию, дайте код, подумаем



2



5 / 5 / 0

Регистрация: 07.04.2010

Сообщений: 273

10.01.2017, 17:45

 [ТС]

5

Stass48, спасибо за ответ.
код дать проблематично, слишком там все «накручено»….программу переделал с VB6 на 2005,
попробовал смоделировать в отдельном проекте — не получилось глюк воспроизвести….(



0



117 / 110 / 31

Регистрация: 05.04.2014

Сообщений: 224

11.01.2017, 20:16

6

Еще можно предположить, что форма, которая вызывает MsgBox из другой формы является модальной.
Соответственно, MsgBox пытается вылезть со скрытой формы, но не может пробиться сквозь модальную.
И прога зависает.
Может стоит процедуру с вызовом MsgBox’а закинуть в модуль, а не на форму.



1



  • Remove From My Forums
  • Question

  • I have a problem in VB.Net with the msgbox function. When it runs, it does not always display. Sometimes it just pops onto the taskbar, but and I have to click it to get it to display. The msgbox is coded as follows:

    Dim Reply As Integer
    Dim style As MsgBoxStyle
    style = MsgBoxStyle.YesNo
    Or MsgBoxStyle.Question Or MsgBoxStyle.DefaultButton2


    Reply = MsgBox(
    «You have made changes to this record, do want to save them?», style, «Cancel»)

    If Reply = vbYes Then
         SaveRecord()
    End If

    This is a Web based project

Answers

  • Bill

    I know you can put the msgbox in and it will display a messagebox but what was being said was that this will not occur on the client machine but on the server.   So what will happen is that you application will halt until someone on the server machine clicks the msgbox.

    This may not be an issue when you developing and you Server and Development Machine/Client are the same but when you deploy on IIS — it will be a problem as the msgbox wont occur on the client machine viewing you web page — it will occur on the IIS machine.  

    This is why using msgbox wont work.  But there is nothing to stop you physically using it.

Почему у меня не выводит элемент MsgBox(), ошибок не выдаёт во время компиляции, но при нажатии кнопки ничего не происходит. Также пробовал без объявления «msg» и присваивания, тоже ничего не получилось.

Почему этот элемент не корректно работает?

Private Sub CommandButton1_Click()
        'Dim i, s, m As Integer
        Dim msg As Boolean
        'm = Val(TextBox1.Text)
        'Dim N(m) As Integer
        's = 0
        msg = MsgBox("Текст содержащий вопрос", vbYesNo, "Диалоговоя форма")
        'For i = 1 To m
        'ListBox1.Items.Add(Str(i))
        'N(i) = i
        's = +N(i)
        'Next
        'ListBox1.Items.Add("S = " + Str(s))
    End Sub

0xdb's user avatar

0xdb

51.2k194 золотых знака56 серебряных знаков226 бронзовых знаков

задан 7 мая 2018 в 4:07

Fedya's user avatar

4

Во-первых MsgBox возвращает число но не Boolean.

Попробуйте так, взято из рабочей проги:

If MsgBox("Do you want to enter a new patient?", vbYesNo) = MsgBoxResult.No Then
' do something
End If

ответ дан 7 мая 2018 в 13:54

arif's user avatar

arifarif

1597 бронзовых знаков

I am getting an error while using msgbox command in visual basic .net in visual studio 2019 community version .
The error is saying that msgbox is not declared or it is inaccessible due to its protection level.

Please help me to correct this error.
I have downloaded all the required libraries for visual basics.

braX's user avatar

braX

11.4k5 gold badges20 silver badges33 bronze badges

asked Sep 5, 2021 at 4:02

Shreyas's user avatar

2

It sounds like you’re missing an Imports at the top of the file. Likely you want:

Imports System.Windows.Forms

Alternatively, your project might not be referencing the right assemblies for the MessageBox type to be found.

Can you share the contents of your source code and project file, by editing your question to include more details?

answered Sep 6, 2021 at 3:53

Drew Noakes's user avatar

Drew NoakesDrew Noakes

294k162 gold badges669 silver badges736 bronze badges

1

I am getting an error while using msgbox command in visual basic .net in visual studio 2019 community version .
The error is saying that msgbox is not declared or it is inaccessible due to its protection level.

Please help me to correct this error.
I have downloaded all the required libraries for visual basics.

braX's user avatar

braX

11.4k5 gold badges20 silver badges33 bronze badges

asked Sep 5, 2021 at 4:02

Shreyas's user avatar

2

It sounds like you’re missing an Imports at the top of the file. Likely you want:

Imports System.Windows.Forms

Alternatively, your project might not be referencing the right assemblies for the MessageBox type to be found.

Can you share the contents of your source code and project file, by editing your question to include more details?

answered Sep 6, 2021 at 3:53

Drew Noakes's user avatar

Drew NoakesDrew Noakes

294k162 gold badges669 silver badges736 bronze badges

1

  • Remove From My Forums
  • Question

  • User858780068 posted

    i have developed an asp.net application with vb.net code behind. In that i have used message box when the user selects submit button before selecting the value in dropdownlist.

    It is giving me the error

    «Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.»

    please give me the solution

Answers

  • User945078486 posted

    hi,

    You can’t use MsgBox in ASP.net.  The code is executing on the server.  Even if you could use msgbox, when a page request generated a message box, it would pop up on the server not the client’s
    machine.  you said your MsgBox worked partly coz that your client and your web server are running on the same computer. if you use another client computer to access the page, the MsgBox won’t work.

    If you want to generate a client-side message box you need to use a javascript alert.

    • Marked as answer by

      Thursday, October 7, 2021 12:00 AM

  • Remove From My Forums
  • Question

  • User858780068 posted

    i have developed an asp.net application with vb.net code behind. In that i have used message box when the user selects submit button before selecting the value in dropdownlist.

    It is giving me the error

    «Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.»

    please give me the solution

Answers

  • User945078486 posted

    hi,

    You can’t use MsgBox in ASP.net.  The code is executing on the server.  Even if you could use msgbox, when a page request generated a message box, it would pop up on the server not the client’s
    machine.  you said your MsgBox worked partly coz that your client and your web server are running on the same computer. if you use another client computer to access the page, the MsgBox won’t work.

    If you want to generate a client-side message box you need to use a javascript alert.

    • Marked as answer by

      Thursday, October 7, 2021 12:00 AM

  • Home
  • VBForums
  • Visual Basic
  • Visual Basic .NET
  • MsgBox error

  1. Jan 31st, 2005, 02:39 AM


    #1

    terrytemes is offline

    Thread Starter


    Junior Member


    Without this code my program works. With the code I get an error message after each character. It lets me close the error message after each character. Strange. Yet it works in other programs with no problem.

    VB Code
    —————————
    Else

    ‘input box did not match Name
    ‘MsgBox(«Please re-enter a Name»,
    MessageBoxButtons.YesNo, «State Lookup»)
    End If
    ——————————
    End VB Code

    Last edited by terrytemes; Feb 1st, 2005 at 02:27 AM.

    Reason: Resolved


  2. Jan 31st, 2005, 02:46 AM


    #2

    Re: MsgBox error

    Quote Originally Posted by terrytemes

    Without this code my program works. With the code I get an error message after each character. It lets me close the error message after each character. Strange. Yet it works in other programs with no problem.

    VB Code
    —————————
    Else

    ‘input box did not match Name
    ‘MsgBox(«Please re-enter a Name»,
    MessageBoxButtons.YesNo, «State Lookup»)
    End If
    ——————————
    End VB Code

    edit: ohhh, mistake by me.

    gjon already answer it.

    sorry wrong interpretation small problem converting to a big one.

    Last edited by mar_zim; Jan 31st, 2005 at 03:02 AM.


  3. Jan 31st, 2005, 02:57 AM


    #3

    Re: MsgBox error

    Quote Originally Posted by terrytemes

    Without this code my program works. With the code I get an error message after each character. It lets me close the error message after each character. Strange. Yet it works in other programs with no problem.

    VB Code
    —————————
    Else

    ‘input box did not match Name
    ‘MsgBox(«Please re-enter a Name»,
    MessageBoxButtons.YesNo, «State Lookup»)
    End If
    ——————————
    End VB Code

    VB Code:

    1. MessageBox.Show("Please re-enter a Name", "State Lookup", MessageBoxButtons.YesNo)


  4. Jan 31st, 2005, 03:28 AM


    #4

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    oddly enough I get the same error. Is the keypress the problem? I have noticed when using the keypress with other programs it seems to create problems.


  5. Jan 31st, 2005, 03:46 AM


    #5

    Re: MsgBox error

    Quote Originally Posted by terrytemes

    oddly enough I get the same error. Is the keypress the problem? I have noticed when using the keypress with other programs it seems to create problems.

    huh? will you pls. post more code for us to see if what cause your problem


  6. Jan 31st, 2005, 04:00 AM


    #6

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    Here is my code

    VB Code__________________
    Private Sub NameTextBox_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) _
    Handles NameTextBox.KeyPress, InitialTextBox.KeyPress

    ‘Do not allow numbers
    If (e.KeyChar < «a» OrElse e.KeyChar > «z») _
    AndAlso (e.KeyChar < «A» OrElse e.KeyChar > «Z») _
    AndAlso e.KeyChar <> ControlChars.Back _
    AndAlso e.KeyChar = «Enter» Then
    e.Handled = True
    End If

    ‘declare variable
    Dim strName As String

    ‘assign values to variables
    strName = UCase(Me.NameTextBox.Text)

    If Me.Name.TextLength = 100Then

    ‘valid Names
    If strName = «Amy» Then
    Me.IntialsLabel.Text = «AMB»
    ElseIf strName = «Debbie» Then
    Me.IntialsLabel.Text = «DBW»

    Else

    ‘input box did not match Employee Name
    MessageBox.Show(«Please re-enter a Name», «Name Lookup», MessageBoxButtons.YesNo)
    End If

    ‘End If
    End Sub
    End Class
    ———————
    end Code


  7. Jan 31st, 2005, 04:26 AM


    #7

    Re: MsgBox error

    I found one error in your code. This line:

    VB Code:

    1. If Me.Name.TextLength = 100 Then

    Two things:

    1. Me.Name gets the name of the form.
    2. .TextLength isn’t a function associated with Strings. The correct way of doing it would be .Length

    I use Microsoft Visual Basic 2005. (Therefore, most code samples I provide will be based around the .NET Framework v2.0, unless otherwise specified)


  8. Jan 31st, 2005, 04:34 AM


    #8

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    I get this error message
    ‘Length’ is not a member of ‘system.Windows.Forms.TextBox’

    Even when I comment out

    VB Code
    ———————
    If Me.Name.TextLength = 100 Then
    —————-
    end code

    The MsgBox doesn’t work right. It pops up with each character entered. The Program works with out the MsgBox just fine. Oddly enough.

    Last edited by terrytemes; Jan 31st, 2005 at 04:43 AM.


  9. Jan 31st, 2005, 04:45 AM


    #9

    Re: MsgBox error

    Yeah, that’s exactly right. Length isn’t a member of the TextBox class, rather it’s a member of the String class. Because the Text property is defined as type of String, it contains the Length member, so you would get the length of the text in the textbox by typing this:

    VB Code:

    1. TextBox1.Text.Length

    I use Microsoft Visual Basic 2005. (Therefore, most code samples I provide will be based around the .NET Framework v2.0, unless otherwise specified)


  10. Jan 31st, 2005, 04:49 AM


    #10

    Re: MsgBox error

    Oh I see what’s wrong.

    Here’s my rewrite:

    VB Code:

    1. 'assign values to variables

    2. strName = Me.NameTextBox.Text.ToUpper()

    3. 'valid Names

    4. If strName = "AMY" Then

    5.     Me.IntialsLabel.Text = "AMB"

    6. ElseIf strName = "DEBBIE" Then

    7.     Me.IntialsLabel.Text = "DBW"

    8. Else

    9. 'input box did not match Employee Name

    10.     MessageBox.Show("Please re-enter a Name", "Name Lookup", MessageBoxButtons.YesNo)

    11. End If

    If you’re going to convert all the input to case, make sure that you compare with the same case because Amy and AMY are two different strings.

    I use Microsoft Visual Basic 2005. (Therefore, most code samples I provide will be based around the .NET Framework v2.0, unless otherwise specified)


  11. Jan 31st, 2005, 05:23 AM


    #11

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    at the moment the

    VB Code
    ————-
    Else

    ‘input box did not match Employee Name
    MessageBox.Show(«Please re-enter a Name», «Name Lookup», MessageBoxButtons.YesNo)
    End If
    ————
    end code

    Seems to be a problem. When I code it without the KeyPress it works.

    VB Code
    ——————
    ‘Do not allow numbers
    If (e.KeyChar < «a» OrElse e.KeyChar > «z») _
    AndAlso (e.KeyChar < «A» OrElse e.KeyChar > «Z») _
    AndAlso e.KeyChar <> ControlChars.Back Then
    e.Handled = True
    ____________________________
    End Code

    I have noticed that Keypress does caues problems with some Code.

    Last edited by terrytemes; Jan 31st, 2005 at 05:35 AM.


  12. Jan 31st, 2005, 06:28 AM


    #12

    killerbeam1 is offline


    Member


    Resolved Re: MsgBox error

    i have this code

    VB Code:

    1. msgbox("error bad username or password", "this programe whil close in 5 sec")

    2. timer1.enabled = true

    VB Code:

    1. form1

    2. timer1.interger = 5000

    VB Code:

    1. if timer1.interger = 5000 then

    2. end

    3. end if

    this is what i use its not the best option sorry but it sothing to hold hackers in you can also add somthing that you wil have 3 times to enter the password and username if not he wil band of the programe and re instal


  13. Jan 31st, 2005, 01:03 PM


    #13

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    Thanks for the infor This might sound dumb. I have two textBoxes that can return error messages. The code is the same. In one you can look up a name in the other you look up intials. One works the other does not. Is one message box conflicting with the other?

    I am a newbie at this . Sorry for all the questions. this is what I trying now.
    VB Code
    ——————
    Private Sub NameForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    MsgBox(«error bad Name or Initials», «this program will close in 5 sec»)
    timer1.enabled = True

    Main()
    timer1.interger = 5000

    If timer1.interger = 5000 Then
    End
    End If
    End Sub
    ———————
    end Code

    I enter Main becasue I am using one form . the timer1 needs to be declared but it seems dim timer1 as interger doesn’t work.

    Last edited by terrytemes; Jan 31st, 2005 at 01:35 PM.


  14. Feb 1st, 2005, 01:22 AM


    #14

    Re: MsgBox error

    Why do you have it in the KeyUp event. Of course the messagebox will appear every time because as you type the name, you will not fulfil the requirements until it’s actually finished.

    Try putting it in the Leave event of the textbox. The leave event fires when the textbox looses control. May be what you’re looking for.

    I use Microsoft Visual Basic 2005. (Therefore, most code samples I provide will be based around the .NET Framework v2.0, unless otherwise specified)


  15. Feb 1st, 2005, 02:27 AM


    #15

    terrytemes is offline

    Thread Starter


    Junior Member


    Re: MsgBox error

    Thanks I knew some how the KeyPress was the problem. I just didn’t know why. It did not dawn on me why KeyPress was the problem.


  16. Feb 1st, 2005, 04:51 AM


    #16

    killerbeam1 is offline


    Member


    Resolved Re: MsgBox error

    a you have 2 textboxes he ok then i have this script its for passwords and usernames but you can also use for onther

    VB Code:

    1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    2.         If TextBox1.Text = "killerbeam2" and textbox2 = "rre" Then

    3.             MsgBox("password compleet", "do you realy wand use the script page ?", MsgBoxStyle.YesNo)

    4.         ElseIf TextBox1.Text = "killerbeam3" and textbox2 = "rre" Then

    5.             MsgBox("password compleet", "do you realy wand enter alfra glas windows?", MsgBoxStyle.YesNoCancel)

    6.         ElseIf TextBox1.Text = "killerbeam4" and textbox2 = "rre" Then

    7.             MsgBox("password compleet", "do you realy wand to use the database ?", MsgBoxStyle.YesNo)

    8.         Else

    9.             MsgBox("sorry bad password try it later again !")

    10.             timer1.enabled = true

    11.         End If

    12.     End Sub

    VB Code:

    1. form1.vb

    2. timer1.interger = 5000

    i think er is somthing wrong in the script whit form1 but its the best what i have


  17. Feb 1st, 2005, 05:20 AM


    #17

    Re: MsgBox error

    I should have mentioned this before… the ErrorProvider Control may help you simplify your data entry processes.

    Also, dont use the KeyPress event to display notices… its not user friendly.

    Heres a Inherited TextBox Control I wrote called «RestrictedTextBox’
    To Use:
    Add this to a you project….
    Build it …
    Right click on your Toolbox > Select Add/Remove Items…

    Click Browse…
    Browse to this projects bin directory and select the exe/dll…
    the New control should come up under my user controls.

    VB Code:

    1. Option Explicit On

    2. Public Class RestrictedTextBox

    3.     Inherits TextBox

    4. #Region " Member Variables "

    5.     Private m_RestrictionValue As eRestrictions = eRestrictions.None

    6. #End Region

    7. #Region " Enums "

    8.     Public Enum eRestrictions As Integer

    9.         None = 2 ^ 0

    10.         Letters = 2 ^ 1

    11.         Digits = 2 ^ 2

    12.         ControlCharacters = 2 ^ 3

    13.         Punctuation = 2 ^ 4

    14.     End Enum

    15. #End Region

    16. #Region " New Properties "

    17.     Public Property Restrictions() As eRestrictions

    18.         Get

    19.             Return m_RestrictionValue

    20.         End Get

    21.         Set(ByVal Value As eRestrictions)

    22.             m_RestrictionValue = Value

    23.         End Set

    24.     End Property

    25. #End Region

    26.     Protected Overrides Sub OnKeyPress(ByVal e As System.Windows.Forms.KeyPressEventArgs)

    27.         If IsSet(m_RestrictionValue, eRestrictions.Letters) AndAlso _

    28.                 Char.IsLetter(e.KeyChar) Then

    29.             e.Handled = True ' Supress the character

    30.         End If

    31.         If IsSet(m_RestrictionValue, eRestrictions.Digits) AndAlso _

    32.                 Char.IsDigit(e.KeyChar) Then

    33.             e.Handled = True ' Supress the character

    34.         End If

    35.         If IsSet(m_RestrictionValue, eRestrictions.ControlCharacters) AndAlso _

    36.         Char.IsControl(e.KeyChar) Then

    37.             e.Handled = True ' Supress the character

    38.         End If

    39.         If IsSet(m_RestrictionValue, eRestrictions.Punctuation) AndAlso _

    40.         Char.IsPunctuation(e.KeyChar) Then

    41.             e.Handled = True ' Supress the character

    42.         End If

    43.     End Sub

    44.     'Method to check if a flag is set

    45.     Private Shared Function IsSet(ByVal Value As Integer, ByVal Flag As eRestrictions) As Boolean

    46.         Return (Value = (Value Or Flag))

    47.     End Function

    48. End Class

    Usage the default Restrictions value is None… (its basically a normal textbox)

    VB Code:

    1. 'Usage (the IDE property editor doesnt handle flags so you need to do it like so, if you want to exclude multiple items )

    2. 'If i wanted to exclude Letters And Digits

    3. RestrictedTextBox1.Restrictions = RestrictedTextBox.eRestrictions.Letters And RestrictedTextBox.eRestrictions.Digits

    Tips:

    • Google is your friend! Search before posting!
    • Name your thread appropriately… «I Need Help» doesn’t cut it!
    • Always post your code!!!! We can’t read your mind!!! (well, at least most of us!)
    • Allways Include the Name and Line of the Exception (if one is occuring!)
    • If it is relevant state the version of Visual Studio/.Net Framwork you are using (2002/2003/2005)

    If you think I was helpful, rate my post

    IRC Contact: Rizon/xous ChakraNET/xous Freenode/xous


  18. Feb 1st, 2005, 05:28 AM


    #18

    killerbeam1 is offline


    Member


    Re: MsgBox error

    use a key in vb

    i have somthing for you not to big and long

    VB Code:

    1. private sub form1

    2. Me.KeyPreview = True

    VB Code:

    1. If e.KeyCode = Keys.F4 Then

    2.             End

    3.         End If

    this a simple script to use a key


  19. Feb 1st, 2005, 05:34 AM


    #19

    killerbeam1 is offline


    Member


    Red face Re: MsgBox error

    or do you wand somthing els ???


  • Home
  • VBForums
  • Visual Basic
  • Visual Basic .NET
  • MsgBox error


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  • BB code is On
  • Smilies are On
  • [IMG] code is On
  • [VIDEO] code is On
  • HTML code is Off

Forum Rules


Click Here to Expand Forum to Full Width

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Vag код ошибки 0010
  • Vat gov by внутренняя ошибка библиотеки