Advertisement

Results for "Author: wallonso"

4_2005-2006 #159129
Property Sheet

Just a simple property sheet to make some work more easy and show several informations in one place. It saved me lots of work. It is neither ready nor professional. Feel free to use and modify it. Would be nice if you keep me informed on updates/changes

4_2005-2006 #159130
ShowGrid

Show data (e.g pictures ,for testing i used only labels) in an ordered and grouped way. It wasn't possible for me to show my data with the datagrid, cause the type of grouping i needed wasn't given. Especially when the data changes often or can be very different. Means that data changes their row and column type and soze based on internal logic. It supports reordering of rows and columns (like Displayindex). Autosizing of rows and columns depanding of content variable distances between rows, columns, items. a basic interface for dynamic contextmenus is given too. As i saw you can use it in many ways: show pictures, make calendar entries/appointments. It wasn't meant to be beautiful or fast. Cause I had my own needs for it.

5_2007-2008 #181643
FileThing (Explorer)

File Thing (simple file explorer) This is a small project I made, for just having a basic file-explorer. It looks a bit like the windows explorer does nothing than browsing and showing the files in a directory. It has no real function except for being a base implementation of a file explorer. But doubleclicking a file is working ! So all additional functions you need can be added. All functions are well documented. Feel free to modify this programm to your own needs.

5_2007-2008 #181644
intelligent grid (update)

intelligent Datagrid (UCDataShow) : Have you ever needed to display unsorted data sorted and grouped in a grid, or tried to show them in a matrix - You didn't want to use the big MSFlex/Flexgrid/FlexH control. - You get your data in an unarranged way and need to arange it grouped by row and column - your data often changes row and column values ... So this is for You. It will display unsorted/unarraged data in rows and columns where they belong to. If data belongs to the Same Row and Column it will be added in this "matrix" as an extra option : it creates an outputstring as HTML. I added some examples/testcases : calendar, timeplan, scheduler and how to simply access information from database (uses ADO) other scenarios are possible : ranking, valuebars/gantt-diagram (not really but possible to create), reports At the end : everything where a 2 dimensional matrix is needed to display indexed data Changes : ---------- - Added Scrollbars - changed PaintGrid for Speed and readybility - moved generating of HMTL to separate function - HTML color can be independent from colors in control - some html-options added - added direct database access

5_2007-2008 #181645
SysMon with PerfMonData

This s a small example how to read CPU and ram/memory usage from remote systems by using the Perfmon data. Ever tried to read data from performance monitor (perfmon counters) ? or HKEY_PERFORMANCE_DATA from registry ? And finding out how to get RAM values on remote machines ... not easy Because it uses the registry type : REG_RESOURCE_LIST with reading .translated values some votes would be nice

5_2007-2008 #181646
asynchronous Fast multi ping

asynchronous Ping of multiple Hosts using the IcmpSendEcho2 function It looks a bit like multithreading. And it is impressive, how less time is needed to ping up to 100 or more hosts. (i tried 15 class C subnets (=over 3000 hosts), with 5 percent hosts online in 60 seconds) Why IcmpSendEcho2 and not the standard IcmpSendEcho ? If you use IcmpSendEcho your computer seems to be locked, while trying to get a ping response. Because IcmpSendEcho is working synchronous, this means that the Caller has to wait for the Result. IcmpSendEcho2 works asynchronous. So you can start to ping an do something else. This is a tribute to LiTe's fast ParaPing(the basic idea). Except I use ICMP instead of a specific port. Comments are welcome

5_2007-2008 #181647
Property Sheet

Just a simple property sheet to make some work more easy and show several informations in one place. It saved me lots of work. It is neither ready nor professional. Feel free to use and modify it. Would be nice if you keep me informed on updates/changes

5_2007-2008 #181648
ShowGrid

Show data (e.g pictures ,for testing i used only labels) in an ordered and grouped way. It wasn't possible for me to show my data with the datagrid, cause the type of grouping i needed wasn't given. Especially when the data changes often or can be very different. Means that data changes their row and column type and soze based on internal logic. It supports reordering of rows and columns (like Displayindex). Autosizing of rows and columns depanding of content variable distances between rows, columns, items. a basic interface for dynamic contextmenus is given too. As i saw you can use it in many ways: show pictures, make calendar entries/appointments. It wasn't meant to be beautiful or fast. Cause I had my own needs for it.

6_2008-2009 #204161
FileThing (Explorer)

File Thing (simple file explorer) This is a small project I made, for just having a basic file-explorer. It looks a bit like the windows explorer does nothing than browsing and showing the files in a directory. It has no real function except for being a base implementation of a file explorer. But doubleclicking a file is working ! So all additional functions you need can be added. All functions are well documented. Feel free to modify this programm to your own needs.

6_2008-2009 #204162
intelligent grid (update)

intelligent Datagrid (UCDataShow) : Have you ever needed to display unsorted data sorted and grouped in a grid, or tried to show them in a matrix - You didn't want to use the big MSFlex/Flexgrid/FlexH control. - You get your data in an unarranged way and need to arange it grouped by row and column - your data often changes row and column values ... So this is for You. It will display unsorted/unarraged data in rows and columns where they belong to. If data belongs to the Same Row and Column it will be added in this "matrix" as an extra option : it creates an outputstring as HTML. I added some examples/testcases : calendar, timeplan, scheduler and how to simply access information from database (uses ADO) other scenarios are possible : ranking, valuebars/gantt-diagram (not really but possible to create), reports At the end : everything where a 2 dimensional matrix is needed to display indexed data Changes : ---------- - Added Scrollbars - changed PaintGrid for Speed and readybility - moved generating of HMTL to separate function - HTML color can be independent from colors in control - some html-options added - added direct database access

