[flexcoders] Thanks to all that helped (CVS/VSS thread)

2006-11-17 Thread Mike Anderson
Just a quick thank-you to all that contributed to my thread - There were some excellent contributions, and a wide variety of suggestions. Just to let you all know, I decided to use VSS - since I already own it. I've been an Enterprise MSDN Subscriber for many years now, and as many of you

[flexcoders] AutoScroll Text Area

2006-11-17 Thread KP
Hi All, Sorry for bugging you on this one again but below is the sample code which contain textArea and I want to som how autoscroll the contect present in textarea. I have already used verticalScrollPosition and timer for doing this but it does not look good I want to give it a professional

[flexcoders] Re: Remove the row selection from the datagrid

2006-11-17 Thread Tim Hoff
Hi Arpan, Whenever I've experienced unexpected colors, trying to set a style, it's usually been a typo or an unsupported property. I'm not sure what you're trying to acheive, but DataGrid does have a selectable property; that might solve your problem. If not, does the text turn black if you

[flexcoders] Label /Text Html font size bug

2006-11-17 Thread Steve Cox
There appears to be a bug with html text inside label/font controls. The controls do not resize properly to take into account Html font sizes, thus measuring the field too small. Has anyone come across a workaround or re-written the controls to fix this? I don't want to start doing so if it's

Re: [flexcoders] Re: Flex Builder Linux

2006-11-17 Thread dorkie dork from dorktown
if adobe went linux with its products... think about it... what - would - hold - you - to -... ...even if you didnt switch, at least you would have the option too... but shhh... dont tell anyone... On 11/17/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi Matt, Flex Builder in Linux should be a

[flexcoders] Differing versions of the compiler

2006-11-17 Thread dorkie dork from dorktown
This morning's download of the Free Flex SDK had this version. Version 2.0 build 146333 The version I am using in Flex Builder is Version 2.0 build 143459. Is there a place where I can see the latest build number? dorkie version 143459 dork from dorktown

[flexcoders] Implicit coercion of a value of type com.my.controls:TextInputLabel to an unrelated type flash.display:DisplayObject.

2006-11-17 Thread Sergey Kovalyov
Hi All! Error Implicit coercion of a value of type com.my.controls:TextInputLabel to an unrelated type flash.display:DisplayObject. appears in compile time when using mx:AddChild override. This bug is difficult to reproduce. Sometimes it happes, sometimes not. Initially I have found it when there

Re: [flexcoders] Re: Intel-Mac 9.0.28 debug plugin

2006-11-17 Thread Mark McCray
I tried installing that one and it says it's for power-pc based machines. (the fourth link down) On Nov 17, 2006, at 2:21 AM, Matt Chotin wrote: Oh, my mistake, looks like we did post them. I know the projector on Mac is PPC only for the moment, but I believe the plugin should have

[flexcoders] FDS not receiving calls asynchronously

2006-11-17 Thread jbergamotto
I am having an issue with concurrency using FDS. I have six calls going to the same destination (all different methods) at the same time. Setting up logging on the client side I see that Flex is sending the calls all at the same time, however in the server log (being recorded at the beginning

RE: [flexcoders] Newbie: Why can't I add a button!

2006-11-17 Thread Greg McCreath
Thanks very much for responding Gordon, I appreciate your's and Matt's time. Why AS3? Comfort zone I guess. I'm coming from a Java background. I'm investigating the feasibility of creating an Eclipse like plug-in framework for adding new screens and functionality that extend a solid

[flexcoders] FDS not receiving calls asynchronously

2006-11-17 Thread jbergamotto
I am having an issue with concurrency using FDS. I have six calls going to the same destination (all different methods) at the same time. Setting up logging on the client side I see that Flex is sending the calls all at the same time, however in the server log (being recorded at the beginning

[flexcoders] Rotating BarChart

2006-11-17 Thread Daniel Tuppeny
Another charting question! :D Is there an easy way to have the Bar chart rotated? I want to let the user flick a switch that changes it from one direction to the other, but using the rotation style obviously screws up the labels. I tried just changing BarChart to ColumnChart, BarWidthRatio

[flexcoders] How to handle complex object return from web service

2006-11-17 Thread ria team
Hi I am calling the web service writen in .net from flex application. using web service object. I am getting the result back from the call but the result object too complex and i am getting a part of it. What are the different method avilable in flex side or action Script 3.0 to handle the

[flexcoders] XML No trim

2006-11-17 Thread Jitendra Bigtani
Hi Guys, How are you doing? I need a help. Its a simple requirement. I need to parse a xml string. But I do not white the whitespace of values inside tags to be trimmed. For example- a maeesage like FlexName JB/Name/Flex should come as it is. By default i see the value JB is timmed to

[flexcoders] Stretch swf to fit browser window

2006-11-17 Thread kim_boulton
I'm trying to get a Flash 9 swf to stretch to the browser window size. i.e. the swf components all get bigger or smaller depending on the size of the browser window. This is pretty easy to do in Flash 8 although nothing i've tried to far works in Flash 9 systemManager.stage.setScalemode =

Re: [flexcoders] Re: Remove the row selection from the datagrid

2006-11-17 Thread arpan srivastava
Hi Tim, I did myDataGrid.selectable=false but this will stop dispatching the MouseOver event and it will not even highlight the row. I will try to explain you in detail. I created a combobox from where you can change the font size of the text in the row. Now if you click on a row it

[flexcoders] Re: How to handle complex object return from web service

2006-11-17 Thread ben.clinkinbeard
Not sure what you mean about getting part of it, but there are some ways of dealing with complex results. Whenever I've encountered web services that return deeply nested or very complex structures I've set the resultFormat of the operation to e4x. This allows you to use E4X expressions to access

Re: [flexcoders] Understanding the FocusManager

2006-11-17 Thread Daniel Freiman
That's a great answer especially considering I wasn't exactly sure what I was asking. I think I have two more questions which would finish up this line of questioning for me. (I'm working off the UIComponent API doc also.) 1. If you click on a composite component, it will walk up the parent

[flexcoders] Bug??? Re: Loading multiple swfs crashing browser

2006-11-17 Thread dallasweb
Maybe this is a possible bug in swfloader component. I've created some basic(no script) swf8 files and have loaded them dynamically into my Flex app using swfloader and no crash. --- In flexcoders@yahoogroups.com, dallasweb [EMAIL PROTECTED] wrote: Daniel...thanks for the interest. The

[flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread flxcoder
--- In flexcoders@yahoogroups.com, flxcoder [EMAIL PROTECTED] wrote: I want to have a serial number field in my datagrid that increases or auto increments with each row. Is this possible? this field should re-paint itself on sorting of any other fields. any ideas here? surely, flex has a way

[flexcoders] Re: Dynamic TextArea fields or Grouping TextArea fields

2006-11-17 Thread michrx7
HELP! I am having the same problem as #2. If I create the textareas dynamically how do I loop through them later on to set their properties? so basically I have some textareas with ids of myText_0 myText_1 myText_2 myText_3 (etc) and I have a loop of for (var x:int=0; x4; x++) { // insert AS3

Does anyone have the attachments from RE: [flexcoders] Fixing data points in Ely Greenfield's SizedPieSeries?

2006-11-17 Thread Daniel Tuppeny
Hi all, Does anyone have the attachments from Ely's reply to my post RE: [flexcoders] Fixing data points in Ely Greenfield's SizedPieSeries they could forward to me? They're not stored online at yahoogroups, and attachments aren't sent with the digest emails I get :-( I've emailed Ely, but

[flexcoders] Re: Simple problem: Error creating links using string

2006-11-17 Thread raidenx112
Thank you all. I used the getRepeaterItem() and it worked. Jack

[flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread ben.clinkinbeard
this field should re-paint itself on sorting of any other fields. Do you mean that the first row in the grid should always say 1, regardless of how the list is sorted? If that is the case, you'll want to create an itemRenderer that implements IDropInListItemRenderer, and then displays the

RE: [flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread Steve Cox
Sorry to jump into the thread but unfortunately rowIndex doesn't do what it says on the tin. It's documented to return the index of the item in the dataprovider, however in actual fact it returns the index of the row in the list/datagrid. For example if you have a dataprovider with 100 records

RE: [flexcoders] Rotating BarChart

2006-11-17 Thread Ely Greenfield
Switching from bar to column is the only way to do it (that doesn't involve a lot of pain and suffering). When you switch, remember to: swap your x/y properties (xField, yField) swap your h/v properties (horizontalAxis, verticalAxis, etc). Ely. From:

RE: [flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread Iko Knyphausen
I think dataProvider.selectedIndex is doing that? _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Cox Sent: Friday, November 17, 2006 8:32 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Auto incrementing values for datagrid Sorry to

[flexcoders] Re: Rotating BarChart

2006-11-17 Thread Tim Hoff
HI Daniel, In addition to those changes, you have to change from xField to yField; for the series. -TH __ Tim Hoff Cynergy Systems, Inc. http://www.cynergysystems.com Office http://www.cynergysystems.comoffice/ : 866-CYNERGY --- In flexcoders@yahoogroups.com,

[flexcoders] RegExp Validator

2006-11-17 Thread DJ Lift
Hey there, I'm trying to use a standard regular expression in a RegExpValidator. Here's the validator markup: mx:RegExpValidator id=newPasswordValidator expression=[a-zA-Z0-9]{6,8} source={newPassword} property=text requiredFieldError=This fields is required.

[flexcoders] Better way to update sub-records, Flex and Coldfusion

2006-11-17 Thread lostinrecursion
Hi all, I have been programming for a while now and have always used a particular method to update sub-records in a data driven application. I know there is a better way and was hoping flexcoders could point me in a solid direction. Let's say I have a table called MasterRecords and one called

RE: [flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread Iko Knyphausen
Scratch that. I meant to say dataGrid.selectedIndex (but it may return the grid index...not sure, sorry) I think dataProvider.selectedIndex is doing that? _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Cox Sent: Friday, November 17, 2006 8:32 AM To:

[flexcoders] problem with image

2006-11-17 Thread buhsl
I use example fron flex PhotoViewer. It is work fine with image less then 200 Kb. If I use .jpg files 1.5-3.5Mb, after 10 - 20 iteration on slide show Flash compleatly hang up browser. Did any of you had this problem and know how to fix this?

RE: [flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread Iko Knyphausen
Maybe you could try an IList interface function getItemIndex(dataGrid.selectedItem); _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Cox Sent: Friday, November 17, 2006 8:32 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Auto

[flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread camlinaeizerous
Below I have a quick and dirty way of making the row show up. However if you were looking for the number to move with the item when you sort then you need a different approach and should almost consider adding the number to the data source. As when you sort the data grid it actually rearranges its

[flexcoders] AMF 3 Date Serialization / Deserialization

2006-11-17 Thread Sam Shrefler
Does anyone know if there is a way to have Flex serialize / deserialize Dates using the Local Date Time rather the UTC. For example: Currently i'm seeing the following behavior: (AMF3) Date (no timezone info) - Flex (UTC) Flex(UTC) - AMF3 (no-timezone) I'd like to be able to also do: (AMF3)

Re: [flexcoders] Re: Auto incrementing values for datagrid

2006-11-17 Thread Agent RR-007
I think there are only two ways to do it. Create a Class that keeps track of this Auto Increment Variable which will contain and auto increment every time you add 1 to the variable. Or you can link this to a bankEnd Database which will keep track of the number for you. There are 3 flavors these

[flexcoders] Photo Viewer Sample App

2006-11-17 Thread P Smith
The Photo Viewer Sample App has a ViewStack with 3 views: ThumbnailView ..., CarouselView ..., SlideShowView When I move CarouselView ... to the top of the stack, on execution it throws an: Error #1009: Cannot access a property or method of a null object reference. Poking around with

[flexcoders] Binding to property or use a custom event and event.target.myProperty ?

2006-11-17 Thread willmorganuk
I have a simple custom component, based on a richtexteditor, that cleans up it's own html when it's submit button is clicked. Question: Is is best to access the new 'clean' html from the main application via a [Bindable] property or dispatching a custom event when the internal processing is

RE: [flexcoders] Newbie: Why can't I add a button!

2006-11-17 Thread Gordon Smith
Any ideas anyone? About what? My previous reply explained that an mx:Application in MXML autogenerates CSS selector setup code that you don't get when you simply subclass Application in AS3. That's why this works and your previous code didn't. Turn on -keep-autogenerated-actionscript to see

RE: [flexcoders] RegExp Validator

2006-11-17 Thread Gordon Smith
Maybe the MXML compiler is trying to interpret the {6, 8} as a binding expression similar to {newPassword}. Try setting the 'expression' property in an initialize handler instead. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Ely's RadarChart - I have the files

2006-11-17 Thread Daniel Tuppeny
Hey all, I got the files Ely attached yesterday (thanks Oliver), so no need for anyone to send more. Excellent work Ely. It puts my code to shame! It's much more consistent with the other charts, and shows how to do things properly :D Danny

[flexcoders] Return of single object from ColdFusion

2006-11-17 Thread Wally Randall
Problem: When I invoke the get function in the generated gateway object from the CF Wizard I cannot cast the result to an instance in Flex. In debug I can see that the event.result is returning data but when this statement is invoked the result is a NULL thisPerson object in Flex:

[flexcoders] DataGrid Click event - unexpected results

2006-11-17 Thread greenfishinwater
I have a grid, and a click event defined. On a click on a row, I determine the row using selectedIndex, then I display data in another grid on a different tab depending on a product id from the selected row. This works fine, except when I click in the header or the scroll bar of the grid, the

RE: [flexcoders] DataGrid Click event - unexpected results

2006-11-17 Thread Gordon Smith
Try using the 'itemClick' event. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greenfishinwater Sent: Friday, November 17, 2006 11:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid Click event -

[flexcoders] Re: Odd Problem with DateField and formatString

2006-11-17 Thread gotgoose09
This is really bugging me. :-/ Anyone know? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: View this example below. It consists of a DateField (dfDatePicker) and a Label. dfDatePicker's formatString is set to MM/.

[flexcoders] Re: DataGrid Click event - unexpected results

2006-11-17 Thread greenfishinwater
Using itemClick solves part of the problem. Clicking on the scroll bar does not trigger the event. But clicking a column header does trigger the event. Andrew --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: Try using the 'itemClick' event. - Gordon

Re: [flexcoders] WebService woes - faultCode: EncodingError - faultString: Unknown Property

2006-11-17 Thread Paul Spitzer
Turns out this was caused by the images property which was an empty ArrayCollection. The operation succeeds if I pass null for the images. I have no idea why the error was reporting what it was. Paul Spitzer wrote: Hi all, Hoping someone can help me out here. We've recently switched our

[flexcoders] Re: Odd Problem with DateField and formatString

2006-11-17 Thread greenfishinwater
I don't get any errors when running TestEventHandlers.swf Andrew --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: This is really bugging me. :-/ Anyone know? --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: View this example below. It consists of a

[flexcoders] Re: DataGrid Click event - unexpected results

2006-11-17 Thread greenfishinwater
OK, I now have it working correctly. I use the itemClick event, then I check if rowIndex 0. The last part prevents a click in the header from triggering the application logic. I have a grid, and a click event defined. On a click on a row, I determine the row using selectedIndex, then I

[flexcoders] Iterating through a loop with radiobuttons - giving unique instance

2006-11-17 Thread dj
Flex Wizards: I need to iterate through a loop and create radio buttons, i have to add loaders for images next to them etc. How do you something like this in AS3.0? var myRadio[b+i]:RadioButton = new RadioButton(); Also, when you send an event with the currentTarget property, which is

[flexcoders] Newbie Question: Paging a Datagrid.

2006-11-17 Thread proudestcodemonkey
I'd like to have a datagrid in my Flex application that will show X records at a time and offer paging functionality. The datagrid control is very functional, so I assumed this wouldn't be terribly difficult. I've done some Googling, though, and haven't turned up much. Any ideas? Thanks in

Re: [flexcoders] AutoScroll Text Area, and AS3 timer

2006-11-17 Thread Rachel Maxim
I am in need of a news ticker/scroller too, and I'm wondering if I'm just better off building it in Flash rather than Flex? Another question related to the timer...in AS2 I used setInterval or onEnterFrame for animation, but (at least the way I did it) with both of those methods performance

Re: [flexcoders] Re: text not word wrapping

2006-11-17 Thread Rachel Maxim
I believe you have to sent an explicit pixel width on a Text component for it to wrap, kind of a bummer if you want it to stretch but still wrap. The Flex docs describe the behavior: If you specify a pixel value for both the height and width properties, any text that exceeds the size of the

[flexcoders] Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread dj
A Vertical Axis why Field, my labels are being cut off, my width dimension is fixed to 280 pixels, so the column needs to wrap down? Thanks, Patrick

[flexcoders] events? Should I use mx.events or flash.events?

2006-11-17 Thread dj
What's the difference between the two? Thanks, Patrick

Re: [flexcoders] Programmatic Tabskin / CSS

2006-11-17 Thread Oliver Lietz
Am Donnerstag, 16. November 2006 22:02 schrieb zzwi89: Hello, I am using programattic skinning for some tabs in a TabBar. Rather than write a class for the selected tab, one for the deselected tab, etc.., I would like to use the same tab class but change CSS styles to alter the style. In

[flexcoders] Automatic resize of panel when layout=absolute - how?

2006-11-17 Thread zzwi89
I have a panel that needs to resize vertically when child panels are minimized/maximized. This works until I set layout = absolute. I would like to use absolute layout so that I can use parameters like top/left/right/bottom for its child panels. Is there a way to do this?

[flexcoders] Communicating with an embedded SWF from Flex App

2006-11-17 Thread ryanlevere
I have recently begun migrating an application that was originally written in C# to Flex. The application utilized the Flash ActiveX control to display an SWF that was used for video conferencing. The C# program required the user to log in to get to the video conferencing and the user's ID was

RE: [flexcoders] Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread Ely Greenfield
Hi Patrick. THe only way would be to use a labelFunction on your axis and manually insert a line break yourself. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dj Sent: Friday, November 17, 2006 2:34 PM To:

[flexcoders] Re: Automatic resize of panel when layout=absolute - how?

2006-11-17 Thread iko_knyphausen
Would this work for you? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml http://www.adobe.com/2006/mxml layout=absolute mx:Panel x=19 y=29 width=616 layout=absolute id=mom title=Mom (parent panel) mx:Panel id=toddler x=16.5 y=172 width=563 height=100

RE: [flexcoders] Automatic resize of panel when layout=absolute - how?

2006-11-17 Thread Iko Knyphausen
By child panels, do you mean panels that are inside the panel you are trying to resize, or do you mean siblings? _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zzwi89 Sent: Friday, November 17, 2006 2:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] Re: Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread Tim Hoff
Hi Ely, I got this far with wordwrapping the label text, but my question is more complicated. I want to have two verticalAxisRenderers, side-by- side, on the same side of a ColumnChart. Or, create a single LabelRenderer to simulate this. One of the labels needs a shaded background with text,

[flexcoders] Re: Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread Tim Hoff
Let me restate this. I'm in chart purgatory right now, and I got the chart type mixed up. It's a bar chart that has a CatagoryField=name and a second CategoryField=rank. The two fields line-up vertically on both sides of the chart. I want the name (non-shaded) and rank (shaded) on the same

[flexcoders] Re: Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread Tim Hoff
Thanks Ely, that makes sense now. I'll give it a try. Luckily, both series are using the same dataProvider, so I'll have access to the data property and probably be able to eliminate the second axis completely. Thanks for the tips and the source to your interactive calendar component

Re: [flexcoders] Re: text not word wrapping

2006-11-17 Thread Paul Hastings
On 11/18/06, Rachel Maxim [EMAIL PROTECTED] wrote: If you specify a percentage-based width and no height, Flex does not wrap the text, and the height equals the number of lines as determined by the number of Return characters. ok but it seems the first time the cell is rendered it *does*

[flexcoders] Re: Return of single object from ColdFusion

2006-11-17 Thread bobignacio
You can always try the following: thisPerson = (Employee)(event.result); However, you may get the error of cannot convert Object to Employee. But its worth a try. Bob I. --- In flexcoders@yahoogroups.com, Wally Randall [EMAIL PROTECTED] wrote: Problem: When I invoke the get function in the

[flexcoders] Re: Ely: How do you wordwrap a label on a bar chart?

2006-11-17 Thread Tim Hoff
Patrick, Sorry to highjack your thread. Here's a method to display a multi-lined Axis label: labelFunction: public function wrapLabel(cat:Object,pcat:Object,ax:CategoryAxis,catItem:Object):String { var pattern:RegExp = /-/; return cat.replace(pattern, -\n); } Axis: mx:horizontalAxis

[flexcoders] Looping creating objects, how do you do this: var myRadio[b+i]:RadioButton = new RadioButton();

2006-11-17 Thread dj
I know I've posted this already. Sorry, just trying to get this populated in Actionscript, so I thought I'd post again since I've been kind of stuck on this point here. Thanks, Patrick

[flexcoders] Re: Odd Problem with DateField and formatString

2006-11-17 Thread gotgoose09
That's weird, I get errors the second time I try to choose a date in Firefox 2 and IE 6. I have the latest Flash Player 9 debug version installed for both browsers. I even tried uninstalling and reinstalling the Flash Player, but that didn't work. Can anyone get an error? --- In

[flexcoders] Re: Worksheet component in Flex

2006-11-17 Thread jmorpher03
Thanks Tom. I will get back if I have further questions. Btw, are there any design patterns which we could use to build self contained flex components/ Widgets ? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 04 November 2006 00:35, jmorpher03 wrote:

[flexcoders] Sorting Date Error using CompareFunc

2006-11-17 Thread raidenx112
Hi, I was wondering how exactly I can write a date sorting function for the internal CompareFunc because I would like to use the sort field function. Please specify what exactly I have to write and exactly where I put it. Thanks.

Re: [flexcoders] Re: text not word wrapping

2006-11-17 Thread Paul Hastings
On 11/18/06, Rachel Maxim [EMAIL PROTECTED] wrote: thanks for the pixel width push rachel, i'm a bit closer now: mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; toolTip={data.name} width=100% horizontalScrollPolicy=auto verticalGap=0 verticalAlign=top paddingLeft=0 paddingRight=0 paddingTop=0

[flexcoders] Logout Button in Application

2006-11-17 Thread KP
Hi All, In my Application I have authentication form when my application starts , if the login is successful then user can perform some task now the problem is I have to give one logout button in my application which will perform below task if it is clicked. If logout button is clicked I