update 20241204
This commit is contained in:
@@ -546,7 +546,7 @@ namespace OnDoc.UICintrols
|
||||
}
|
||||
public void createnewdoc(int partnernr, int dokumenttypnr, bool Favoriten = false, string interaktion = "Yes", string showdoc = "Yes")
|
||||
{
|
||||
|
||||
|
||||
if (dokumenttypnr == 0)
|
||||
{
|
||||
DokTypSelect DokTypSelect = new DokTypSelect(Favoriten);
|
||||
@@ -559,7 +559,7 @@ namespace OnDoc.UICintrols
|
||||
else { return; }
|
||||
}
|
||||
|
||||
int selectedIndex = RibbonCBProfil.SelectedIndex;
|
||||
|
||||
profilnr = Convert.ToInt32(RibbonCBProfil.SelectedItem.Tag.ToString());
|
||||
Dokumenterstellung frmnewdok = new Dokumenterstellung(partnernr, dokumenttypnr, profilnr);
|
||||
if (interaktion == "No")
|
||||
@@ -880,7 +880,7 @@ namespace OnDoc.UICintrols
|
||||
string URL = AppParams.RESTURI + "api/ArchiveDocFromDatabase?dokumentid=" + documentid;
|
||||
|
||||
HttpWebRequest webRequest = HttpWebRequest.Create(URL) as HttpWebRequest;
|
||||
webRequest.Method = WebRequestMethods.Http.Post;
|
||||
webRequest.Method = WebRequestMethods.Http.Get;
|
||||
webRequest.Headers["Authorization"] = "Bearer " + AppParams.apikey;
|
||||
try
|
||||
{
|
||||
@@ -1200,9 +1200,9 @@ namespace OnDoc.UICintrols
|
||||
this.sfDataGrid1.Deserialize(ms);
|
||||
|
||||
}
|
||||
sfDataGrid1.ShowToolTip = true;
|
||||
sfDataGrid1.ToolTipOption.AutoPopDelay = 500;
|
||||
sfDataGrid1.ToolTipOption.InitialDelay = 500;
|
||||
//sfDataGrid1.ShowToolTip = true;
|
||||
//sfDataGrid1.ToolTipOption.AutoPopDelay = 500;
|
||||
//sfDataGrid1.ToolTipOption.InitialDelay = 500;
|
||||
System.Windows.Forms.Application.DoEvents();
|
||||
|
||||
}
|
||||
@@ -1398,6 +1398,12 @@ namespace OnDoc.UICintrols
|
||||
tt.Text = "Hallo Du";
|
||||
e.ToolTipInfo.Items.Add(tt);
|
||||
}
|
||||
|
||||
private void ribbonButtonVorlagenfeldregel_Click(object sender, EventArgs e)
|
||||
{
|
||||
TableEditor tb = new TableEditor("Vorlagenfeldregel");
|
||||
tb.Show();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user