6_2008-2009 #204163
SysMon with PerfMonData

This s a small example how to read CPU and ram/memory usage from remote systems by using the Perfmon data. Ever tried to read data from performance monitor (perfmon counters) ? or HKEY_PERFORMANCE_DATA from registry ? And finding out how to get RAM values on remote machines ... not easy Because it uses the registry type : REG_RESOURCE_LIST with reading .translated values some votes would be nice

6_2008-2009 #204164
asynchronous Fast multi ping

asynchronous Ping of multiple Hosts using the IcmpSendEcho2 function It looks a bit like multithreading. And it is impressive, how less time is needed to ping up to 100 or more hosts. (i tried 15 class C subnets (=over 3000 hosts), with 5 percent hosts online in 60 seconds) Why IcmpSendEcho2 and not the standard IcmpSendEcho ? If you use IcmpSendEcho your computer seems to be locked, while trying to get a ping response. Because IcmpSendEcho is working synchronous, this means that the Caller has to wait for the Result. IcmpSendEcho2 works asynchronous. So you can start to ping an do something else. This is a tribute to LiTe's fast ParaPing(the basic idea). Except I use ICMP instead of a specific port. Comments are welcome

6_2008-2009 #204165
Property Sheet

Just a simple property sheet to make some work more easy and show several informations in one place. It saved me lots of work. It is neither ready nor professional. Feel free to use and modify it. Would be nice if you keep me informed on updates/changes

6_2008-2009 #204166
ShowGrid

Show data (e.g pictures ,for testing i used only labels) in an ordered and grouped way. It wasn't possible for me to show my data with the datagrid, cause the type of grouping i needed wasn't given. Especially when the data changes often or can be very different. Means that data changes their row and column type and soze based on internal logic. It supports reordering of rows and columns (like Displayindex). Autosizing of rows and columns depanding of content variable distances between rows, columns, items. a basic interface for dynamic contextmenus is given too. As i saw you can use it in many ways: show pictures, make calendar entries/appointments. It wasn't meant to be beautiful or fast. Cause I had my own needs for it.

7_2009-2012 #226679
FileThing (Explorer)

File Thing (simple file explorer) This is a small project I made, for just having a basic file-explorer. It looks a bit like the windows explorer does nothing than browsing and showing the files in a directory. It has no real function except for being a base implementation of a file explorer. But doubleclicking a file is working ! So all additional functions you need can be added. All functions are well documented. Feel free to modify this programm to your own needs.

7_2009-2012 #226680
intelligent grid (update)

intelligent Datagrid (UCDataShow) : Have you ever needed to display unsorted data sorted and grouped in a grid, or tried to show them in a matrix - You didn't want to use the big MSFlex/Flexgrid/FlexH control. - You get your data in an unarranged way and need to arange it grouped by row and column - your data often changes row and column values ... So this is for You. It will display unsorted/unarraged data in rows and columns where they belong to. If data belongs to the Same Row and Column it will be added in this "matrix" as an extra option : it creates an outputstring as HTML. I added some examples/testcases : calendar, timeplan, scheduler and how to simply access information from database (uses ADO) other scenarios are possible : ranking, valuebars/gantt-diagram (not really but possible to create), reports At the end : everything where a 2 dimensional matrix is needed to display indexed data Changes : ---------- - Added Scrollbars - changed PaintGrid for Speed and readybility - moved generating of HMTL to separate function - HTML color can be independent from colors in control - some html-options added - added direct database access

7_2009-2012 #226681
SysMon with PerfMonData

This s a small example how to read CPU and ram/memory usage from remote systems by using the Perfmon data. Ever tried to read data from performance monitor (perfmon counters) ? or HKEY_PERFORMANCE_DATA from registry ? And finding out how to get RAM values on remote machines ... not easy Because it uses the registry type : REG_RESOURCE_LIST with reading .translated values some votes would be nice

7_2009-2012 #226682
asynchronous Fast multi ping

asynchronous Ping of multiple Hosts using the IcmpSendEcho2 function It looks a bit like multithreading. And it is impressive, how less time is needed to ping up to 100 or more hosts. (i tried 15 class C subnets (=over 3000 hosts), with 5 percent hosts online in 60 seconds) Why IcmpSendEcho2 and not the standard IcmpSendEcho ? If you use IcmpSendEcho your computer seems to be locked, while trying to get a ping response. Because IcmpSendEcho is working synchronous, this means that the Caller has to wait for the Result. IcmpSendEcho2 works asynchronous. So you can start to ping an do something else. This is a tribute to LiTe's fast ParaPing(the basic idea). Except I use ICMP instead of a specific port. Comments are welcome

7_2009-2012 #226683
Property Sheet

Just a simple property sheet to make some work more easy and show several informations in one place. It saved me lots of work. It is neither ready nor professional. Feel free to use and modify it. Would be nice if you keep me informed on updates/changes

7_2009-2012 #226684
ShowGrid

Show data (e.g pictures ,for testing i used only labels) in an ordered and grouped way. It wasn't possible for me to show my data with the datagrid, cause the type of grouping i needed wasn't given. Especially when the data changes often or can be very different. Means that data changes their row and column type and soze based on internal logic. It supports reordering of rows and columns (like Displayindex). Autosizing of rows and columns depanding of content variable distances between rows, columns, items. a basic interface for dynamic contextmenus is given too. As i saw you can use it in many ways: show pictures, make calendar entries/appointments. It wasn't meant to be beautiful or fast. Cause I had my own needs for it.

Languages
Top Categories
Global Discovery