Link to home
Start Free TrialLog in
Avatar of g118481
g118481

asked on

How do I ask a code question?

I have an HTML page full of JavaScript, and parts of it are not working.  What is the best way to ask my question in this forum?  Should I dump the whole page at once in a question, or should I give a little snippet of it?

The reason I ask, is that the code is long, and I do not want to overwhelm anyone.  Help please!
Avatar of Patterson
Patterson

If it is just a couple functions messing up just paste the function in and we'll take a look at it... Pasting a huge page in makes things a mess. You could also paste a url to the page so we can look at it that way as well...

Patterson
Avatar of g118481

ASKER

Patterson,

This is my function:
/************************************/
function DisplayHlps(hlps_stp)
   {
      wip=document.dcf.datestamp.value
      hlps_url=""
      hlps_url="http://cm.tel.gte.com/MVSDS/'SC1LICM.DOCLIB.ICM.BAB."+hlps_stp+"'"
      hlpsWindow=""
      hlpsWindow=window.open(hlps_url,"hlpsWindow","height=600,width=400,toolbar=yes,resizable=yes,scrollbars=yes")
   }
/****************************************/

This next part of the HTML works fine:

/****************************************/
<TR>
          <TD align=middle noWrap width="20%"><IMG
            alt="Conflict Checking or Listing of Immediate CCID elements."
            height=22 name=c1 src="dcf_files/wips.html" width=27> <INPUT name=b1 onclick="SubmitForm('STEP1JCL','c1','jtim1','jdat1')" type=button value="Step 1">
          </TD>
          <TD align=middle><INPUT name=jnam1 readOnly size=8></TD>
          <TD align=middle><INPUT name=jnum1 readOnly size=8></TD>
          <TD align=middle><INPUT name=jtim1 readOnly size=8></TD>
          <TD align=middle><INPUT name=jdat1 readOnly size=8></TD>
          <TD align=middle><INPUT name=h1 onclick='DisplayHlps("HELP1")' type=button value=Help1></TD></TR>
/****************************************/

This next part does not work.

/***************************************/
<TR width="100%">
          <TD align=middle noWrap width="20%"><IMG
            alt="Impact Analysis, Adjustment for Cross System Impacts, and Creation of Induced Distributions."
            height=22 name=c2 src="dcf_files/wips.html" width=27> <INPUT name=b2 onclick="SubmitForm('STEP2JCL','c2','jtim2','jdat2')" type=button value="Step 2">
          </TD>
          <TD align=middle><INPUT name=jnam2 readOnly size=8></TD>
          <TD align=middle><INPUT name=jnum2 readOnly size=8></TD>
          <TD align=middle><INPUT name=jtim2 readOnly size=8></TD>
          <TD align=middle><INPUT name=jdat2 readOnly size=8></TD>
          <TD align=middle><INPUT name=h2 onclick='DisplayHlps("HELP2")' type=button value=Help2></TD></TR>
/********************************************/


This page works fine without the "Help" buttons and calls to the help files.  But since adding them is the enhancement I need to achive, I need to keep them in the page.

THE RESULTS I AM LOOKING FOR ARE FOR THE USER TO PRESS ON THE VARIOUS "HELP" BUTTONS, AND HAVE A NEW WINDOW POPUP AND ACCESS A HELP FILE.  HELP BUTTION #1 AND # FIVE WORKS GREAT, BUT THE OTHER DO NOT.

The URL for this page in behind a company firewall, so I cannot allow it to be accessed.  I can send you the complete HTML file though.

Your help is very appreciated!
Yeah post the whole page.... What happens with the Help buttons 2-4?

Patterson
Avatar of Michel Plungjan
The url you are using is in principle malformed
    hlps_url="http://cm.tel.gte.com/MVSDS/'SC1LICM.DOCLIB.ICM.BAB."+hlps_stp+"'"

will not result in a valid url

Please post the real script (what is wip used for) and the real links

Do you HAVE the pages
SC1LICM.DOCLIB.ICM.BAB.HELP2 thrugh HELP4 ?

Michel
Avatar of g118481

ASKER

Patterson and Mplungjan,

Here is the full page.  Please help.

