Question

cfselects bind with multiple="yes"

Asked by: panosms

Hello experts.
I have a code with two related selects using the bind function
The problem i have is to get the selected values after the form is submitted when i have selected more than one value by multiple="yes"
The code i have is working but only with one value.
Any help?

<cfparam name="FORM.Main_ID" default="">
<cfparam name="Form.Sub_first_ID" default="">
<script type="text/javascript">
var imdone7 = false;
var imdone8 = false;
function Select7Default(x,val) {
 if(!imdone7) {
  var dd7 = document.getElementById('Main_ID');
  for(var i = 0; i < dd7.length; i++){
   if(dd7.options[i].value == val){
    dd7.selectedIndex = i;
   }
  }
  imdone7 = true;
 }
}
 
function Select8Default(x,val) {
 if(!imdone8) {
  var dd8 = document.getElementById('Sub_first_ID');
  for(var i = 0; i < dd8.length; i++){
 
   if(dd8.options[i].value.match(val) ){
    dd8.selectedIndex = i;
   }
  }
  imdone8 = true;
 }
}
</script>
<cfajaxproxy bind="javascript:Select7Default({Main_ID},#Form.Main_ID#)">
<cfajaxproxy bind="javascript:Select8Default({Sub_first_ID},#Form.Sub_first_ID#)">
 
<cfselect name="Main_ID"
            id="Main_ID"
            bind="cfc:test.com.ersatz6.getMain()"
            bindonload="true"
            value="ErsatzMain_Id"
            display="ErsatzMain_Text" 
            multiple="yes"
            style="height:100px"/>
<cfselect name="Sub_first_ID"
            id="Sub_first_ID"
            bind="cfc:test.com.ersatz6.getSub1({Main_ID})"
            value="Ersatz1Sub_ID"
            display="Ersatz1Sub_text"
            multiple="yes"
            style="height:100px"/>
<cfcomponent output="false">
   <cfset vlangid = #cookie.Lang#>
   <!--- Get array of media types --->
   <cffunction name="getMain" access="remote" returnType="array">
      <!--- Define variables --->
      <cfset var data="">
      <cfset var result=ArrayNew(2)>
      <cfset var i=0>
      
      <!--- Get data --->
     <cfquery name="data" datasource="#request.dsn#">
       SELECT ErsatzMain_Id,ErsatzMain_Text
       FROM dbo.ErsatzMain
       WHERE ErsatzMain_Id Between <cfqueryparam cfsqltype="cf_sql_integer" value="5"> 
                           AND <cfqueryparam cfsqltype="cf_sql_integer" value="35">                       
       ORDER BY ErsatzMain_Nr ASC 
     </cfquery>
     <!--- Convert results to array --->
     <cfloop index="i" from="1" to="#data.RecordCount#">
         <cfset result[i][1]=data.ErsatzMain_Id[i]>
         <cfset result[i][2]=data.ErsatzMain_Text[i]>
      </cfloop>
 <cffunction name="getSub1" access="remote" returnType="array">
      <cfargument name="ErsatzMain_Id" type="any" required="true">
 
      <!--- Define variables --->
      <cfset var data="">
      <cfset var result=ArrayNew(2)>
      <cfset var i=0>
      
     <cfif ARGUMENTS.ErsatzMain_Id NEQ "">
      <cfquery name="data" datasource="#request.dsn#">
      SELECT Ersatz1Sub_ID, Ersatz1Sub_Text
      FROM Ersatzsub1
      WHERE ErsatzMain_Id IN (<cfqueryparam cfsqltype="cf_sql_varchar" value="#ARGUMENTS.ErsatzMain_Id#" list="yes">)
            AND Ersatz1Sub_ID BETWEEN <cfqueryparam cfsqltype="cf_sql_integer" value="5"> 
                                  AND <cfqueryparam cfsqltype="cf_sql_integer" value="390">
                    
      ORDER BY Ersatz1Sub_NR
      </cfquery>
      
       
      <!--- Convert results to array --->
      <cfloop index="i" from="1" to="#data.RecordCount#">
         <cfset result[i][1]=data.Ersatz1Sub_ID[i]>
         <cfset result[i][2]=data.Ersatz1Sub_Text[i]>
      </cfloop>
      </cfif>
      <!--- And return it --->
      <cfreturn result>
   </cffunction>
 
</cfcomponent>
                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-07-21 at 22:31:45ID24589847
Tags

CF8

Topics

ColdFusion Application Server

,

Cold Fusion Markup Language

,

Miscellaneous Programming

,

Programming Languages

Participating Experts
1
Points
500
Comments
14

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. Binding two CFSELECT boxes in a CFFORM
    Here's a doozy. Consider the following: * I have a page that contains a Flash CFForm. * I have a query object that contains a list of states/provinces from the US, Canada and Australia. * I have another query object that contains a list of 170+ countries from around the wor...
  2. CFMX 7: Flash Forms: <cfselect> data binds
    I have an employee select list that shows all employees' names. I then have a cfselect that shows what medical insurance plan they chose (which comes from a different query related by an ID number. How do I bind the two selects so that when I change the employee, it selects...
  3. CFSELECT bind to query with "selected" value
    I am using bind to pull data into a select list, which then binds another select list to display drilled down results. I am unable to use the "selected" value in the cfselect. I want to be able to allow the user to return to the form and have the last selected resul...
  4. Cold Fusion CFSELECT binding question
    I am currently working on developing a photo album for our local volunteer fire department (www.soundbeachfire.org). I am getting hung up on a cfselect form binding on the applications admin page. Essentially, I have two drop down lists. DROP DOWN LIST 1 (CATEGORIES): This l...
  5. Binding 2 CFselect tags in CF8 without Flash Form
    I am trying to bind to CFselects together when certain items are selected it updates the second cfselect. I know this is possible with CF8 and possibly with a CFC? My data of my CFSelects don't read from a database. So I'm not sure If I use some sort of array list or somethin...
  6. bind cfselect to cfinput - easy
    I need to bind the selection of a query built cfselect to a text box. Client Name:<cfselect name="toname" query="qindivs" display="Iname2" selected="#QGetSurveyInfo.Iname#" value="Iname3"> </cfselect> C...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: pravinasarPosted on 2009-07-24 at 08:35:11ID: 24935967

Here is a way to  handle mutliple select.

1. Update the query for SubModule Selection


