Форум программистов, компьютерный форум, киберфорум
C++/CLI
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.67/3: Рейтинг темы: голосов - 3, средняя оценка - 4.67
0 / 0 / 0
Регистрация: 08.12.2019
Сообщений: 2

Ошибка при написании калькулятора: нарушение прав доступа при записи по адресу

05.05.2020, 20:29. Показов 618. Ответов 3
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Всем привет! Первый раз пишу программу и встретился с ошибкой в файле MyForm.cpp в исходном файле(Вызвано исключение по адресу 0x7BF0BABF (cmdvrt32.dll) в Project10.exe: 0xC0000005: нарушение прав доступа при записи по адресу 0x00000004. и в последней строчке горит крестик). Также, в свойствах проекта поставил подсистему Windows (/SUBSYSTEM:WINDOWS) и точку входа Main. Помогите, пожалуйста!
C++
1
2
3
4
5
6
7
8
9
10
#include "MyForm.h"
 
using namespace System;
using namespace System::Windows::Forms;
[STAThreadAttribute]
void Main(array<String^>^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    Project10::MyForm form;
    Application::Run(% form);
Сама программа калькулятора
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#pragma once
#include <math.h>
 
namespace Project10 {
 
    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;
 
    /// <summary>
    /// Сводка для MyForm
    /// </summary>
    public ref class MyForm : public System::Windows::Forms::Form
    {
    public:
        MyForm(void)
        {
            InitializeComponent();
            //
            //TODO: добавьте код конструктора
            //
        }
 
    protected:
        /// <summary>
        /// Освободить все используемые ресурсы.
        /// </summary>
        ~MyForm()
        {
            if (components)
            {
                delete components;
            }
        }
    private: System::Windows::Forms::TextBox^ textBox1;
    protected:
    private: System::Windows::Forms::Button^ button_Delete;
    private: System::Windows::Forms::Button^ button_DeleteAll;
    private: System::Windows::Forms::Button^ button_Kvadrat;
    private: System::Windows::Forms::Button^ button_Plus;
    private: System::Windows::Forms::Button^ button_Koren;
    private: System::Windows::Forms::Button^ button_Minus;
    private: System::Windows::Forms::Button^ button9;
    private: System::Windows::Forms::Button^ button8;
    private: System::Windows::Forms::Button^ button7;
    private: System::Windows::Forms::Button^ button_Delenie;
    private: System::Windows::Forms::Button^ button6;
    private: System::Windows::Forms::Button^ button5;
    private: System::Windows::Forms::Button^ button4;
    private: System::Windows::Forms::Button^ button_Umnojenie;
    private: System::Windows::Forms::Button^ hj;
    private: System::Windows::Forms::Button^ fd;
    private: System::Windows::Forms::Button^ vbc;
    private: System::Windows::Forms::Button^ button_Ravno;
    private: System::Windows::Forms::Button^ button_Tochka;
    private: System::Windows::Forms::Button^ button0;
    private: System::Windows::Forms::Button^ button_PlusOrMinus;
    private: System::Windows::Forms::Label^ lbl;
 
 
    private:
        /// <summary>
        /// Обязательная переменная конструктора.
        /// </summary>
        System::ComponentModel::Container ^components;
 
#pragma region Windows Form Designer generated code
        /// <summary>
        /// Требуемый метод для поддержки конструктора — не изменяйте 
        /// содержимое этого метода с помощью редактора кода.
        /// </summary>
        void InitializeComponent(void)
        {
            this->textBox1 = (gcnew System::Windows::Forms::TextBox());
            this->button_Delete = (gcnew System::Windows::Forms::Button());
            this->button_DeleteAll = (gcnew System::Windows::Forms::Button());
            this->button_Kvadrat = (gcnew System::Windows::Forms::Button());
            this->button_Plus = (gcnew System::Windows::Forms::Button());
            this->button_Koren = (gcnew System::Windows::Forms::Button());
            this->button_Minus = (gcnew System::Windows::Forms::Button());
            this->button9 = (gcnew System::Windows::Forms::Button());
            this->button8 = (gcnew System::Windows::Forms::Button());
            this->button7 = (gcnew System::Windows::Forms::Button());
            this->button_Delenie = (gcnew System::Windows::Forms::Button());
            this->button6 = (gcnew System::Windows::Forms::Button());
            this->button5 = (gcnew System::Windows::Forms::Button());
            this->button4 = (gcnew System::Windows::Forms::Button());
            this->button_Umnojenie = (gcnew System::Windows::Forms::Button());
            this->hj = (gcnew System::Windows::Forms::Button());
            this->fd = (gcnew System::Windows::Forms::Button());
            this->vbc = (gcnew System::Windows::Forms::Button());
            this->button_Ravno = (gcnew System::Windows::Forms::Button());
            this->button_Tochka = (gcnew System::Windows::Forms::Button());
            this->button0 = (gcnew System::Windows::Forms::Button());
            this->button_PlusOrMinus = (gcnew System::Windows::Forms::Button());
            this->lbl = (gcnew System::Windows::Forms::Label());
            this->SuspendLayout();
            // 
            // textBox1
            // 
            this->textBox1->Location = System::Drawing::Point(18, 20);
            this->textBox1->Multiline = true;
            this->textBox1->Name = L"textBox1";
            this->textBox1->Size = System::Drawing::Size(249, 62);
            this->textBox1->TabIndex = 0;
            this->textBox1->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
            // 
            // button_Delete
            // 
            this->button_Delete->Location = System::Drawing::Point(290, 20);
            this->button_Delete->Name = L"button_Delete";
            this->button_Delete->Size = System::Drawing::Size(68, 58);
            this->button_Delete->TabIndex = 1;
            this->button_Delete->Text = L"<==";
            this->button_Delete->UseVisualStyleBackColor = true;
            // 
            // button_DeleteAll
            // 
            this->button_DeleteAll->Location = System::Drawing::Point(22, 106);
            this->button_DeleteAll->Name = L"button_DeleteAll";
            this->button_DeleteAll->Size = System::Drawing::Size(67, 66);
            this->button_DeleteAll->TabIndex = 2;
            this->button_DeleteAll->Text = L"C";
            this->button_DeleteAll->UseVisualStyleBackColor = true;
            // 
            // button_Kvadrat
            // 
            this->button_Kvadrat->Location = System::Drawing::Point(112, 106);
            this->button_Kvadrat->Name = L"button_Kvadrat";
            this->button_Kvadrat->Size = System::Drawing::Size(67, 66);
            this->button_Kvadrat->TabIndex = 3;
            this->button_Kvadrat->Text = L"^";
            this->button_Kvadrat->UseVisualStyleBackColor = true;
            // 
            // button_Plus
            // 
            this->button_Plus->Location = System::Drawing::Point(290, 106);
            this->button_Plus->Name = L"button_Plus";
            this->button_Plus->Size = System::Drawing::Size(67, 66);
            this->button_Plus->TabIndex = 5;
            this->button_Plus->Text = L"+";
            this->button_Plus->UseVisualStyleBackColor = true;
            // 
            // button_Koren
            // 
            this->button_Koren->Location = System::Drawing::Point(200, 106);
            this->button_Koren->Name = L"button_Koren";
            this->button_Koren->Size = System::Drawing::Size(67, 66);
            this->button_Koren->TabIndex = 4;
            this->button_Koren->Text = L"/^";
            this->button_Koren->UseVisualStyleBackColor = true;
            // 
            // button_Minus
            // 
            this->button_Minus->Location = System::Drawing::Point(290, 197);
            this->button_Minus->Name = L"button_Minus";
            this->button_Minus->Size = System::Drawing::Size(67, 66);
            this->button_Minus->TabIndex = 9;
            this->button_Minus->Text = L"-";
            this->button_Minus->UseVisualStyleBackColor = true;
            // 
            // button9
            // 
            this->button9->Location = System::Drawing::Point(200, 197);
            this->button9->Name = L"button9";
            this->button9->Size = System::Drawing::Size(67, 66);
            this->button9->TabIndex = 8;
            this->button9->Text = L"9";
            this->button9->UseVisualStyleBackColor = true;
            // 
            // button8
            // 
            this->button8->Location = System::Drawing::Point(112, 197);
            this->button8->Name = L"button8";
            this->button8->Size = System::Drawing::Size(67, 66);
            this->button8->TabIndex = 7;
            this->button8->Text = L"8";
            this->button8->UseVisualStyleBackColor = true;
            // 
            // button7
            // 
            this->button7->Location = System::Drawing::Point(22, 197);
            this->button7->Name = L"button7";
            this->button7->Size = System::Drawing::Size(67, 66);
            this->button7->TabIndex = 6;
            this->button7->Text = L"7";
            this->button7->UseVisualStyleBackColor = true;
            // 
            // button_Delenie
            // 
            this->button_Delenie->Location = System::Drawing::Point(290, 288);
            this->button_Delenie->Name = L"button_Delenie";
            this->button_Delenie->Size = System::Drawing::Size(67, 66);
            this->button_Delenie->TabIndex = 13;
            this->button_Delenie->Text = L"/";
            this->button_Delenie->UseVisualStyleBackColor = true;
            // 
            // button6
            // 
            this->button6->Location = System::Drawing::Point(200, 288);
            this->button6->Name = L"button6";
            this->button6->Size = System::Drawing::Size(67, 66);
            this->button6->TabIndex = 12;
            this->button6->Text = L"6";
            this->button6->UseVisualStyleBackColor = true;
            // 
            // button5
            // 
            this->button5->Location = System::Drawing::Point(112, 288);
            this->button5->Name = L"button5";
            this->button5->Size = System::Drawing::Size(67, 66);
            this->button5->TabIndex = 11;
            this->button5->Text = L"5";
            this->button5->UseVisualStyleBackColor = true;
            // 
            // button4
            // 
            this->button4->Location = System::Drawing::Point(22, 288);
            this->button4->Name = L"button4";
            this->button4->Size = System::Drawing::Size(67, 66);
            this->button4->TabIndex = 10;
            this->button4->Text = L"4";
            this->button4->UseVisualStyleBackColor = true;
            // 
            // button_Umnojenie
            // 
            this->button_Umnojenie->Location = System::Drawing::Point(290, 384);
            this->button_Umnojenie->Name = L"button_Umnojenie";
            this->button_Umnojenie->Size = System::Drawing::Size(67, 66);
            this->button_Umnojenie->TabIndex = 17;
            this->button_Umnojenie->Text = L"*";
            this->button_Umnojenie->UseVisualStyleBackColor = true;
            // 
            // hj
            // 
            this->hj->Location = System::Drawing::Point(200, 384);
            this->hj->Name = L"hj";
            this->hj->Size = System::Drawing::Size(67, 66);
            this->hj->TabIndex = 16;
            this->hj->Text = L"3";
            this->hj->UseVisualStyleBackColor = true;
            // 
            // fd
            // 
            this->fd->Location = System::Drawing::Point(112, 384);
            this->fd->Name = L"fd";
            this->fd->Size = System::Drawing::Size(67, 66);
            this->fd->TabIndex = 15;
            this->fd->Text = L"2";
            this->fd->UseVisualStyleBackColor = true;
            // 
            // vbc
            // 
            this->vbc->Location = System::Drawing::Point(22, 384);
            this->vbc->Name = L"vbc";
            this->vbc->Size = System::Drawing::Size(67, 66);
            this->vbc->TabIndex = 14;
            this->vbc->Text = L"1";
            this->vbc->UseVisualStyleBackColor = true;
            // 
            // button_Ravno
            // 
            this->button_Ravno->Location = System::Drawing::Point(290, 468);
            this->button_Ravno->Name = L"button_Ravno";
            this->button_Ravno->Size = System::Drawing::Size(67, 66);
            this->button_Ravno->TabIndex = 21;
            this->button_Ravno->Text = L"=";
            this->button_Ravno->UseVisualStyleBackColor = true;
            // 
            // button_Tochka
            // 
            this->button_Tochka->Location = System::Drawing::Point(200, 468);
            this->button_Tochka->Name = L"button_Tochka";
            this->button_Tochka->Size = System::Drawing::Size(67, 66);
            this->button_Tochka->TabIndex = 20;
            this->button_Tochka->Text = L".";
            this->button_Tochka->UseVisualStyleBackColor = true;
            // 
            // button0
            // 
            this->button0->Location = System::Drawing::Point(112, 468);
            this->button0->Name = L"button0";
            this->button0->Size = System::Drawing::Size(67, 66);
            this->button0->TabIndex = 19;
            this->button0->Text = L"0";
            this->button0->UseVisualStyleBackColor = true;
            // 
            // button_PlusOrMinus
            // 
            this->button_PlusOrMinus->Location = System::Drawing::Point(22, 468);
            this->button_PlusOrMinus->Name = L"button_PlusOrMinus";
            this->button_PlusOrMinus->Size = System::Drawing::Size(67, 66);
            this->button_PlusOrMinus->TabIndex = 18;
            this->button_PlusOrMinus->Text = L"+/-";
            this->button_PlusOrMinus->UseVisualStyleBackColor = true;
            // 
            // lbl
            // 
            this->lbl->AutoSize = true;
            this->lbl->Location = System::Drawing::Point(22, 29);
            this->lbl->Name = L"lbl";
            this->lbl->Size = System::Drawing::Size(0, 20);
            this->lbl->TabIndex = 22;
            // 
            // MyForm
            // 
            this->AutoScaleDimensions = System::Drawing::SizeF(9, 20);
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->ClientSize = System::Drawing::Size(379, 561);
            this->Controls->Add(this->lbl);
            this->Controls->Add(this->button_Ravno);
            this->Controls->Add(this->button_Tochka);
            this->Controls->Add(this->button0);
            this->Controls->Add(this->button_PlusOrMinus);
            this->Controls->Add(this->button_Umnojenie);
            this->Controls->Add(this->hj);
            this->Controls->Add(this->fd);
            this->Controls->Add(this->vbc);
            this->Controls->Add(this->button_Delenie);
            this->Controls->Add(this->button6);
            this->Controls->Add(this->button5);
            this->Controls->Add(this->button4);
            this->Controls->Add(this->button_Minus);
            this->Controls->Add(this->button9);
            this->Controls->Add(this->button8);
            this->Controls->Add(this->button7);
            this->Controls->Add(this->button_Plus);
            this->Controls->Add(this->button_Koren);
            this->Controls->Add(this->button_Kvadrat);
            this->Controls->Add(this->button_DeleteAll);
            this->Controls->Add(this->button_Delete);
            this->Controls->Add(this->textBox1);
            this->Name = L"MyForm";
            this->Text = L"MyForm";
            this->ResumeLayout(false);
            this->PerformLayout();
 
        }
#pragma endregion
        double iFirstnum;
        double iSecondnum;
        double iResolt;
        String^ iOperate;
 
        //Знак равно
private: System::Void button12_Click(System::Object^ sender, System::EventArgs^ e) {
    lbl->Text = "";
    iSecondnum = Double::Parse(textBox1->Text);
    if (iOperate == "+") {
        iResolt = iFirstnum + iSecondnum;
        textBox1->Text = System::Convert::ToString(iResolt);
    }
    else if (iOperate == "-") {
        iResolt = iFirstnum - iSecondnum;
        textBox1->Text = System::Convert::ToString(iResolt);
 
    }
    else if (iOperate == "/") {
        iResolt = iFirstnum / iSecondnum;
        textBox1->Text = System::Convert::ToString(iResolt);
    }
    else
        if (iOperate == "x") {
            iResolt = iFirstnum * iSecondnum;
            textBox1->Text = System::Convert::ToString(iResolt);
        }
        else if (iOperate == "^") {
            iResolt = pow(iFirstnum, iSecondnum);
            textBox1->Text = System::Convert::ToString(iResolt);
        }
 
 
}
private: System::Void button18_Click(System::Object^ sender, System::EventArgs^ e) {
    if (textBox1->Text->Contains("-")) {
        textBox1->Text = textBox1->Text->Remove(0, 1);
    }
    else
    {
        textBox1->Text = "-" + textBox1->Text;
 
    }
}
private: System::Void MyForm_Load(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void label1_Click(System::Object^ sender, System::EventArgs^ e) {
}
 
 
private: System::Void textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) {
    if (textBox1->Text == "") {
        textBox1->Text = "0";
    }
}
private: System::Void button_DeleteAll_Click(System::Object^ sender, System::EventArgs^ e) {
    textBox1->Text = "0";
    lbl->Text = "";
 
}
 
 
private: System::Void buton_click(System::Object^ sender, System::EventArgs^ e) {
    Button^ Numbers = safe_cast <Button^>(sender);
    if (textBox1->Text == "0")
    {
        textBox1->Text = Numbers->Text;
    }
    else
    {
        textBox1->Text = textBox1->Text + Numbers->Text;
    }
 
}
 
private: System::Void Arithmetic(System::Object^ sender, System::EventArgs^ e) {
    Button^ op = safe_cast <Button^>(sender);
    iFirstnum = double::Parse(textBox1->Text);
    textBox1->Text = "";
    iOperate = op->Text;
    lbl->Text = System::Convert::ToString(iFirstnum) + "" + iOperate;
    if (iOperate == "/^") {
        iResolt = sqrt(iFirstnum);
        textBox1->Text = System::Convert::ToString(iResolt);
    }
 
 
}
 
private: System::Void button_Delete_Click(System::Object^ sender, System::EventArgs^ e) {
    if (textBox1->Text->Length > 0) {
        textBox1->Text = textBox1->Text->Remove(textBox1->Text->Length - 1, 1);
    }
}
private: System::Void button_Tochka_Click(System::Object^ sender, System::EventArgs^ e) {
    if (!textBox1->Text->Contains(",")) {
        textBox1->Text = textBox1->Text + ",";
    }
 
}
private: System::Void label1_Click_1(System::Object^ sender, System::EventArgs^ e) {
}
};
}
0
Programming
Эксперт
39485 / 9562 / 3019
Регистрация: 12.04.2006
Сообщений: 41,671
Блог
05.05.2020, 20:29
Ответы с готовыми решениями:

Strcpy ошибка нарушение прав доступа при записи по адресу
Собственно, при выполнении программы вылетает следующее сообщение (скрин во вложении). Помогите, пожалуйста, исправить. //MyForm.h ...

Ошибка при использовании openfilename: Нарушение прав доступа при записи по адресу
Здравствуйте, подскажите: При использовании кода (слева), после выбора файла, возникает ошибка (справа)

Ошибка: нарушение прав доступа при записи по адресу
Надо написать следующую программу: дан символьный массив из 101 элемента. По спецификации %s вводится множество символов количеством не...

3
nd2
3438 / 2817 / 1249
Регистрация: 29.01.2016
Сообщений: 9,427
05.05.2020, 22:51
Цитата Сообщение от Crocodilofff Посмотреть сообщение
Вызвано исключение по адресу 0x7BF0BABF (cmdvrt32.dll) в Project10.exe: 0xC0000005: нарушение прав доступа при записи по адресу 0x00000004
Когда происходит?
0
0 / 0 / 0
Регистрация: 08.12.2019
Сообщений: 2
15.05.2020, 01:10  [ТС]
Прошу прощения, за своевременность. Не отправилось оказывается. Происходит при компиляции программы
0
nd2
3438 / 2817 / 1249
Регистрация: 29.01.2016
Сообщений: 9,427
15.05.2020, 01:19
При компиляции? Тогда выложи (текстом) ВЕСЬ вывод (именно, ВЫВОД) компилятора при компиляции.
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
inter-admin
Эксперт
29715 / 6470 / 2152
Регистрация: 06.03.2009
Сообщений: 28,500
Блог
15.05.2020, 01:19
Помогаю со студенческими работами здесь

Ошибка:нарушение прав доступа при записи по адресу
Помогите понять в чём ошибка. Моя программа должна заменять числа из шестнадцатиричной системы счисления на аналоги в двоичной системе....

Необработанное исключение по адресу, нарушение прав доступа при записи по адресу
вот само задание: Авиарейсы (номер рейса, пункт назначения, время вылета, дата вылета, стоимость билета, количество мест). Выбор по дате...

Исправить ошибку: необработанное исключение по адресу, нарушение прав доступа при записи по адресу
Помогите, пожалуйста, исправит ошибку. Необработанное исключение по адресу 0x77D88E19 (ntdll.dll) в Lab11.exe: 0xC0000005: нарушение...

Вызвано исключение по адресу 0x003F2357 в Лабораторна 15.exe: 0xC0000005: нарушение прав доступа при записи по адресу 0x
Что это такое и как это исправить? Вот фрагмент кода где и есть проблема: ... int size = 9; int **intMas =...

Вызвано исключение по адресу 0x010F2FF7 в Project25.exe: 0xC0000005: нарушение прав доступа при записи по адресу 0xFDFDF
Всплывает окно на 45ой строке с сообщением: &quot;Вызвано исключение по адресу 0x010F2FF7 в Project25.exe: 0xC0000005: нарушение прав доступа...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
4
Ответ Создать тему
Новые блоги и статьи
Контроль заполнения и очистка дат в зависимости от значения перечислений
Maks 12.04.2026
Алгоритм из решения ниже реализован на примере нетипового документа "ПланированиеПерсонала", разработанного в конфигурации КА2. Задача: реализовать контроль корректности заполнения дат назначения. . .
Архитектура слоя интернета для сервера-слоя.
Hrethgir 11.04.2026
В продолжение https:/ / www. cyberforum. ru/ blogs/ 223907/ 10860. html Знаешь что я подумал? Раз мы все источники пишем в голове ветки, то ничего не мешает добавить в голову такой источник, который сам. . .
Подстановка значения реквизита справочника в табличную часть документа
Maks 10.04.2026
Алгоритм из решения ниже реализован на примере нетипового документа "ПланированиеПерсонала", разработанного в конфигурации КА2. Задача: при выборе сотрудника (справочник Сотрудники) в ТЧ документа. . .
Очистка реквизитов документа при копировании
Maks 09.04.2026
Алгоритм из решения ниже применим как для типовых, так и для нетиповых документов на самых различных конфигурациях. Задача: при копировании документа очищать определенные реквизиты и табличную. . .
модель ЗдравоСохранения 8. Подготовка к разному выполнению заданий
anaschu 08.04.2026
https:/ / github. com/ shumilovas/ med2. git main ветка * содержимое блока дэлэй из старой модели теперь внутри зайца новой модели 8ATzM_2aurI
Блокировка документа от изменений, если он открыт у другого пользователя
Maks 08.04.2026
Алгоритм из решения ниже реализован на примере нетипового документа, разработанного в конфигурации КА2. Задача: запретить редактирование документа, если он открыт у другого пользователя. / / . . .
Система безопасности+живучести для сервера-слоя интернета (сети). Двойная привязка.
Hrethgir 08.04.2026
Далее были размышления о системе безопасности. Сообщения с наклонным текстом - мои. А как нам будет можно проверить, что ссылка наша, а не подделана хулиганами, которая выбросит на другую ветку и. . .
Модель ЗдрввоСохранения 7: больше работников, больше ресурсов.
anaschu 08.04.2026
работников и заданий может быть сколько угодно, но настроено всё так, что используется пока что только 20% kYBz3eJf3jQ
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru