This is the name of our team, we are group of people working for relyon softech with Adobe Flex as our RIA and UI technology to develop WEB based TAX products.And guess what we are just doing fine.
Recently we gave a name to the team as FLEX Pirates, and a logo was designed by our BOSS with our suggestions.It came out good, it is given below.
Enjoy my Blog.



December 18, 2007 at 7:31 am |
hi kumar this is awsome and congrats and best of luck
December 29, 2007 at 4:51 am |
hi kumar this is good, nice logo and nice work with blog, very usefull blog of flex .
January 5, 2008 at 6:39 am |
Hey KumarGANDHI,tis looks good with a motive of sharin ur knowledge ,keep it up!
January 5, 2008 at 7:00 am |
hi friends,
thanks to u all , and keep in touch to make this blog a success..
regards
kumar gandhi
February 26, 2008 at 3:43 am |
Kumar,
Thanks for the blog.
February 29, 2008 at 6:26 am |
hi Geet,
your welcome.
regards,
kumar.
March 29, 2008 at 11:47 am |
Hi Kumar i really wonder by seeing ur blog keep it up.. i am getting one doubt regarding flex.. and also i am new to flex. i want to put progress bar while opening each forms in my applications.. so plz tell me how to do?.. thank u in advance
March 31, 2008 at 12:58 pm |
Hi,
the progress bar is used to show the progress of uploading or downloading [in terms of size or time], but here in opening a form [a view in the same App i suppose] showing the progress bar is the requirement and this can be done but there are two categories
1. showing the progress while loading the View [TitleWindow or others] component
as a compiled [.swf], as seperate view in to the App.,this can be achived by reading the file [.swf] properties and mentioning them in properties of the ProgressBar.Good Examples are present at the Flex Help.
2.Loading the view from the same App [No external file uploading] and this can be achived like showing the progress for few seconds before pop up the view [PopUpManagers].
Hope this will solve your Query !.[Comment for new Queries]
May 14, 2008 at 9:27 am |
Hi kumar,
I just saw ur blogs.Its very helpful.I am getting one error in my FLex project.
I am using logout button in my flex project.At the time of login i am creating one token.When i click logout i am deleting the token.If i relogin with the same username and password old values are not coming .I have written code for token generation in .net service.When i relogin old values are not coming
May 15, 2008 at 1:23 pm |
Hi
thanks at first sight , about your Error , I didn’t get what is Token , if iam not wrong i think you want to store some data [like instances of the user like cookies] on the client system then for this we can go for shared objects in Flex,They are similar to Browser Cookies.
I have made a post on SharedObjects in my blog ,just search it.Comment me if ur not clear.
regards,
kumar.
August 23, 2008 at 10:37 am |
Carry on , Good work.
August 28, 2008 at 2:02 pm |
Thank you sir.
February 20, 2009 at 4:39 am |
Kumar, could you email me please at above website…thanks.
April 28, 2009 at 6:16 am |
Hi kumar..
Good effort…
can you tell me how to use flex with web services devloped and deployed using apache axis2/java.
April 28, 2009 at 9:53 am |
Hi,
Thanks, I will soon make a post on that topic.
regards,
kumar.
May 8, 2009 at 9:39 am |
Hi Kumar,
It’s nice to see you guys posting solutions for flex developers. Let me tell you it is really very helpful.
Me too working in flex for last 8 months and its really awesome working in it.
thanks once again
August 10, 2009 at 6:29 pm |
create a facility for a user to select a college name from a list of colleges( using combo box& we have to take at the max 3 colleges). as as soon as he select a college name the departments of that college must be displayed (CSE,ECE,MECHANICAL) .When User selects any branch and year he is presented with two options either he can see faculty information and student information .After viewing student information if he wants see marks of students create a facility for user to view the marks as well as performance in graph .
so , kindly send me this source code as soon as possible in a day . I need it very urgently.
thankin you
yours sincerely
uday
August 26, 2009 at 9:36 am |
it is nice
August 26, 2009 at 9:37 am |
it is nice
iam new to flex
October 5, 2009 at 5:31 am |
My flex application is with ruby on rails. I want to block F5 key in flex application can u pliz help me?
October 5, 2009 at 7:32 am |
Hi,
to capture the keyboard keys trigger we can use the KeyboardEvent Event Class.Check the Below example.
this.addEventListener(KeyboardEvent.KEY_UP,fnEnterKeyHandler);
//function handler
private function fnEnterKeyHandler(event:KeyboardEvent):void
{
if(event.keyCode==Keyboard.F5)
{
//F5 key press ,can add your code..
}
}
hope this helps you.
regards,
kumar.
October 12, 2009 at 8:26 am |
Hi,
Presently I am creating a treeview control where based on user input it will search the input text in tree view,expand that node & you can select that text.
Example:
Animal
mamal
cat
dog
man
Insect
ant,
spider
Now user type at, then output result will be like below either
Animal
mamal
cat (display at as bold)
Insect(single node)
or
Animal
mamal
cat(display at as bold)
dog
man
Insect(Collapse node)
–
Could any of you please tell us how can I do it?
Please help.Any solution is welcome.
Regards,
Toton