Merge pull request #50 from IngenerkaTeamCenter/nikpopl-patch-2
I fixed Cant with image addresses
This commit is contained in:
commit
70070b645f
1 changed files with 12 additions and 2 deletions
|
@ -253,14 +253,24 @@ namespace WindowsFormsApplication1
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(adres_papki);
|
Directory.CreateDirectory(adres_papki);
|
||||||
}
|
}
|
||||||
File.Copy(adressBackground, adres_papki + "\\" + Path.GetFileName(adressBackground), true);
|
|
||||||
|
if (adressBackground != adres_papki + "\\" + Path.GetFileName(adressBackground))
|
||||||
|
{
|
||||||
|
File.Copy(adressBackground, adres_papki + "\\" + Path.GetFileName(adressBackground), true);
|
||||||
|
}
|
||||||
|
|
||||||
Files.CreateStruct(filename);
|
Files.CreateStruct(filename);
|
||||||
Files.OpenMain(filename, PictureBoxBackground, adressBackground);
|
Files.OpenMain(filename, PictureBoxBackground, adressBackground);
|
||||||
|
|
||||||
for (int nomer = 0; nomer < nomerPersa; nomer++)
|
for (int nomer = 0; nomer < nomerPersa; nomer++)
|
||||||
{
|
{
|
||||||
File.Copy(persons[nomer].adress, adres_papki + "\\" + Path.GetFileName(persons[nomer].adress), true);
|
|
||||||
|
if (adres_papki == adres_papki + "\\" + Path.GetFileName(persons[nomer].adress))
|
||||||
|
{
|
||||||
|
File.Copy(persons[nomer].adress, adres_papki + "\\" + Path.GetFileName(persons[nomer].adress), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// File.Copy(persons[nomer].adress, adres_papki + "\\" + Path.GetFileName(persons[nomer].adress), true);
|
||||||
|
|
||||||
if (persons[nomer].moveside == "Прямо")
|
if (persons[nomer].moveside == "Прямо")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue