Comment out until it compiles!

This commit is contained in:
Tara 2022-11-20 17:50:41 -07:00
parent a3d8b659a5
commit 96c2e0f49c
6 changed files with 47 additions and 164 deletions

View file

@ -45,7 +45,6 @@ using System.Text;
using System.Windows.Forms;
using System.Reflection;
using LSLEditor.org.lsleditor.www;
namespace LSLEditor.BugReport
@ -200,19 +199,19 @@ namespace LSLEditor.BugReport
private void listView2_SelectedIndexChanged(object sender, EventArgs e)
{
if (this.listView2.SelectedItems.Count == 0)
/*if (this.listView2.SelectedItems.Count == 0)
return;
ListViewItem lvi = this.listView2.SelectedItems[0];
string Handle = lvi.Tag.ToString();
Service1 service1 = new Service1();
service1.GetStatusCompleted += new GetStatusCompletedEventHandler(service1_GetStatusCompleted);
service1.GetStatusAsync(Handle, Handle);
service1.GetStatusAsync(Handle, Handle);*/
}
/*
void service1_GetStatusCompleted(object sender, GetStatusCompletedEventArgs e)
{
this.textBox5.Clear();
/*this.textBox5.Clear();
string Handle = e.UserState.ToString();
if (e.Error != null)
{
@ -253,7 +252,7 @@ namespace LSLEditor.BugReport
}
this.textBox4.Text = strResult.Replace("\n", "\r\n");
}
}*/
private void deleteToolStripMenuItem_Click(object sender, EventArgs e)
{

View file

@ -111,8 +111,8 @@ namespace LSLEditor.BugReport
int intTotal = 0;
try
{
org.lsleditor.www.Service1 webservice = new org.lsleditor.www.Service1();
//org.lsleditor.www.Service1 webservice = new org.lsleditor.www.Service1();
/*
string Handle = webservice.Open();
if (Handle == null)
{
@ -140,7 +140,7 @@ namespace LSLEditor.BugReport
intTotal += Upload(Handle, strFileName, file.Path);
}
intNumber++;
}
}*/
}
catch
{
@ -179,7 +179,7 @@ namespace LSLEditor.BugReport
}
private int Upload(string Handle, string FileName, byte[] buffer)
{
org.lsleditor.www.Service1 webservice = new org.lsleditor.www.Service1();
/*org.lsleditor.www.Service1 webservice = new org.lsleditor.www.Service1();
if (Handle == null)
return 0;
@ -203,7 +203,8 @@ namespace LSLEditor.BugReport
intTotal += intLength;
SetValue(intTotal);
}
return intTotal;
return intTotal;*/
return 0;
}
private int Upload(string Handle, string FileName, string strPath)