<cfcomponent output="no">
      <cffunction name="GetModules" access="remote" returntype="query">
        <cfquery name="data" datasource="YOURSQL">
                 SELECT ModuleId, ModuleName from tblModules
                 WHERE IsActive = 1
                 ORDER BY ModuleName
           </cfquery>
            <cfreturn data>
      </cffunction>
      <cffunction name="GetSubModules" access="remote" returntype="query">
            <cfargument name="moduleId">
        <cfquery name="data" datasource="YOURSQL">
                 SELECT SubModuleId, SubModuleName from tblSubModules
                 WHERE IsActive = 1 AND ModuleId IN (#arguments.moduleid#)
                 ORDER BY SubModuleName
           </cfquery>
            <cfreturn data>
      </cffunction>
</cfcomponent>


2. Use the function SelMutliDefault


Look at following code.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Ajax - Multiple Select </title>
</head>
 
<body>
 
<!--- Set the default Value --->
<cfset defaultmodule = '10,2'>
 
<!---
 Form was posted, so get the value of desired field(s).
--->
<cfif IsDefined("FORM.module")>
	<cfset defaultmodule = #FORM.Module#>
</cfif>
 
<script type="text/javascript">
function SelectMultiDefault(x,val) 
{
	var valarray=val.split(',');
  	var dd = document.getElementById('module');
  	for(var i = 0; i < dd.length; i++)
	{
	  	for (var ax=0; ax < valarray.length; ax++) 
		{
   			if(dd.options[i].value == parseInt(valarray[ax]) )
			{
    		dd.options[i].selected = true;
   			}
		}
	}
}
</script>
 
<!--- Proxy function --->
 
<cfajaxproxy bind="javascript:SelectMultiDefault({module},'#defaultmodule#')">
 
<cfform name="myform" method="post">
<cfselect name="module" id="module" multiple="yes" value="ModuleID" display="ModuleName"
 bindonload="true" bind="cfc:Modules.GetModules()"/>
 
<cfselect name="submoduleid" id="submoduleid" value="SubModuleId" size="20" display="SubModuleName" 
bind="cfc:Modules.GetSubModules({module})"/>
<cfinput type="submit" name="submit" value="Submit"/>
</cfform>
</body>
</html>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:

Select allOpen in new window

 

by: panosmsPosted on 2009-07-24 at 09:16:50ID: 24936442

excellent pravinasar
It is working perfect
Thank you

 

by: panosmsPosted on 2009-07-24 at 09:18:01ID: 31607533

Thank you very much for your help.
regards
panos

 

by: panosmsPosted on 2009-07-24 at 09:39:23ID: 24936651

Hi pravinasar.
A clarification please.
I need the script for the child multi select too.
Can you please add the new code too because i don't know wich is the variable that i must change there

 

by: panosmsPosted on 2009-07-24 at 11:19:32ID: 24937526

Pravinasar i was so happy that i did not noticed that i cannot deselect the selected values  after i click the submit button

 

by: pravinasarPosted on 2009-07-24 at 11:43:33ID: 24937781

Adding control for child  should work similarly.


Here are changes you have to do.


Look at
JS function SelectMultiDefault2(x,val)
<cfajaxproxy bind="javascript:SelectMultiDefault2({submoduleid},'#defaultsubmodule#')">

<cfselect name="submoduleid" id="submoduleid" value="SubModuleId" multiple="yes" size="20" display="SubModuleName"
bind="cfc:Modules.GetSubModules({module})"/>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Ajax - Multiple Select </title>
</head>
 
<body>
 
<!--- Set the default Value --->
<cfset defaultmodule = '10,2'>
<cfset defaultSubModule = ''>
 
<!---
 Form was posted, so get the value of desired field(s).
--->
<cfif IsDefined("FORM.module")>
	<cfset defaultmodule = #FORM.Module#>
</cfif>
<cfif IsDefined("FORM.submoduleid")>
	<cfset defaultSubModule = #FORM.submoduleid#>
</cfif>
 
<script type="text/javascript">
function SelectMultiDefault(x,val) 
{
	var valarray=val.split(',');
  	var dd = document.getElementById('module');
  	for(var i = 0; i < dd.length; i++)
	{
	  	for (var ax=0; ax < valarray.length; ax++) 
		{
   			if(dd.options[i].value == parseInt(valarray[ax]) )
			{
    		dd.options[i].selected = true;
   			}
		}
	}
}
function SelectMultiDefault2(x,val) 
{	
	var valarray=val.split(',');
  	var dd = document.getElementById('submoduleid');
  	for(var i = 0; i < dd.length; i++)
	{
	  	for (var ax=0; ax < valarray.length; ax++) 
		{
   			if(dd.options[i].value == parseInt(valarray[ax]) )
			{
    		dd.options[i].selected = true;
   			}
		}
	}
}
</script>
 
<!--- Proxy function --->
 
<cfajaxproxy bind="javascript:SelectMultiDefault({module},'#defaultmodule#')">
<cfajaxproxy bind="javascript:SelectMultiDefault2({submoduleid},'#defaultsubmodule#')">
 
<cfform name="myform" method="post">
<cfselect name="module" id="module" multiple="yes" value="ModuleID" display="ModuleName"
 bindonload="true" bind="cfc:Modules.GetModules()"/>
 
<cfselect name="submoduleid" id="submoduleid" value="SubModuleId" multiple="yes" size="20" display="SubModuleName" 
bind="cfc:Modules.GetSubModules({module})"/>
<cfinput type="submit" name="submit" value="Submit"/>
</cfform>
</body>
</html>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:

Select allOpen in new window

 

by: panosmsPosted on 2009-07-24 at 11:58:29ID: 24937969

Ok pravinasar.
I did this but still can't deselect the selected values after form submitting

 

by: pravinasarPosted on 2009-07-24 at 12:43:13ID: 24938391

Since we are binding with values posted, you would not  deselect after form is submitted, unless user starts over.

 

 

by: panosmsPosted on 2009-07-24 at 19:49:24ID: 24940522

That is the idea pravinasar.I do use the multiselects in a search form that is submitting to a results page.
I get there all the values in hidden fields and if a user wants to change the search settings he can go to the search page where i pass these form values again back.

 

by: panosmsPosted on 2009-07-25 at 08:17:47ID: 24941925

Finally i get it work the way i wanted .
Here are the changes in the script:
<script type="text/javascript">
var imdone7 = false;
var imdone8 = false;
function Select1MultiDefault(x,val) {
       if(!imdone7) {
        var valarray=val.split(',');
        var dd = document.getElementById('Main_ID');
        for(var i = 0; i < dd.length; i++)
        {
                for (var ax=0; ax < valarray.length; ax++)
                {
                        if(dd.options[i].value == parseInt(valarray[ax]) )
                        {
                dd.options[i].selected = true;
                        }
                }
        }
      }
  imdone7 = true;
}
function SelectMultiDefault2(x,val) {
      if(!imdone8) {
        var valarray=val.split(',');
        var dd = document.getElementById('Sub_first_ID');
        for(var i = 0; i < dd.length; i++)
        {
                for (var ax=0; ax < valarray.length; ax++)
                {
                        if(dd.options[i].value == parseInt(valarray[ax]) )
                        {
                dd.options[i].selected = true;
                        }
                }
        }
             }
  imdone8 = true;
}

 

by: pravinasarPosted on 2009-07-27 at 09:22:42ID: 24953182

Another way is to server-side reset[ which is nothing but submit]

Here is sample code.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Ajax - Multiple Select </title>
</head>
 
<body>
 
<!--- Set the default Value --->
<cfset defaultmodule = '10'>
<cfset defaultSubModule = ''>
 
<!---
 Form was posted, so get the value of desired field(s).
--->
<!-- USER WANT TO RESET --->
<cfif IsDefined("FORM.reset")>
	<h1>Reset Pressed </h1>
	<cfset defaultmodule = '10'>
	<cfset defaultSubModule = ''>
</cfif>
<cfif IsDefined("FORM.submit")>
	<cfif IsDefined("FORM.module")>
		<cfset defaultmodule = #FORM.Module#>
	</cfif>
	<cfif IsDefined("FORM.submoduleid")>
		<cfset defaultSubModule = #FORM.submoduleid#>
	</cfif>
</cfif>
 
 
<script type="text/javascript">
function SelectMultiDefault(x,val) 
{
	var valarray=val.split(',');
  	var dd = document.getElementById('module');
  	for(var i = 0; i < dd.length; i++)
	{
	  	for (var ax=0; ax < valarray.length; ax++) 
		{
   			if(dd.options[i].value == parseInt(valarray[ax]) )
			{
    		dd.options[i].selected = true;
   			}
		}
	}
}
function SelectMultiDefault2(x,val) 
{	
	var valarray=val.split(',');
  	var dd = document.getElementById('submoduleid');
  	for(var i = 0; i < dd.length; i++)
	{
	  	for (var ax=0; ax < valarray.length; ax++) 
		{
   			if(dd.options[i].value == parseInt(valarray[ax]) )
			{
    		dd.options[i].selected = true;
   			}
		}
	}
}
</script>
<!--- Proxy function --->
 
<cfajaxproxy bind="javascript:SelectMultiDefault({module},'#defaultmodule#')">
<cfajaxproxy bind="javascript:SelectMultiDefault2({submoduleid},'#defaultsubmodule#')">
<cfform name="myform" method="post">
<cfselect name="module" id="module" multiple="yes" value="ModuleID" display="ModuleName"
 bindonload="true" bind="cfc:Modules.GetModules()"/>
 
<cfselect name="submoduleid" id="submoduleid" value="SubModuleId" multiple="yes" size="20" display="SubModuleName" 
bind="cfc:Modules.GetSubModules({module})"/>
<cfinput type="submit" name="submit" value="Submit"/>
<cfinput type="submit" name="reset" value="Start Again!"/>
</cfform>
</body>
</html>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:

Select allOpen in new window

 

by: panosmsPosted on 2009-07-27 at 11:41:59ID: 24954557

Thank you pravinasar for your last post.
It is very usefull

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...