/*********************************************/
<html>
<head>
<script language="JavaScript">
//
//-------------------------------------------------------------------------------------------------------------------------
//Function will assign the jcl pds member name and submit form to server
//-------------------------------------------------------------------------------------------------------------------------
//
function SubmitForm(stepjcl,step_number,time_stamp,date_stamp)
   {
      if (step_number=='c4')
         if (!confirm('Did you Execute The Package Control Facility?'))
            return
         else
            document.dcf.b5.disabled=false
      if (step_number=='c6')
         if (!confirm('Have You Verified All Files Have Completed Shipping Through NDM?'))
            return
      timex=new Date()
      wip=document.dcf.datestamp.value
      subsystem=document.dcf.subsys.value
      document.dcf.step.value=step_number
      var step_ind=step_number.substring(1,2)
      document.dcf.subjcl.value="SC1LICM.DOCLIB."+wip+"."+subsystem+".LOG("+stepjcl+")"
      document.dcf[time_stamp].value=timex.getHours()+':'+timex.getMinutes()+':'+timex.getSeconds()
      document.dcf[date_stamp].value=timex.getMonth()+'/'+timex.getDay()+'/'+timex.getYear()
      document.dcf.submit()
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the notes worksheet in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function ArchiveDatestamp()
   {
      if (!confirm('Are you CERTAIN that you are ready to Archive this Datestamp?'))
         return
      else
         {
            document.Archive.datestamp.value=document.dcf.datestamp.value
            document.Archive.subsys.value=document.dcf.subsys.value
            document.Archive.submit()
         }
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the notes worksheet in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayNotes()
   {
      notesWindow=""
      notesWindow=window.open("","notesWindow","height=700,width=600,toolbar=yes,resizable=yes,scrollbars=yes")
      notesWindow.moveTo(1,1)
      document.notesForm.datestamp.value=document.dcf.datestamp.value
      document.notesForm.subsys.value=document.dcf.subsys.value
      document.notesForm.submit()
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the current steps progress in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayProgress()
   {
      wip=document.dcf.datestamp.value
      subsys=document.dcf.subsys.value
      progressWindow=""
      progressWindow=window.open("http://cm.tel.gte.com/wips/"+wip+"_"+subsys+".htm","prgWindow","HEIGHT=400,WIDTH=800,resizable=yes,scrollbars=yes")
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the Package Control Facility in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayPackageControlFacility()
   {
      wip=document.dcf.datestamp.value
      subsys=document.dcf.subsys.value
      pcfWindow=""
      pcfWindow=window.open("http://cm.tel.gte.com/wips/"+wip+"_"+subsys+"_package.htm","pacfWindow","HEIGHT=600,WIDTH=800,toolbar=yes,resizable=yes")
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the WIP-level (datestamp) log in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayLog()
   {
      wip=document.dcf.datestamp.value
      subsystem=document.dcf.subsys.value
      log_url="http://cm.tel.gte.com/MVSDS/'SC1LICM.DOCLIB."+wip+"."+subsystem+".LOG'"
      logWindow=""
      logWindow=window.open(log_url,"logWindow","height=600,width=600,toolbar=yes,resizable=yes,scrollbars=yes")
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the SYSTEM-level log in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayRepository(repo_system)
   {
      wip=document.dcf.datestamp.value
      subsystem=document.dcf.subsys.value
      repo_url="http://cm.tel.gte.com/MVSDS/'SC1LICM.DOCLIB."+wip+"."+subsystem+"."+repo_system+"'"
      repoWindow=""
      repoWindow=window.open(repo_url,"repoWindow","height=600,width=400,toolbar=yes,resizable=yes,scrollbars=yes")
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the Self Help messages per the step calling it.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayHlps(hlps_stp)
   {
      wip=document.dcf.datestamp.value
      hlps_url=""
      hlps_url="http://cm.tel.gte.com/MVSDS/'SC1LICM.DOCLIB.ICM.BAB."+hlps_stp+"'"
      hlpsWindow=""
      hlpsWindow=window.open(hlps_url,"hlpsWindow","height=600,width=400,toolbar=yes,resizable=yes,scrollbars=yes")
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Display the SYSTEM-level log in a sub-window.
//-------------------------------------------------------------------------------------------------------------------------
//
function DisplayDefaults(dflt_system)
   {
      dfltWindow=""
      dfltWindow=window.open("","dfltWindow","height=700,width=500,toolbar=no,resizable=yes,scrollbars=yes")
      wip=document.dcf.datestamp.value
      subsystem=document.dcf.subsys.value
      document.defaults.repository.value="SC1LICM.DOCLIB."+wip+"."+subsystem+"."+dflt_system
      document.defaults.submit()
   }
//
//-------------------------------------------------------------------------------------------------------------------------
//Calls other subroutines.
//-------------------------------------------------------------------------------------------------------------------------
//
function ProcessActiveOption(activeOption)
    {
       if (activeOption=="Log")
          DisplayLog()
       else
          if (activeOption=="Progress")
             DisplayProgress()
          else
             if (activeOption=="Notes")
                DisplayNotes()
             else
                if (activeOption=="Archive")
                   ArchiveDatestamp()
                else
                   alert('Unknown Option')
    }
//
//==========================================================================================================================
//
</script>
</head>

<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" background="/images/gifs/rmmback.gif">
<div align="center"><center>

<table border="0" cellpadding="0" width="53%">
  <tr>
    <td width="55%"><img src="/images/gifs/charlogo.gif" width="70" height="71"
    alt="/images/gifs/gtelogo.gif (3539 bytes)"></td>
    <td width="50%"><img src="/images/gifs/rmmlogo.gif" width="526" height="73"
    alt="/images/gifs/rmmlogo.gif (15821 bytes)"></td>
  </tr>
</table>
<img src="/images/jpegs/dist.jpg"><br><br>
</center></div><div align="center"><center>

<form name="Archive" method="POST" action="/cgi-bin/dcfbldr?Archive">
<input type=hidden name="datestamp" value=''>
<input type=hidden name="subsys" value=''>
</form>
<form name="notesForm" method="POST" action="/cgi-bin/dcfbldr?DisplayNotes" target='notesWindow'>
<input type=hidden name="datestamp" value=''>
<input type=hidden name="subsys" value=''>
</form>
<form name="defaults" method="POST" action="/cgi-bin/dcfbldr?DisplayDefaults" target="dfltWindow">
<input type=hidden name="repository">
</form>
<form name="dcf" method="POST" action="/cgi-bin/dcfbldr?SubmitDistributionJcl">
<input type=hidden name=disttype>
<input type=hidden name=system_list>
<input type=hidden name=subjcl>
<input type=hidden name=step>
<input type=hidden name='c1_image'>
<input type=hidden name='c2_image'>
<input type=hidden name='c3_image'>
<input type=hidden name='c4_image'>
<input type=hidden name='c5_image'>
<input type=hidden name='c6_image'>
<center>
<table width=65% border=0 cellspacing=0><tr width=100%>
<td align=right><font face=arial color='#0000A0' size=3>Subsys:</td><td><input type=text readonly name=subsys size=10></td>
<td align=right><font face=arial size=3 color='#0000A0'>Environment:</td><td><input type=text readonly size=10 name=environment></td>
<td align=right><font face=arial size=3 color=red>DateStamp:</td><td><input type=text readonly size=10 name=datestamp></td> </tr>
</tr></table>
<br>
<font face="arial" size=4 color=red>Distribution Execution</font><br>
<table width=70% border=3 bgcolor=silver><tr><td>
<table width=100% border=0  bgcolor=silver cellspacing=0>
<tr bgcolor='#0000A0' width=100%>
<th><font face=arial size=2 color=white>Step</font></th>
<th><font face=arial size=2 color=white>Job Name</font></th>
<th><font face=arial size=2 color=white>Job Number</font></th>
<th><font face=arial size=2 color=white>Time</font></th>
<th><font face=arial size=2 color=white>Date</font></th>
<th><font face=arial size=2 color=white>Help</font></th></tr>
<tr width=100%>
<tr><td colspan=6><hr></td></tr>
<td align=center width=20% nowrap>
<img src='' alt='Conflict Checking or Listing of Immediate CCID elements.' name='c1' height=22 width=27>
<input type=button value="Step 1" name=b1 onClick="SubmitForm('STEP1JCL','c1','jtim1','jdat1')">
</td>
<td align=center><input type=text readonly name=jnam1 size=8></td>
<td align=center><input type=text readonly name=jnum1 size=8></td>
<td align=center><input type=text readonly name=jtim1 size=8></td>
<td align=center><input type=text readonly name=jdat1 size=8></td>
<td align=center><input type=button name=h1 value='Help1' onClick='DisplayHlps("HELP1")'></td>
</tr>
<tr width=100%>
<td align=center width=20% nowrap>
<img src="" alt="Impact Analysis, Adjustment for Cross System Impacts, and Creation of Induced Distributions." name='c2' height=22 width=27>
<input type=button value="Step 2" name=b2 onClick="SubmitForm('STEP2JCL','c2','jtim2','jdat2')">
</td>
<td align=center><input type=text readonly name=jnam2 size=8></td>
<td align=center><input type=text readonly name=jnum2 size=8></td>
<td align=center><input type=text readonly name=jtim2 size=8></td>
<td align=center><input type=text readonly name=jdat2 size=8></td>
<td align=center><input type=button name=h2 value='Help2' onClick='DisplayHlps("HELP2")'></td>
</tr>
<tr width=100%>
<td align=center width=20% nowrap>
<img src="" alt="Define and Cast Packages, and build the Package Control Facility." name='c3' height=22 width=27>
<input type=button value="Step 3" name=b3 onClick="SubmitForm('STEP3JCL','c3','jtim3','jdat3')">
</td>
<td align=center><input type=text readonly name=jnam3 size=8></td>
<td align=center><input type=text readonly name=jnum3 size=8></td>
<td align=center><input type=text readonly name=jtim3 size=8></td>
<td align=center><input type=text readonly name=jdat3 size=8></td>
<td align=center><input type=button name=h3 value='Help3' onClick='DisplayHlps("HELP3")'></td>
</tr>
<tr width=100%>
<td align=center width=20% nowrap>
<img src="/images/gifs/blackdot.gif" alt="Le Package Facility de Control" height=22 width=27>
<input type=button value=" P C F " name=pcf onClick="DisplayPackageControlFacility()">
</td>
<td align=center colspan=4><font face=arial size=3><b>Package Control Facility<b></td>
<td align=center><input type=button name=hPCF value='HelpPCF' onClick='DisplayHlps("HELPPCF")'></td>
</tr>
<tr width=100%>
<td align=center width=20% nowrap>
<img src="" alt="Unlock Stage 2, Submit Pricing Plans, RUN IT ANYWAYS!" name='c4' height=22 width=27>
<input type=button value="Step 4" name=b4 onClick="SubmitForm('STEP4JCL','c4','jtim4','jdat4')">
</td>
<td align=center><input type=text readonly name=jnam4 size=8></td>
<td align=center><input type=text readonly name=jnum4 size=8></td>
<td align=center><input type=text readonly name=jtim4 size=8></td>
<td align=center><input type=text readonly name=jdat4 size=8></td>
<td align=center><input type=button name=h4 value='Help4' onClick='DisplayHlps("HELP4")'></td>
</tr>
<tr width=100%>
<td align=center width=20% nowrap>
<img src="" name='c5' alt="Alias Building, DBRM checking, Packaging of Dated Datasets, and Shipping." height=22 width=27>
<input type=button value="Step 5" name=b5 onClick="SubmitForm('STEP5JCL','c5','jtim5','jdat5')">
</td>
<td align=center><input type=text readonly name=jnam5 size=8></td>
<td align=center><input type=text readonly name=jnum5 size=8></td>
<td align=center><input type=text readonly name=jtim5 size=8></td>
<td align=center><input type=text readonly name=jdat5 size=8></td>
<td align=center><input type=button name=h5 value='Help5' onClick='DisplayHlps("HELP5")'></td>
</tr>
<tr width=100%>
<td align=center width=20%>
<img src="" name='c6' alt="Transmission of the 'fuzzy' file and Logging of the Distribution." height=22 width=27>
<input type=button value="Step 6" name=b6 onClick="SubmitForm('STEP6JCL','c6','jtim6','jdat6')">
</td>
<td align=center><input type=text readonly name=jnam6 size=8></td>
<td align=center><input type=text readonly name=jnum6 size=8></td>
<td align=center><input type=text readonly name=jtim6 size=8></td>
<td align=center><input type=text readonly name=jdat6 size=8></td>
<td align=center><input type=button name=h6 value='Help6' onClick='DisplayHlps("HELP6")'></td>
<tr><td colspan=6><hr></td></tr>
<tr width=100%>
<td align=center colspan=6>
<select name="aO">
   <option value="Log">Log Dataset...</option>
   <option value="Notes">Notes Worksheet...</option>
   <option value="Progress" selected>Distribution Progress...</option>
   <option value="Checklist">Distribution Checklist...</option>
   <option value="Archive">ARCHIVE Distribution</option>
</select>
<input type=button value=" > " onClick="ProcessActiveOption(document.dcf.aO.options[document.dcf.aO.selectedIndex].value)">
</td>
</tr></table>
</td></tr></table>
<br>
<font face="arial" size=4 color=red>Distribution Information</font><br>
<table width=65% bgcolor=silver border=3 cellspacing=0>
<tr><td>
<table width=100% bgcolor=silver border=0 cellspacing=0>
<tr bgcolor='#0000A0' width=100%>
<th><font face=arial size=2 color=white>System</font></th>
<th><font face=arial size=2 color=white>View</font></th>
<th><font face=arial size=2 color=white>Override</font></th>
</tr>
<tr><td colspan=3><hr></td></tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">BFM</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("BFM")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("BFM")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">CBS</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("CBS")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("CBS")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">DBA</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("DBA")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("DBA")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">EOI</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("EOI")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("EOI")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">NCV</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("NCV")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("NCV")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">NST</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("NST")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("NST")'></td>
</tr>
<tr>
<td align=center><font face=arial size=3 color="#0000A0">PRC</font></td>
<td align=center><input type=button name=r2 value='Repository' onClick='DisplayRepository("PRC")'></td>
<td align=center><input type=button name=o2 value='Defaults' onClick='DisplayDefaults("PRC")'></td>
</tr>
</table>
</td></tr></table>
</form>
<title>Distributing Datestamp W000918A...</title><meta http-equiv="Refresh" content="40, URL=http://cm.tel.gte.com/wips/W000918A_dcf.htm">
<script language="JavaScript">
//
//--------------------------------------------------------------------------------------------------------------------------
// Default Values Set By The Server.
//--------------------------------------------------------------------------------------------------------------------------
//
document.dcf.c1_image.value="/images/gifs/blackdot.gif"
document.dcf.c2_image.value="/images/gifs/blackdot.gif"
document.dcf.c3_image.value="/images/gifs/blackdot.gif"
document.dcf.c4_image.value="/images/gifs/blackdot.gif"
document.dcf.c5_image.value="/images/gifs/blackdot.gif"
document.dcf.c6_image.value="/images/gifs/blackdot.gif"
document.dcf["c1"].src=document.dcf.c1_image.value
document.dcf["c2"].src=document.dcf.c2_image.value
document.dcf["c3"].src=document.dcf.c3_image.value
document.dcf["c4"].src=document.dcf.c4_image.value
document.dcf["c5"].src=document.dcf.c5_image.value
document.dcf["c6"].src=document.dcf.c6_image.value
document.dcf.jtim1.value=''
document.dcf.jdat1.value=''
document.dcf.jnam1.value=''
document.dcf.jnum1.value=''
document.dcf.jtim2.value=''
document.dcf.jdat2.value=''
document.dcf.jnam2.value=''
document.dcf.jnum2.value=''
document.dcf.jtim3.value=''
document.dcf.jdat3.value=''
document.dcf.jnam3.value=''
document.dcf.jnum3.value=''
document.dcf.jtim4.value=''
document.dcf.jdat4.value=''
document.dcf.jnam4.value=''
document.dcf.jnum4.value=''
document.dcf.jtim5.value=''
document.dcf.jdat5.value=''
document.dcf.jnam5.value=''
document.dcf.jnum5.value=''
document.dcf.jtim6.value=''
document.dcf.jdat6.value=''
document.dcf.jnam6.value=''
document.dcf.jnum6.value=''
document.dcf.b1.disabled=false
document.dcf.b2.disabled=true
document.dcf.b3.disabled=true
document.dcf.b4.disabled=true
document.dcf.b5.disabled=true
document.dcf.b6.disabled=true
document.dcf.pcf.disabled=true
document.dcf.datestamp.value='W000918A'
document.dcf.subsys.value='R012601'
document.dcf.environment.value='CBS126TS'
document.dcf.disttype.value='M'
document.dcf.system_list.value='BFM CBS DBA EOI NCV NST PRC'
//
//==========================================================================================================================
//
</script>
</body>
</html>
/**********************************************/
ASKER CERTIFIED SOLUTION
Avatar of Bushweiler
Bushweiler
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Have you tried to escape the document name portion of the URL.

I.E. escape("SC1LICM.DOCLIB.ICM.BAB.")+ escape(hlps_stp)
I think you perhaps have a few files missing on your mainframe??

There is as far as I can see not difference between help1 and help2 as far as script and url is concerned, ony the digit 2 is different
Michel that's kinda' what I was getting at too with the 404 error... curiosity; making a call like this should generate and error if the files are missing correct? what would the error be?

--never tried it so I'm a bit clueless here--

--Lee
Avatar of g118481

ASKER

Guys,

I just figured out what my problem was; I had a single quote too many.

I would like to hand out points to all who helped, since there was no definitive answer.  How do I do that?  Thanks for all your help.
Great you solved it!

If you email cs@experts-exchange.com with the url of this question you can ask for it to be deleted (unless you think it should be a PAQ)
and the names of the experts you want to award, they will be happy to help

Michel
Hi,

Thanks for your email.

It is possible to split points on questions, however you need the help of
Community Support to do so. What you need to do is post a zero point
question in the Community Support area located at:

https://www.experts-exchange.com/Customer_Service/Experts_Exchange/

In the question you need to reference the question number, who you wish to
split the points among, and what point values to assign, then  Community
Support staff will do the rest, normally by reducing the original point
value to allow you to post new questions for the other experts. Please post
a comment at your question so the experts know of your intention.

Ian
*********#1 Knowledge-Collaboration Network on the Web *********
Ian Baldam
Community Support          mailto:ian@experts-exchange.com
Experts Exchange             https://www.experts-exchange.com
*************************************************************************
Hi,

I have emailed g118481 about whom he/she wants to split points among and by how much.

As soon as I hear, I will split the points.

Ian

Greetings,

This question is still open today.  Perhaps it was overlooked.  If you've been helped, just choose the expert's comment which served your needs as the accepted answer to then grade and close.  If more is needed, please advise.

Your responsiveness is appreciated.

Asta
g118481---->  These are your open questions here.  Many date back to the year 2000.  Help requested, help given and open today.

FOLLOW UP REQUESTED 5/15, IGNORED.. ADMINISTRATION WILL SEND YOU EMAIL.

https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=11397018
https://www.experts-exchange.com/jsp/qShow.jsp?ta=winnt&qid=20171262
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20166677
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=11811578
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20192428
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20006788
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=11947538
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=11626838
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=11373117
https://www.experts-exchange.com/jsp/qShow.jsp?ta=asp&qid=20233826
https://www.experts-exchange.com/jsp/qShow.jsp?ta=asp&qid=20182621
https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=20268689
https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=20263774
https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=20256576
https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=20187192
https://www.experts-exchange.com/jsp/qShow.jsp?ta=coldfusion&qid=20121821

Your options are:

1.  Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you. You must tell the participants why you wish to do this, and allow for Expert response.
3.  Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4.  Delete the question. Again, you must tell the other participants why you wish to do this.

Please click this Help Desk link for Member Guidelines, Member Agreement and the Question/Answer process:  Click you Member Profile to view your question history and keep them all current with updates as the collaboration effort continues.

https://www.experts-exchange.com/jsp/cmtyHelpDesk.jsp

PLEASE DO NOT AWARD THE POINTS TO ME.  
_________________________________________
------------>  EXPERTS:

Please leave any comments regarding this question here on closing recommendations if this item remains inactive another three days.

Thank you everyone.

Moondancer
Community Support Moderator @ Experts Exchange

P.S.  For year 2000 question, special attention is needed to ensure the first correct response is awarded, since they are not in the comment date order, but rather in Member ID order.

The last post seems to indicate what g118481 wanted:

"Guys,

I just figured out what my problem was; I had a single quote too many.

I would like to hand out points to all who helped, since there was no definitive answer.  How do I do
that?  Thanks for all your help. "

Michel
Thank you for pointing this out, Michel, I am splitting points to close this shortly.
Moondancer - EE Moderator
Points for mplungjan -> qid=20275465
Points for dejthor -> qid=20275466
Points for Patterson -> qid=20275468

The other expert was awarded points within this question.

In addition, g118481, please check your profile, I added points to your available points for the missing accruals.

Moondancer - EE Moderator
dejthor .... please comment here to collect your points.
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=20275466