-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelp_tk.h
More file actions
22 lines (16 loc) · 760 Bytes
/
Help_tk.h
File metadata and controls
22 lines (16 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include"stdafx.h"
ref class Help_tk
{
public:
Help_tk();
std::string toStandardString(System::String^ string);
std::string findIDInFile(std::string path, std::string id);
System::String ^ convertstringToString(std::string s);
std::string convertStringTostring(System::String ^ S);
void writeToFile(std::string path, System::String ^ S);
std::vector<std::string> readFileVT(std::string path);
void addToDataGripView1(System::Windows::Forms::DataGridView ^ dtgv, std::vector<std::string> v);
void WriteDataGridViewToFile(System::Windows::Forms::DataGridView ^ dtgv, std::string pathFile);
void LocDataGridView(System::Windows::Forms::DataGridView ^ dtgv, System::Windows::Forms::ComboBox ^ cb, int chiso);
};