Posts by Milton Machado Pereira • 26 points
6 posts
-
-3
votes3
answers507
viewsA: How to merge two Pdfs into Base64 in one
string.Join("", listaDeStrings);
-
-2
votes1
answer112
viewsQ: c# - How to close a specific instance of internet explorer?
I can with this code. foreach (Process p in Process.GetProcessesByName("explorer")) {p.Kill();} But I need to close just one instance taking maybe by the window title. This is the window that needs…
-
0
votes1
answer28
viewsA: Error adding list in "Checked List Box"
try to foreach on checkedlist as well foreach (var item in mylist) { checkedListBox1.Items.Add(item); }
c#answered Milton Machado Pereira 26 -
0
votes0
answers39
viewsQ: C# - get JSESSIONID site ftp error 401
I can’t get JSESSIONID to download a file from an ftp. I need it because if I put JSESSIONID fixed the file low, otherwise it gives error 401 unauthorized. However this id changes. WebRequest…
-
0
votes2
answers259
viewsQ: C# - Can you run a task and return to the main thread later?
in the case the whole program is written without task and only one excerpt is with task, I wanted after that piece it returned to the "main thread". The code below is inside a for, and serves to…
-
1
votes0
answers229
viewsQ: While installing visual studio 2017 on my Windows 7 error occurs. Visual studio 2015 is installed normally
While installing Visual Studio 2017 on my Windows 7 error occurs. 2018-03-19T13:04:58 : Verbose : Visual Studio Installer (1.15.3242.223 : release) ["C: Program Files (x86) Microsoft Visual Studio…