Sorry, I'm about to post a big function, but I'm struggling with it:
I have a dialog box which takes mutliple field values from a webpage, and lets me edit them.
I want, when selecting a template email from the second box ("pendingmailbox", also see capture) and selecting a language, that the template email be displayed in the "additionnal comments" after being saved in a variable.
Also, when selecting something from the first box ("answerbox"), it should be displayed in the last box ("worknotesbox") AFTER whatever was in there (taken from the page) AND all that saved in a variable to return to the webpage field.
I have tried everything from "add_click" pointing to "$handler_on_click" to add_checked changed({function}).
Any pointers welcome.
Thank you!
Clovis
![dialog box][1]
#Generated Form Function
function chooseanswer-box {
########################################################################
# Code Generated By: SAPIEN Technologies PrimalForms (Community Edition) v1.0.10.0
# Generated On: 24/08/2012 15:40
# Generated By: ccormeni
########################################################################
param
([Parameter(Mandatory=$false)]
[String]$item1,
[String]$item2,
[String]$item3,
[String]$item4,
[String]$item5,
[String]$item6,
[String]$item7,
[String]$item8,
[String]$item9,
[String]$item10
)
$pendingitem1="No answer"
$pendingitem2="Incorrect number"
$pendingitem3="No number in case notes"
$pendingitem4="I will call you at..."
$pendingitem5="Please answer when available"
$orignotes=$IE.document.GetElementByID("incident.work_notes").value
#region Import the Assemblies
[reflection.assembly]::loadwithpartialname("System.Windows.Forms") | Out-Null
[reflection.assembly]::loadwithpartialname("System.Drawing") | Out-Null
#endregion
#region Generated Form Objects
$pendingcheckbox = New-Object System.Windows.Forms.CheckBox
$form1 = New-Object System.Windows.Forms.Form
$comments = New-Object System.Windows.Forms.RichTextBox
$label4 = New-Object System.Windows.Forms.Label
$worknoteslabel = New-Object System.Windows.Forms.Label
$shortdesclabel = New-Object System.Windows.Forms.Label
$dateTimePicker1 = New-Object System.Windows.Forms.DateTimePicker
$answerlabel = New-Object System.Windows.Forms.Label
$groupBox1 = New-Object System.Windows.Forms.GroupBox
$es = New-Object System.Windows.Forms.RadioButton
$de = New-Object System.Windows.Forms.RadioButton
$fr = New-Object System.Windows.Forms.RadioButton
$en = New-Object System.Windows.Forms.RadioButton
$appointmentcheckbox = New-Object System.Windows.Forms.CheckBox
$worknotesbox = New-Object System.Windows.Forms.RichTextBox
$shortdesc = New-Object System.Windows.Forms.RichTextBox
$pendingmailbox = New-Object System.Windows.Forms.ListBox
$answerbox = New-Object System.Windows.Forms.ListBox
$InitialFormWindowState = New-Object System.Windows.Forms.FormWindowState
$ok = New-Object System.Windows.Forms.Button
#endregion Generated Form Objects
#----------------------------------------------
#Generated Event Script Blocks
#----------------------------------------------
#Provide Custom Code for events specified in PrimalForms.
#$listBox1.SelectedIndexChanged += new System.EventHandler(this.OnSelectionIndexChanged);
$handler_listBox1_SelectedIndexChanged=
{
#TODO: Place custom script here
}
$handler_label2_Click=
{
#TODO: Place custom script here
}
$handler_pendingcheckbox_CheckedChanged=
{
#TODO: Place custom script here
$pendingmailbox.Enabled = $pendingcheckbox.checked
$pendingmailbox.disabled = $pendingcheckbox.unchecked
}
$handler_appointmentcheckbox_CheckedChanged=
{
#TODO: Place custom script here
$dateTimePicker1.Enabled = $appointmentcheckbox.checked
$dateTimePicker1.disabled = $appointmentcheckbox.unchecked
}
$handler_pendingmailbox_SelectedIndexChanged=
{
$comments.Text = $iecomments
}
$handler_label1_Click=
{
#TODO: Place custom script here
}
$handler_en_CheckedChanged=
{
}
$handler_de_CheckedChanged=
{
if ($de.checked -eq $true){
echo "DE"
Set-Variable choicelang("DE") -scope global
}
}
$handler_fr_CheckedChanged=
{
if ($fr.checked -eq $true){
echo "FR"
Set-Variable choicelang("FR") -scope global
choose-mail
}
}
$handler_es_CheckedChanged=
{
if ($es.checked -eq $true){
echo "ES"
Set-Variable choicelang("ES") -scope global
choose-mail
}
}
$ok_Onclick=
{
#set-variable orignotes ($worknotesbox.text) -Scope global
#set-variable finaldesc ($shortdesc.Text) -Scope global
#set-variable finalcomments ($comments.Text) -Scope global
}
$OnLoadForm_StateCorrection=
{#Correct the initial state of the form to prevent the .Net maximized form issue
$form1.WindowState = $InitialFormWindowState
}
#----------------------------------------------
#region Generated Form Code
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 616
$System_Drawing_Size.Width = 388
$form1.ClientSize = $System_Drawing_Size
$form1.DataBindings.DefaultDataSourceUpdateMode = 0
$form1.Name = "form1"
$form1.Text = "Primal Form"
$answerlabel.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 13
$System_Drawing_Point.Y = 13
$answerlabel.Location = $System_Drawing_Point
$answerlabel.Name = "answerlabel"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 23
$System_Drawing_Size.Width = 253
$answerlabel.Size = $System_Drawing_Size
$answerlabel.TabIndex = 0
$answerlabel.Text = "What answer did you get?"
$answerlabel.add_Click($handler_label1_Click)
$form1.Controls.Add($answerlabel)
[void] $answerBox.Items.Add("$item1")
[void] $answerBox.Items.Add("$item2")
[void] $answerBox.Items.Add("$item3")
[void] $answerBox.Items.Add("$item4")
[void] $answerBox.Items.Add("$item5")
[void] $answerBox.Items.Add("$item6")
[void] $answerBox.Items.Add("$item7")
[void] $answerBox.Items.Add("$item8")
[void] $answerBox.Items.Add("$item9")
[void] $answerBox.Items.Add("$item10")
$answerbox.DataBindings.DefaultDataSourceUpdateMode = 0
$answerbox.FormattingEnabled = $True
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 12
$System_Drawing_Point.Y = 41
$answerbox.Location = $System_Drawing_Point
$answerbox.Name = "answerbox"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 95
$System_Drawing_Size.Width = 254
$answerbox.Size = $System_Drawing_Size
$answerbox.TabIndex = 1
$answerbox.add_SelectedIndexChanged({$choice=$answerbox.SelectedItem;choose-answer2;$worknotesbox.Text="$orignotes`n$answernotes";$form1.Controls.Add($worknotesbox); echo "test"})
$answerbox.Add_Click({$choice=$answerbox.SelectedItem;choose-answer2;$worknotesbox.Text="$orignotes`n$answernotes";$form1.Controls.Add($worknotesbox); echo "test"
})
$form1.Controls.Add($answerbox)
function choose-answer2(){
echo "test2"
if ($choice -eq "No answer"){
#if ($IE.document.GetElementById("incident.work_notes").value -ne $null){
#$z=$IE.document.GetElementById("incident.work_notes").value
#$y="$z`n"
#}
if ($Call -eq "(Business phone)"){
$answernotes=$y+"Called user $call - $correctnumber. No answer."
}
elseif ($Call -eq "(Mobile phone)") {
$answernotes=$y+"Called user $call - $correctnumber. No answer."
}
else {
$answernotes=$y+"Called user $call. No answer."
}
#$p=$answernotes
#$q="$p`n$textbox"
#$answernotes=$q
$save=$IE.document.GetElementsByTagname("button") | select -First 2 |select -Last 1
if ($saveinc -eq $true) {
$save.click()
}
#set-status
}
elseif ($choice -eq "Incorrect number"){
if ($IE.document.GetElementById("incident.work_notes").value -ne $null){
$z=$IE.document.GetElementById("incident.work_notes").value
$y="$z`n"}
if ($Call -eq "(Business phone)"){
$answernotes=$y+"Called user $call - $correctnumber. Incorrect number."
}
elseif ($Call -eq "(Mobile phone)") {
$answernotes=$y+"Called user $call - $correctnumber. Incorrect number."
}
else {
$answernotes=$y+"Called user $call. Incorrect number."
}
#$p=$answernotes
#$q="$p`n$textbox"
#$answernotes=$q
$save=$IE.document.GetElementsByTagname("button") | select -First 2 |select -Last 1
if ($saveinc -eq $true) {
$save.click()
}
#set-status
}
elseif ($choice -eq "No Answer. Left VM"){
if ($IE.document.GetElementById("incident.work_notes").value -ne $null){
$z=$IE.document.GetElementById("incident.work_notes").value
$y="$z`n"}
if ($Call -eq "(Business phone)"){
$answernotes=$y+"Called user $call - $correctnumber. No Answer. Left VM"
}
elseif ($Call -eq "(Mobile phone)") {
$answernotes=$y+"Called user $call - $correctnumber. No Answer. Left VM"
}
else {
$answernotes=$y+"Called user $call. No Answer. Left VM"
}
#$p=$answernotes
#$q="$p`n$textbox"
$IE.document.GetElementById("incident.work_notes").value=$q
$save=$IE.document.GetElementsByTagname("button") | select -First 2 |select -Last 1
if ($saveinc -eq $true) {
$save.click()
}
#set-status
}
elseif ($choice -eq "Answer: Working on case"){
if ($IE.document.GetElementById("incident.work_notes").value -ne $null){
$z=$IE.document.GetElementById("incident.work_notes").value
$y="$z`n"}
if ($Call -eq "(Business phone)"){
$answernotes=$y+"Called user $call - $correctnumber. Working on case."
}
elseif ($Call -eq "(Mobile phone)") {
$answernotes=$y+"Called user $call - $correctnumber. Working on case."
}
else {
$answernotes=$y+"Called user $call. Working on case."
}
#$p=$answernotes
#$q="$p`n$textbox"
#$answernotes=$q
$save=$IE.document.GetElementsByTagname("button") | select -First 2 |select -Last 1
if ($saveinc -eq $true) {
$save.click()
}
#set-status
}
elseif ($choice -eq "Answer: Call back later"){
if ($IE.document.GetElementById("incident.work_notes").value -ne $null){
$z=$IE.document.GetElementById("incident.work_notes").value
$y="$z`n"}
if ($Call -eq "(Business phone)"){
$answernotes=$y+"Called user $call - correctnumber. Told me to call back later."
}
elseif ($Call -eq "(Mobile phone)") {
$answernotes=$y+"Called user $call - correctnumber. Told me to call back later."
}
else {
$answernotes=$y+"Called user $call. Told me to call back later."
}
#$p=$answernotes
#$q="$p`n$textbox"
#$answernotes=$q
$save=$IE.document.GetElementsByTagname("button") | select -First 2 |select -Last 1
}
if ($saveinc -eq $true) {
$save.click()
}
#set-status
}
$pendingcheckbox.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 12
$System_Drawing_Point.Y = 142
$pendingcheckbox.Location = $System_Drawing_Point
$pendingcheckbox.Name = "pendingcheckbox"
$pendingcheckbox.checked = $false
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 24
$System_Drawing_Size.Width = 254
$pendingcheckbox.Size = $System_Drawing_Size
$pendingcheckbox.TabIndex = 2
$pendingcheckbox.Text = "Set to Pending user"
$pendingcheckbox.UseVisualStyleBackColor = $True
#$pendingcheckbox.Add_CheckstateChanged({$handler_pendingcheckbox_CheckedChanged})
$pendingcheckbox.Add_Click({$pendingmailbox.Enabled = $pendingcheckbox.checked
})
$form1.Controls.Add($pendingcheckbox)
$groupBox1.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 273
$System_Drawing_Point.Y = 172
$groupBox1.Location = $System_Drawing_Point
$groupBox1.Name = "groupBox1"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 100
$System_Drawing_Size.Width = 112
$groupBox1.Size = $System_Drawing_Size
$groupBox1.TabIndex = 4
$groupBox1.TabStop = $False
$groupBox1.Text = "Email Language"
$es.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 61
$System_Drawing_Point.Y = 51
$es.Location = $System_Drawing_Point
$es.Name = "es"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 24
$System_Drawing_Size.Width = 42
$es.Size = $System_Drawing_Size
$es.TabIndex = 5
$es.TabStop = $True
$es.Text = "ES"
$es.UseVisualStyleBackColor = $True
#$es.Add_click({
$es.Add_Click({Set-Variable choicelang("ES") -scope global;echo $choicelang;choose-mail})
$groupBox1.Controls.Add($es)
$de.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 7
$System_Drawing_Point.Y = 51
$de.Location = $System_Drawing_Point
$de.Name = "de"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 24
$System_Drawing_Size.Width = 47
$de.Size = $System_Drawing_Size
$de.TabIndex = 6
$de.TabStop = $True
$de.Text = "DE"
$de.UseVisualStyleBackColor = $True
$de.Add_Click({
If ($de.checked -eq $true) {
echo "DE"
Set-Variable choicelang("DE") -scope global
choose-mail
$form1.add_Load($Form_StateCorrection_Load)
}
})
$groupBox1.Controls.Add($de)
$fr.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 61
$System_Drawing_Point.Y = 20
$fr.Location = $System_Drawing_Point
$fr.Name = "fr"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 24
$System_Drawing_Size.Width = 42
$fr.Size = $System_Drawing_Size
$fr.TabIndex = 7
$fr.TabStop = $True
$fr.Text = "FR"
$fr.UseVisualStyleBackColor = $True
$fr.Add_Click({$handler_fr_CheckedChanged})
#If ($fr.checked -eq $true) {
# echo "FR"
# Set-Variable choicelang("FR") -scope global
# choose-mail
#}
#})
$groupBox1.Controls.Add($fr)
$en.DataBindings.DefaultDataSourceUpdateMode = 0
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 7
$System_Drawing_Point.Y = 20
$en.Location = $System_Drawing_Point
$en.Name = "en"
$en.checked = $true
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 24
$System_Drawing_Size.Width = 47
$en.Size = $System_Drawing_Size
$en.TabIndex = 8
$en.TabStop = $True
$en.Text = "EN"
$en.UseVisualStyleBackColor = $True
$en.Add_click({
If ($en.checked -eq $true) {
echo "EN"
Set-Variable choicelang("EN") -scope global
choose-mail
}
})
$groupBox1.Controls.Add($en)
$form1.Controls.Add($groupBox1)
[void] $pendingmailBox.Items.Add("$pendingitem1")
[void] $pendingmailBox.Items.Add("$pendingitem2")
[void] $pendingmailBox.Items.Add("$pendingitem3")
[void] $pendingmailBox.Items.Add("$pendingitem4")
[void] $pendingmailBox.Items.Add("$pendingitem5")
[void] $pendingmailBox.Items.Add("$pendingitem6")
$pendingmailbox.DataBindings.DefaultDataSourceUpdateMode = 0
$pendingmailbox.FormattingEnabled = $True
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 12
$System_Drawing_Point.Y = 172
$pendingmailbox.enabled = $false
$pendingmailbox.Location = $System_Drawing_Point
$pendingmailbox.Name = "pendingmailbox"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 95
$System_Drawing_Size.Width = 254
$pendingmailbox.Size = $System_Drawing_Size
$pendingmailbox.TabIndex = 3
function choose-mail(){
$choicepending=$pendingmailbox.SelectedItem
echo $choicepending
If ($choicelang -eq "EN") {
echo "EN"
#list-box -item1 "No answer" -item2 "Incorrect number" -item3 "Number doesn't ring" -item4 "No number in case notes" -item5 "I will call you at..." -item6 "Please answer when available" -text "What email do we send?" -topic "Email" -select "0" -choose "1"
echo $choicelang
If ($choice -eq "No answer"){
$iecomments="Hi,`nI tried to contact you regarding your issue, but you were unavailable.`nPlease reply to this email when you are available and I will call you again.`nYou can also contact me on webex: SSO ID: $sso.`n`nThank you,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No Answer"
}
Elseif ($choicepending -eq "Incorrect number"){
$iecomments="Hi,`nI tried to contact you regarding your issue, but the numbers I have in the system are incorrect.`nPlease reply to this email with a working phone number when you are available and I will call you again.`nYou can also contact me on webex: SSO ID: $sso.`n`nThank you,`n`n$userfullname`nComputacenter Remote Services Team."
echo "Incorrect number"
}
Elseif ($choicepending -eq "No number in case notes"){
$iecomments="Hi,`nI tried to contact you regarding your issue, but there is no phone number for you in the system.`nPlease reply to this email with a working phone number when you are available and I will call you back.`nYou can also contact me on webex: SSO ID: $sso.`n`nThank you,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No number in case notes"
}
Elseif ($choicepending -eq "I will call you at..."){
$iecomments="Hi,`nAs discussed on the phone, I will call you at .`nYou can also reply to this email when you are available and I will call you back.`nYou can also contact me on webex: SSO ID: $sso.`n`nThank you,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No number in case notes"
}
Elseif ($choicepending -eq "Please answer when available"){
$iecomments="Hi,`n, As discussed on the phone, please reply to this email when you are available and I will call you back.`nYou can also contact me on webex: SSO ID: $sso.`n`nThank you,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No number in case notes"
}
}
elseif ($choicelang -eq "DE"){
echo "DE"
#list-box -item1 "No answer" -item2 "Incorrect number" -item3 "Number doesn't ring" -item4 "No number in case notes" -item5 "I will call you at..." -item6 "Please answer when available" -text "What email do we send?" -topic "Email" -select "0" -choose "1"
echo $choicelang
If ($choice -eq "No answer"){
$iecomments="Hallo,`nIch hatte versucht Sie bezüglich Ihres Problems telefonisch zu erreichen. Leider ohne Erfolg.`nBitte antworten Sie auf dieses E-Mail, wenn Sie erreichbar sind und ich melde mich baldmöglichst erneut.`nSie koennen mich auch auf WebEx kontaktieren: SSO ID: $sso.`n`nFreundliche Grüsse`n`n$userfullname`nComputacenter Remote Services Team."
echo "No answer"
}
Elseif ($choicepending -eq "Incorrect number"){
$iecomments="Hallo,`nIch hatte versucht Sie telefonisch zu erreichen, leider sind die uns zu Verfügung stehenden Nummern nicht aktuell oder funktionieren derzeit nicht korrekt.`nBitte antworten Sie auf dieses E-Mail, nennen uns eine intakte Nummer und teilen uns mit wann Sie erreichbar sind.`nWir werden uns dann möglichst bald mit Ihnen in Verbindung setzen.`nAlternativ können Sie mich auch gerne auf WebEx anschreiben. SSO ID: $sso.`n`nFreundliche Grüsse,`n`n$userfullname`nComputacenter Remote Services Team."
echo "Incorrect number"
}
Elseif ($choicepending -eq "No number in case notes"){
$iecomments="Hallo,`nIch hatte versucht Sie zu kontaktieren, leider stehen uns keine Telefonnummern zur Verfügung.`nBitte antworten Sie auf dieses E-Mail mit einer funktionierenden Nummer und teilen uns mit wann Sie erreichbar sind.`nWir werden uns dann möglichst bald mit Ihnen in Verbindung setzen.`nAlternativ können Sie mich auch gerne auf WebEx anschreiben. SSO ID: $sso.`n`nFreundliche Grüsse,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No number in case notes"
}
Elseif ($choicepending -eq "I will call you at..."){
$iecomments="Hallo,`nIch hatte versucht Sie zu kontaktieren, leider stehen uns keine Telefonnummern zur Verfügung.`nBitte antworten Sie auf dieses E-Mail mit einer funktionierenden Nummer und teilen uns mit wann Sie erreichbar sind.`nWir werden uns dann möglichst bald mit Ihnen in Verbindung setzen.`nAlternativ können Sie mich auch gerne auf WebEx anschreiben. SSO ID: $sso.`n`nFreundliche Grüsse,`n`n$userfullname`nComputacenter Remote Services Team."
echo "I will call you at..."
}
Elseif ($choicepending -eq "Please answer when available"){
$iecomments="Hallo,`nIch hatte versucht Sie zu kontaktieren, leider stehen uns keine Telefonnummern zur Verfügung.`nBitte antworten Sie auf dieses E-Mail mit einer funktionierenden Nummer und teilen uns mit wann Sie erreichbar sind.`nWir werden uns dann möglichst bald mit Ihnen in Verbindung setzen.`nAlternativ können Sie mich auch gerne auf WebEx anschreiben. SSO ID: $sso.`n`nFreundliche Grüsse,`n`n$userfullname`nComputacenter Remote Services Team."
echo "Please answer when available"
}
}
elseif ($choicelang -eq "FR"){
echo "FR"
#list-box -item1 "No answer" -item2 "Incorrect number" -item3 "Number doesn't ring" -item4 "No number in case notes" -item5 "I will call you at..." -item6 "Please answer when available" -text "What email do we send?" -topic "Email" -select "0" -choose "1"
echo $choicelang
If ($choice -eq "No answer"){
$iecomments="Bonjour,`nJ'ai essayé de vous contacter concernant votre problème informatique.`nMerci de répondre à cet email quand vous serez disponible et je vous rappelerai.`nVous pouvez aussi me contacter sur webex: SSO ID: $sso.`n`nMerci,`n`n$userfullname`nEquipe de Services à Distance Computacenter."
echo "No Answer"
}
Elseif ($choicepending -eq "Incorrect number"){
$iecomments="Bonjour,`nJ'ai essayé de vous contacter concernant votre problème informatique, mais le(s) numéro(s) de téléphone que j'ai est (sont) incorrect(s).`nMerci de répondre à cet email avec un numéro de téléphone valide quand vous serez disponible et je vous rappelerai.`nVous pouvez aussi me contacter sur webex: SSO ID: $sso.`n`nMerci,`n`n$userfullname`nEquipe de Services à Distance Computacenter."
echo "No Answer"
echo "Incorrect number"
}
Elseif ($choicepending -eq "No number in case notes"){
$iecomments="Bonjour,`nJ'ai essayé de vous contacter concernant votre problème informatique, mais il n'y a pas de numéro de téléphone pour vous dans le système.`nMerci de répondre à cet email avec un numéro de téléphone valide quand vous serez disponible et je vous rappelerai.`nVous pouvez aussi me contacter sur webex: SSO ID: $sso.`n`nMerci,`n`n$userfullname`nEquipe de Services à Distance Computacenter."
echo "No number in case notes"
}
Elseif ($choicepending -eq "I will call you at..."){
$iecomments="Bonjour,`nComme convenu par téléphone, je vous rappellerai à .`nVous pouvez aussi répondre à cet email quand vous serez disponible et je vous rappelerai.`nVous pouvez aussi me contacter sur webex: SSO ID: $sso.`n`nMerci,`n`n$userfullname`nEquipe de Services à Distance Computacenter."
echo "No number in case notes"
}
Elseif ($choicepending -eq "Please answer when available"){
$iecomments="Bonjour,`nComme convenu par téléphone,merci de répondre à cet email quand vous serez disponible et je vous rappelerai.`nVous pouvez aussi me contacter sur webex: SSO ID: $sso.`n`nMerci,`n`n$userfullname`nEquipe de Services à Distance Computacenter."
echo "No number in case notes"
}
}
elseif ($choicelang -eq "ES"){
echo "ES"
#list-box -item1 "No answer" -item2 "Incorrect number" -item3 "Number doesn't ring" -item4 "No number in case notes" -item5 "I will call you at..." -item6 "Please answer when available" -text "What email do we send?" -topic "Email" -select "0" -choose "1"
echo $choicelang
If ($choicepending -eq "No answer"){
$iecomments="Hola,`nle he llamado referente a su incidente pero no estaba disponible.`nConteste a este email cuando pueda y le contactaré de nuevo.`n`nGracias,`n`n$userfullname`nComputacenter Remote Services Team."
echo "No Answer"
}
Elseif ($choicepending -eq "Incorrect number"){
$iecomments=“Hola, he intentado ponerme en contacto con usted referente a su incidente, pero el número de teléfono registrado en el sistema es incorrecto.`nLe ruego conteste a este email indicándonos cuál es el número de teléfono valido.`nTambién puede contactarme por WebEX: SSO ID: $sso. Gracias ,`n`n$userfullname`nComputacenter Remote Services Team."
echo "Incorrect number"
}
Elseif ($choicepending -eq "No number in case notes"){
$iecomments=“Hola, he intentado ponerme en contacto con usted referente a su incidente, pero el número de teléfono registrado en el sistema no funciona.`nLe ruego conteste a este email indicándonos cuál es el número de teléfono valido para poder contactarle.`nTambién puede contactarme por WebEX: SSO ID: $sso.`n`nGracias,`n`n$userfullname`nComputacenter Remote Services Team."
}
Elseif ($choicepending -eq "I will call you at..."){
$iecomments=“Hola, Trás nuestra conversación telefonica, le indico que le contactaré al: XXXXXXXX .`nAlternativamente puede contactarme contestando a este email cuando esté disponible.`nTambién puede contactarme por WebEX: SSO ID: $sso.`n`nGracias,`n`n$userfullname`nComputacenter Remote Services Team."
}
Elseif ($choicepending -eq "Please answer when available"){
$iecomments=“Hola, Trás nuestra conversación telefonica, le ruego conteste a este email cuando esté disponible para llamarlo por teléfono.`nTambién puede contactarme por WebEX: SSO ID: $sso.`n`nGracias,`n`n$userfullname`nComputacenter Remote Services Team."
}
}
}
$pendingmailbox.Add_click({$comments.Text = $iecomments
$comments.Refresh()
})
$form1.Controls.Add($pendingmailbox)