Advertisement

Results for "Author: ray hildenbrand"

Java_Volume1 #94891
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

Java_Volume1 #98882
Psuedo Object Rotation (like msWord and Photoshop)

This code shows how to simply allow a user to interactively rotate an image in the manner that applications like MS word and adobe photoshop do (sort of). ' This code takes in to consideration three main concepts provided by other authors and ' extends their concepts together, namely ' Steve McMahon Vbaccelerator.com - His code for DIB Processing and Region Mapping is superb fast and without his site, many of us would still be stuck on our first application! Thanks Steve ' Zubuyer kaolin - His PsCode example on rotation (dial i believe) was used for most of the rotation logic, but was modified to handle the rotation point differently (top right as opposed to the center) ' Florian Egal - His excellent library found on PSCode is the best! If you do not have this file (FoxCBmp3.dl is included in the zip) you will need to do a search on planetsourcecode for florian egal or advanced graphics 3.3 on copy the file to your sys32 directory. '' If any one else sees any code that I did not mark as being theirs, please let me know and i will be happy to add their name. ''''Note, this code is not optimized....and is also a very small part of a much bigger project '''' so there is a lot of code in here that is not really needed for the sake of this example, but i am not ripping it out to due time restrictions '''' regardless, I though this was kinda neat so i thought i would share it with th vb community. '''' Obviously, there needs some work on the rotation logic, as it is a little quirky but , you know.....

1_2002 #109115
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

1_2002 #109116
Dialog Menu (Updated)

Update of the Usercontrol that emulates the menubar on the side of dialogs on system using the newest version of comctl32.ocx (I think). vbaccelerator image list is now built right in through a class, so there is no need to distribute his ocx (Steve mcMahon). Header and scrolling have been added to allow for a light emulation of an outlook menubar (only one bar though). Allows changing of backcolor, forecolor(text), Header Forecolor, Header Caption, and toggling of Scrollbar and Header Visibility. Also allows for images to be loaded from file and from a STDPicture object. If you are wondering why I went to such lengths to include the vbaccelerator image list in a class wrapper?? it supports color depths up to 32 bit, try that with the normal MS image list!!. All in all a nice control with a pretty small footprint.

2_2002-2004 #114876
I use my friends, do you?

This code is a simple example to illustrate using friend methods (or functions, etc...) to pass information between objects within a project (ocx,dll,etc...). The purpose of this example is to show people unfamiliar with friend procedures how they can enable you to develop components that only expose the properties/procedures you wish to make available to your target audience.

2_2002-2004 #117900
Dialog Menu (Updated)

Update of the Usercontrol that emulates the menubar on the side of dialogs on system using the newest version of comctl32.ocx (I think). vbaccelerator image list is now built right in through a class, so there is no need to distribute his ocx (Steve mcMahon). Header and scrolling have been added to allow for a light emulation of an outlook menubar (only one bar though). Allows changing of backcolor, forecolor(text), Header Forecolor, Header Caption, and toggling of Scrollbar and Header Visibility. Also allows for images to be loaded from file and from a STDPicture object. If you are wondering why I went to such lengths to include the vbaccelerator image list in a class wrapper?? it supports color depths up to 32 bit, try that with the normal MS image list!!. All in all a nice control with a pretty small footprint.

2_2002-2004 #122038
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

2_2002-2004 #126029
Psuedo Object Rotation (like msWord and Photoshop)

This code shows how to simply allow a user to interactively rotate an image in the manner that applications like MS word and adobe photoshop do (sort of). ' This code takes in to consideration three main concepts provided by other authors and ' extends their concepts together, namely ' Steve McMahon Vbaccelerator.com - His code for DIB Processing and Region Mapping is superb fast and without his site, many of us would still be stuck on our first application! Thanks Steve ' Zubuyer kaolin - His PsCode example on rotation (dial i believe) was used for most of the rotation logic, but was modified to handle the rotation point differently (top right as opposed to the center) ' Florian Egal - His excellent library found on PSCode is the best! If you do not have this file (FoxCBmp3.dl is included in the zip) you will need to do a search on planetsourcecode for florian egal or advanced graphics 3.3 on copy the file to your sys32 directory. '' If any one else sees any code that I did not mark as being theirs, please let me know and i will be happy to add their name. ''''Note, this code is not optimized....and is also a very small part of a much bigger project '''' so there is a lot of code in here that is not really needed for the sake of this example, but i am not ripping it out to due time restrictions '''' regardless, I though this was kinda neat so i thought i would share it with th vb community. '''' Obviously, there needs some work on the rotation logic, as it is a little quirky but , you know.....

3_2004-2005 #133420
I use my friends, do you?

This code is a simple example to illustrate using friend methods (or functions, etc...) to pass information between objects within a project (ocx,dll,etc...). The purpose of this example is to show people unfamiliar with friend procedures how they can enable you to develop components that only expose the properties/procedures you wish to make available to your target audience.

3_2004-2005 #136444
Dialog Menu (Updated)

Update of the Usercontrol that emulates the menubar on the side of dialogs on system using the newest version of comctl32.ocx (I think). vbaccelerator image list is now built right in through a class, so there is no need to distribute his ocx (Steve mcMahon). Header and scrolling have been added to allow for a light emulation of an outlook menubar (only one bar though). Allows changing of backcolor, forecolor(text), Header Forecolor, Header Caption, and toggling of Scrollbar and Header Visibility. Also allows for images to be loaded from file and from a STDPicture object. If you are wondering why I went to such lengths to include the vbaccelerator image list in a class wrapper?? it supports color depths up to 32 bit, try that with the normal MS image list!!. All in all a nice control with a pretty small footprint.

3_2004-2005 #140582
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

3_2004-2005 #144573
Psuedo Object Rotation (like msWord and Photoshop)

This code shows how to simply allow a user to interactively rotate an image in the manner that applications like MS word and adobe photoshop do (sort of). ' This code takes in to consideration three main concepts provided by other authors and ' extends their concepts together, namely ' Steve McMahon Vbaccelerator.com - His code for DIB Processing and Region Mapping is superb fast and without his site, many of us would still be stuck on our first application! Thanks Steve ' Zubuyer kaolin - His PsCode example on rotation (dial i believe) was used for most of the rotation logic, but was modified to handle the rotation point differently (top right as opposed to the center) ' Florian Egal - His excellent library found on PSCode is the best! If you do not have this file (FoxCBmp3.dl is included in the zip) you will need to do a search on planetsourcecode for florian egal or advanced graphics 3.3 on copy the file to your sys32 directory. '' If any one else sees any code that I did not mark as being theirs, please let me know and i will be happy to add their name. ''''Note, this code is not optimized....and is also a very small part of a much bigger project '''' so there is a lot of code in here that is not really needed for the sake of this example, but i am not ripping it out to due time restrictions '''' regardless, I though this was kinda neat so i thought i would share it with th vb community. '''' Obviously, there needs some work on the rotation logic, as it is a little quirky but , you know.....

4_2005-2006 #157728
Dialog Menu (Updated)

Update of the Usercontrol that emulates the menubar on the side of dialogs on system using the newest version of comctl32.ocx (I think). vbaccelerator image list is now built right in through a class, so there is no need to distribute his ocx (Steve mcMahon). Header and scrolling have been added to allow for a light emulation of an outlook menubar (only one bar though). Allows changing of backcolor, forecolor(text), Header Forecolor, Header Caption, and toggling of Scrollbar and Header Visibility. Also allows for images to be loaded from file and from a STDPicture object. If you are wondering why I went to such lengths to include the vbaccelerator image list in a class wrapper?? it supports color depths up to 32 bit, try that with the normal MS image list!!. All in all a nice control with a pretty small footprint.

4_2005-2006 #157729
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

4_2005-2006 #157730
I use my friends, do you?

This code is a simple example to illustrate using friend methods (or functions, etc...) to pass information between objects within a project (ocx,dll,etc...). The purpose of this example is to show people unfamiliar with friend procedures how they can enable you to develop components that only expose the properties/procedures you wish to make available to your target audience.

4_2005-2006 #157731
Psuedo Object Rotation (like msWord and Photoshop)

This code shows how to simply allow a user to interactively rotate an image in the manner that applications like MS word and adobe photoshop do (sort of). ' This code takes in to consideration three main concepts provided by other authors and ' extends their concepts together, namely ' Steve McMahon Vbaccelerator.com - His code for DIB Processing and Region Mapping is superb fast and without his site, many of us would still be stuck on our first application! Thanks Steve ' Zubuyer kaolin - His PsCode example on rotation (dial i believe) was used for most of the rotation logic, but was modified to handle the rotation point differently (top right as opposed to the center) ' Florian Egal - His excellent library found on PSCode is the best! If you do not have this file (FoxCBmp3.dl is included in the zip) you will need to do a search on planetsourcecode for florian egal or advanced graphics 3.3 on copy the file to your sys32 directory. '' If any one else sees any code that I did not mark as being theirs, please let me know and i will be happy to add their name. ''''Note, this code is not optimized....and is also a very small part of a much bigger project '''' so there is a lot of code in here that is not really needed for the sake of this example, but i am not ripping it out to due time restrictions '''' regardless, I though this was kinda neat so i thought i would share it with th vb community. '''' Obviously, there needs some work on the rotation logic, as it is a little quirky but , you know.....

5_2007-2008 #180246
Dialog Menu (Updated)

Update of the Usercontrol that emulates the menubar on the side of dialogs on system using the newest version of comctl32.ocx (I think). vbaccelerator image list is now built right in through a class, so there is no need to distribute his ocx (Steve mcMahon). Header and scrolling have been added to allow for a light emulation of an outlook menubar (only one bar though). Allows changing of backcolor, forecolor(text), Header Forecolor, Header Caption, and toggling of Scrollbar and Header Visibility. Also allows for images to be loaded from file and from a STDPicture object. If you are wondering why I went to such lengths to include the vbaccelerator image list in a class wrapper?? it supports color depths up to 32 bit, try that with the normal MS image list!!. All in all a nice control with a pretty small footprint.

5_2007-2008 #180247
VBLayer Manager Open Source

I have decided to open source this for everyone to look at. if you use it in your apps please give me credit. it emulates a photoshop layer window and shows how to create a drag/drop/resizing designer form. There were numerous problems with original postings and i apologize for the wasted time. there seems to be some type of dependency issues, so if you still cant get this to run, leave a comment. as I am still in the process of developing this ,if anyone makes updates to this, i would appreciate it if they sent the file to me rather than post it here so i can incorporate the chnages, fixes into my master code that i will post when everything (everything) is complete. Eventually , there will be built in effects and filters and a whole lot more crazy stuff. anyway vote if you like it. BTW, this is not to illustrate image processing at all, it is a demonstration of controlling objects from User Controls. The example app is merely used to show the control in action.thanksRay p.s. dont forget to regsvr32 the ssubtmr.dll first

5_2007-2008 #180248
I use my friends, do you?

This code is a simple example to illustrate using friend methods (or functions, etc...) to pass information between objects within a project (ocx,dll,etc...). The purpose of this example is to show people unfamiliar with friend procedures how they can enable you to develop components that only expose the properties/procedures you wish to make available to your target audience.

5_2007-2008 #180249
Psuedo Object Rotation (like msWord and Photoshop)

This code shows how to simply allow a user to interactively rotate an image in the manner that applications like MS word and adobe photoshop do (sort of). ' This code takes in to consideration three main concepts provided by other authors and ' extends their concepts together, namely ' Steve McMahon Vbaccelerator.com - His code for DIB Processing and Region Mapping is superb fast and without his site, many of us would still be stuck on our first application! Thanks Steve ' Zubuyer kaolin - His PsCode example on rotation (dial i believe) was used for most of the rotation logic, but was modified to handle the rotation point differently (top right as opposed to the center) ' Florian Egal - His excellent library found on PSCode is the best! If you do not have this file (FoxCBmp3.dl is included in the zip) you will need to do a search on planetsourcecode for florian egal or advanced graphics 3.3 on copy the file to your sys32 directory. '' If any one else sees any code that I did not mark as being theirs, please let me know and i will be happy to add their name. ''''Note, this code is not optimized....and is also a very small part of a much bigger project '''' so there is a lot of code in here that is not really needed for the sake of this example, but i am not ripping it out to due time restrictions '''' regardless, I though this was kinda neat so i thought i would share it with th vb community. '''' Obviously, there needs some work on the rotation logic, as it is a little quirky but , you know.....

Languages
Top Categories
Global Discovery