User Profile
Collapse
-
I dont know, how is your code build up...but..why don't you use a loop, to go through all the files and after every file you can set your label text or something like that. -
-
Finally, i got it. What a mess. ;)
Here's the code:
This took me so much time, just for finding out, that the added Categories are named...Code:myChart.Charts(0).SeriesCollection(0).Points(1).Interior.Color = "red" myChart.Charts(0).SeriesCollection(0).Points(0).Interior.Color = "green" myChart.Charts(0).SeriesCollection(0).Points(2).Interior.Color = "yellow"
Leave a comment:
-
Hi,
thanks for your answer.
You are right, with your posted code, i can change the Chart Categories colors, but only in ONE Color. Picture: http://www.pictureupload.de/pictures...artcolors2.JPG
Any additional ideas?
Greetings from Germany.Leave a comment:
-
OWC11 AxChartSpace - Colors
Hi,
i'm using the OWC11 AxChartSpace Component for a little statistic.
Everything works great, but i'm not very happy with the used colors in the ChartPie, so i want to change them.
So it looks like at the moment: http://img249.yfrog.com/i/chartcolors.jpg
For example i want to change the color of the "unbestätig t" Value, to green..but i have absolutely no idea how to do this. I only found... -
Ok, i'm an idiot. :)
Here's the solution:
The AddressOf was missing. :)Code:AddHandler Microsoft.Win32.SystemEvents.SessionSwitch, _ AddressOf SystemEvents_Sessionswitch Console.ReadLine() RemoveHandler Microsoft.Win32.SystemEvents.SessionSwitch, _ AddressOf SystemEvents_SessionswitchLeave a comment:
-
Windows lock/unlock (with code)
Hi everyone,
i'm trying to Handle the Micosoft.Win32. SessionSwitch Event, so when Windows is going to be locked by the user, i will simply write a line to the console.When it's going to be unlocked, the same.
Here's the code:
...Code:Sub Main() AddHandler Microsoft.Win32.SystemEvents.SessionSwitch, _ SystemEvents_Sessionswitch() Console.ReadLine() RemoveHandler -
I found a solution :)
After i went through every Item i do this:
...Code:If objRecip.Resolved Then objFolder = objNS.GetSharedDefaultFolder(objRecip, Outlook.OlDefaultFolders.olFolderCalendar) For x As Integer = 1 To objFolder.Items.Count 'Same code as above... End If 'Quit the Session when every item is added. objolApp.Quit()Leave a comment:
-
VB.NET, App - How can i close an Outlook Item?
Hey,
i have written this code to read all Outlook Appointments from another user and fill them into my DGV.
...Code:Public Sub ReadOtherUserAppointment(ByVal UserName As String) Dim objolApp As New Outlook.Application Dim objNS As Outlook.NameSpace Dim objRecip As Outlook.Recipient Dim objFolder As Outlook.MAPIFolder objNS = objolApp.GetNamespace("MAPI") -
Solved it :)
Here you go :)
...Code:Public Sub ReadOtherUserAppointment() Dim objolApp As New Outlook.Application Dim objNS As Outlook.NameSpace Dim objRecip As Outlook.Recipient Dim objFolder As Outlook.MAPIFolder Dim UserName As String = "m.mustermann" objNS = objolApp.GetNamespace("MAPI") objRecipLeave a comment:
-
VB.Net, App - MAPI.Session as "foreign" User?
Hello,
i'm trying to make an Application which can get every Calendar entry from a FOREIGN User in Outlook on a Exchange 2003 Server.
At the moment i can only get my own calender entries. But i need to get the Entries from another User.
Here's my actually code:
...Code:Dim osession As New MAPI.Session Dim vEmpty As Object = System.Reflection.Missing.Value osession.Logon(vEmpty,
No activity results to display
Show More
Leave a comment: