I have been writing code for a company intranet for about 7 years now. Our 'intranet' is actually considered a reporting system. The business changes so fast that reporting tools are created and discarded about every 3 years.
To make the management of this over 400+ desktops slightly on the 'keep me sane' scale, 7 years ago we moved all the reports to web pages (with server side scripts and Java)
The golden rule is that NOTHING needs to be installed on the desktops, the web-apps run from the browser.
The XAML, or WPF/E or AVALON, or XBAP or what ever it is sounds like a great leap forward. uh.. but I can't figure out what it is.
I bought 2 books on XAML and WPF. I have been reading blogs and scouring the web for weeks. I think I get it now. But I seem to be missing something.
Where is the Code? ![]()
I have several nice Java (Not Java script) applets that I would dearly love to translate so I can manage them in Studio5 with all my other code. But I can't seem to find the part of this new revolution that makes it possible.![]()
I could almost figure it out if someone could give me an analog to compare.
Everyone is familiar with the Java 'LAKE' effect where an image is turned over and a ripple effect is created with an applet.
Can that be done in any of this new technology?
if so, where in this alphabet soup do I begin looking.
I have betas, and patches installed, I have Ajax and tide and sparkle and Windex and... Sigh. ![]()
Please. I was so excited at the rollout, believing I could finally get the whole company intranet on MS and finally get off Java applets.
Tell me it can be done...
Thanks!
Michael
p.s.
Example of some Java I am trying to change to .. something else.
![]()
// Grab a pixel from an image.
public int[] getRGB( BufferedImage image, int x, int y, int width, int height, int[] pixels ) {
int type = image.getType();
if ( type == BufferedImage.TYPE_INT_ARGB || type == BufferedImage.TYPE_INT_RGB )
return (int [])image.getRaster().getDataElements( x, y, width, height, pixels );
return image.getRGB( x, y, width, height, pixels, 0, width );
}
//Change a pixel in an image.
public void setRGB( BufferedImage image, int x, int y, int width, int height, int[] pixels ) {
int type = image.getType();
if ( type == BufferedImage.TYPE_INT_ARGB || type == BufferedImage.TYPE_INT_RGB )
image.getRaster().setDataElements( x, y, width, height, pixels );
else
image.setRGB( x, y, width, height, pixels, 0, width );
}
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.