Hi there!
I use a ActiveX-Element "Microsoft Forms 2.0 ListBox-Control" on my screen and add some entries to it. But unfortunately the fontsize is much too small.
How can I set the font size of the control? It doesn't matter if at runtime or design mode. I even could use a CD_ListBox instead of MS_ListBox.
This is my code so far:
zenOn.IElement zElementlstSorts = this.Project.DynPictures().Item("Sorts").Elements().Item("lstSorts"); Microsoft.Vbe.Interop.Forms.ListBox JobListBox = zElementlstSorts.AktiveX() as Microsoft.Vbe.Interop.Forms.ListBox; JobListBox.Clear(); Listcan anyone please help?jobList = GetJobList(); object[] jobIDs = new object[jobList.Count]; object defaultParameter = null; for (int incID = 0; incID < jobList.Count; incID++) { jobIDs[incID] = jobList[incID].id; JobListBox.AddItem(ref jobIDs[incID], ref defaultParameter); }