Vb net msgbox ошибка

You have tried to assign the MsgBox and are not using the method’s return value.

MsgBox("Do you really wish to delete " & txtLayerDelete.Text & "?", MsgBoxStyle.YesNo)

Would be displaying the message box to your user, this method returns a MsgBoxResult object which you should use, as shown below.

Dim delete =  MsgBox("Do you really wish to delete " & txtLayerDelete.Text & "?", MsgBoxStyle.YesNo)

If delete = MsgBoxResult.Yes Then
  'Your logic
End If 

Alternative you can just add an If statement and do:

If MsgBox("Do you really wish to delete?", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then

End If

As an additional note the MsgBox function appears to be outdated, you should try and use MessageBox.Show.

Dim delete = MessageBox.Show("Should this item be deleted", "Form Title", MessageBoxButtons.YesNo)

If delete = DialogResult.Yes Then

End If

  • 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.

This is the important part:

Inherits System.Web.UI.Page

The VB.Net you know so well is for Windows Forms. What we have here is an ASP.Net WebForms page. You can’t use MsgBox() in a web page, because raw HTML doesn’t have a direct match.

Okay, you can with the right tweaks, but it won’t work the way you want — the message will show in a special private desktop on the server, where it blocks the request until the thread times out, and the end user will never see it. It might sometimes seem to work the way you want, but this is only in your development environment, where the web server and client browser are on the same machine. The closest you can get in the real world is registering a javascript function to run at DOM startup to call alert(), and that’s just nowhere near as nice.

This is just one of many differences between the Web Forms and WinForms platforms. Web Forms is intended to make it easier for developers to transition from the WinForms world to web development, but it’s still a whole new platform, based of necessity on the HTTP Request/Response model. It still requires significant study to learn well, just like any other platform.

So when building a web page, you need to think in terms of creating an HTML element to show your message. It’s important to remember that any VB.Net event code you write runs on the web server, only after sending a new request to the server that completely re-starts the page lifecyle, and far away from the end user; never in the user’s web browser. This can be very frustrating at first, because you’ll tend to know VB.Net and the WinForms APIs fairly well, compared to javascript and company hardly at all. But it does get easier with time.

But in this case, you’re really only using MsgBox() to output debugging information. What you can do instead here is use the System.Diagnostics.Trace class. Trace will let you put the messages right into the Visual Studio output window… or a file, or a database, or the console, or wherever you want to see them.

0 / 0 / 0

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

Сообщений: 63

1

04.08.2022, 06:32. Показов 1024. Ответов 14


Студворк — интернет-сервис помощи студентам

Помогите исправить ошибку: Ошибка BC30451 «MsgBox» не объявлена. Возможно, она недоступна из-за своего уровня защиты. Появилась в VS2017.
Может надо какую-то библиотеку подключить?



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:26

2

Цитата
Сообщение от MihailAk
Посмотреть сообщение

«MsgBox» не объявлена

Не может быть. Можно взглянуть на скриншот кода и ошибки?



0



MihailAk

0 / 0 / 0

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

Сообщений: 63

04.08.2022, 08:30

 [ТС]

3

Цитата
Сообщение от I can
Посмотреть сообщение

Не может быть. Можно взглянуть на скриншот кода и ошибки?

Нашел метод исправления. Но все равно глючит, выдает ошибку

Visual Basic
1
2
3
4
5
6
7
8
9
10
11
Public Module Mod_Диалоги
 
    Public Function Question(Text As String, Title As String) As Boolean
        Return (MessageBox.Show(Text, Title, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) = MsgBoxResult.Yes)
    End Function
 
    Public Function MsgBox(Text As String, Buttons As MessageBoxButtons, Title As String)
        Return (MessageBox.Show(Text, Title, Buttons, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1))
    End Function
 
End Module



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:34

4

Цитата
Сообщение от MihailAk
Посмотреть сообщение

Нашел метод исправления

Это костыль.



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:38

5

Цитата
Сообщение от MihailAk
Посмотреть сообщение

Появилась в VS2017

Как исправить ошибку BC3045 "MsgBox" не объявлена в VS2017?



0



0 / 0 / 0

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

Сообщений: 63

04.08.2022, 08:46

 [ТС]

6

А как это можно настроить?



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:51

7

Цитата
Сообщение от MihailAk
Посмотреть сообщение

А как это можно настроить?

Да не надо это настраивать. Оно само работает, пока не сломаешь. Поэтому я и просил скрин, чтобы посмотреть где ты накосячил.



0



0 / 0 / 0

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

Сообщений: 63

04.08.2022, 08:55

 [ТС]

8

Это скрин

Миниатюры

Как исправить ошибку BC3045 "MsgBox" не объявлена в VS2017?
 



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:56

9

MihailAk, а самый верх, где импорты и наследования?



0



MihailAk

0 / 0 / 0

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

Сообщений: 63

04.08.2022, 08:59

 [ТС]

10

У меня есть вот такой модуль для общих переменных:

VB.NET
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Module Mod_ОбщииеПеременные
    Public glОтвет As Long
    Public Const gsНазваниеПрограммы As String = "Опора"
    Public gFЧ As Form1_Чертеж
    Public gFК As Form2_Кнопки
    PublicAs Graphics
    Public МбКфЧ As Double
    Public МбКфZoom As Double
    Public Диаг As Double
 
    Public Sub Main()
        МбКфЧ = 1
        МбКфZoom = 1
        gFК = New Form2_Кнопки
        gFК.TextBox1_X1.Text = 5
        gFК.TextBox2_Y1.Text = 6
        gFК.TextBox3_X2.Text = 7
        gFК.TextBox4_Y2.Text = 8
        Диаг = 5
        gFК.ShowDialog()
 
    End Sub
End Module



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 08:59

11

MihailAk, если не можешь разобраться, то используй тогда вместо MsgBox MessageBox.Show



0



0 / 0 / 0

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

Сообщений: 63

04.08.2022, 09:02

 [ТС]

12

Ок. Только это длинное название. Бюрократизмом попахивает для такой простой задачи!



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 09:03

13

Цитата
Сообщение от MihailAk
Посмотреть сообщение

Бюрократизмом попахивает для такой простой задачи!

Это из Framework-a, а MsgBox из старого Барсика.



0



0 / 0 / 0

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

Сообщений: 63

04.08.2022, 09:05

 [ТС]

14

Цитата
Сообщение от I can
Посмотреть сообщение

Это из Framework-a, а MsgBox из старого Барсика.

А как Барсик подключить к проекту?



0



bite

3745 / 3248 / 709

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

Сообщений: 7,558

04.08.2022, 10:14

15

Лучший ответ Сообщение было отмечено MihailAk как решение

Решение

Цитата
Сообщение от MihailAk
Посмотреть сообщение

А как Барсик подключить к проекту?

MsgBox должен работать «из коробки», ты что-то сломал.

Добавлено через 1 час 4 минуты
Посмотрел проект, там целевая платформа .Net Core, если заменить на .Net 5.0, то всё работает. Но надо ли это делать — решать тебе.



1



IT_Exp

Эксперт

87844 / 49110 / 22898

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

Сообщений: 92,604

04.08.2022, 10:14

15

  • 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

Возможно, вам также будет интересно:

  • Vat gov by ошибка при попытке подключения к tls серверу vat gov by
  • Vat gov by внутренняя ошибка библиотеки
  • Vat 2000 коды ошибок
  • Variosynergic 5000 ошибка e02
  • Variosynergic 5000 коды ошибок

  • Понравилась статья? Поделить с друзьями:
    0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

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