Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

html applications menu with vbs? 2

Status
Not open for further replies.

brlissab

Technical User
Oct 11, 2002
35
CH
Hello.
I made today an applications .bat file (choice app based)menu for an user on work, who presents him a list of determinated apps and so on.....but read some stuff about internet explorer scripting model and i start a script who controls user input trough an .html menu.

Code:
Dim shell, oIE
Set shell = WScript.CreateObject("WScript.Shell")
Do While true
' Ouverture d'Internet Explorer
	Set oIE = WScript.CreateObject("InternetExplorer.Application", "IE_")
	oIE.Left = 50        
	oIE.Top = 10
	oIE.Height = 700
	oIE.Width = 550
	oIE.MenuBar = 0         
	oIE.ToolBar = 0
	oIE.StatusBar = 0
	oIE.navigate GetPath() & "test44.htm"
	oIE.Visible = 2      
	Do While (oIE.Busy)    
		WScript.Sleep 200  
		Loop
	shell.AppActivate "AppsForm"
	On Error Resume Next 
	Do                   
		WScript.Sleep 100
		Loop While (oIE.Document.Script.CheckVal() = 0)
	If Err <> 0 Then 
		'Wscript.Echo "On a fermé IE directement"	
		Wscript.quit
		end if
	test=oIE.Document.Script.CheckVal()
	If test=1 Then
		'CloseIE
		'Wscript.quit
		'end if
		
  MsgBox "On a appuyé sur le bouton " & test & VBCRLF & VBCRLF _
'work's 'til here...
& "On a choisi comme application: " & oIE.Document.Appsform.AppsList.value
call FncShell()
End IF
	CloseIE
	loop
'------------------------------------------------------------
' Fonction de récupération du répertoire courant
Function GetPath()
Dim path
path = WScript.ScriptFullName
GetPath = Left(path, InStrRev(path, "\"))
End Function
'------------------------------------------------------------
' Fermeture d'Internet Explorer
Sub CloseIE
oIE.Quit        
Set oIE = Nothing
End Sub
'------------------------------------------------------------
Function FncShell()
Set tempshell = Wscript.CreateObject("Wscript.Shell")
Tempshell.Run "c:\Program Files\Microsoft Office\Office10\Winword.exe"
End function

Code:
<html>
<head>
<title>Test de formulaire avec IE</title>
</head>
<body bgcolor="#FFFFD2" scroll="no">

<script language="VBScript"> 
<!--
Dim ready 

Sub VALID_OnClick
ready=1 
End Sub

Sub ANNUL_OnClick
ready=2 
End Sub


' Initialisation
Sub Window_OnLoad()
ready=0 
End Sub

Public Function CheckVal()
CheckVal=ready
End function
'-->
</script>

<form name="AppsForm">
<h3><center>Liste d'Applications</center></h3><hr>

<select size="1" name="AppsList">
<option value="Opt1">application1</option>
<option value="Opt2">application2</option>
<option value="Opt3">application3</option>
<option value="opt4">application4</option>
</select>

<hr>
<input type="button" value="Valider" name="VALID">
<input type="button" value="Annuler" name="ANNUL">
</form>
</body>
</html>

it works 'til msgbox instruction but doesn't run desired app...probably insn't possible?
My old ms dos window style looks crap...visualy html window is more clear, modern..
thanks for your comments
 
You may try this:
Tempshell.Run """c:\Program Files\Microsoft Office\Office10\Winword.exe"""

And have a look to HTA instead of HTML ...

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
thank you for your advices...my code is quite weak(i think so) so your advices are great...pleased to be on a forum with really it pros...
So, meanwhile made a batch with choice tool but looks a bit crap....
but it works and i was running out time ...
it got's a problem when quit cmd...a message tells to force apps to terminate or cancel...
also i made a .hta who works fine 'till i put a sub to force the window resizing....

Code:
<head>
<title>Applications List</title>
<HTA:Application
	applicationname="Liste apps"
	Scroll="No"
	>
	</head>
<body>
</body>
</html>

<script language='VBScript'>
      Function Window_OnLoad()
          'Set Window Size and Location
  
          Window.ResizeTo 290, 600
          Window.moveTo (screen.width-240)/2, (screen.height-600)/2
      
      End Function
 </script>


<OBJECT ID="SW"
        ViewAsText
        CLASSID="clsid:13709620-C279-11CE-A49E-444553540000">
</OBJECT>
<br>
<input type="button" value="OUVRIR Word"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\winword.exe');"><br/>     
<br>
<input type="button" value="OUVRIR Excel"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\Excel.exe');"></br>
<br>     
<input type="button" value="OUVRIR Access"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\Access.exe');"></br>

<br>     
<input type="button" value="OUVRIR Another application"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\');"></br>


<body>
</body>
</html>

 
The first problem is you don't have an <HTML> tag.
Code:
<head>
<title>Applications List</title>
<HTA:Application
    applicationname="Liste apps"
    Scroll="No"
    >
    </head>
Body tag # 1
Code:
<body>
</body>
End of HTML tag. You never started an HTML tag.
Code:
</html>
Your script tags should be inbetween the head tags. Not floating out there.
Code:
<script language='VBScript'>
      Function Window_OnLoad()
          'Set Window Size and Location
  
          Window.ResizeTo 290, 600
          Window.moveTo (screen.width-240)/2, (screen.height-600)/2
      
      End Function
 </script>
Not sure what this is.
Code:
<OBJECT ID="SW"
        ViewAsText
        CLASSID="clsid:13709620-C279-11CE-A49E-444553540000">
</OBJECT>
Revised buttons for buttonsid_OnClick subroutines.
Code:
<br>
<input type="button" value="OUVRIR Word"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\winword.exe');"><br/>     
<br>
<input type="button" value="OUVRIR Excel"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\Excel.exe');"></br>
<br>     
<input type="button" value="OUVRIR Access"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\Access.exe');"></br>

<br>     
<input type="button" value="OUVRIR Another application"
     onclick="SW.ShellExecute('C:\\Program Files\\Microsoft Office\\Office10\\');"></br>
A second set of body tags and a second close HTML tag.
Code:
<body>
</body>
</html>


Try this code:
Code:
<head>
<title>Applications List</title>
<HTA:Application
    applicationname="Liste apps"
    Scroll="No"
    >
<script type="text/vbscript">
      Sub Window_OnLoad()
          'Set Window Size and Location
  
          Window.ResizeTo 290, 600
          Window.moveTo (screen.width-240)/2, (screen.height-600)/2
      End Sub

      Sub butWord_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Program Files\Microsoft Office\Office10\WinWord.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butExcel_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Program Files\Microsoft Office\Office10\Excel.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butAccess_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Program Files\Microsoft Office\Office10\Access.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butAppOth_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Program Files\Microsoft Office\Office10\" & chr(34)
            Set WshShell = Nothing
      End Sub

 </script>
</head>
<body>
<input type="button" id="butWord" value="OUVRIR Word"><br><br>
<input type="button" id="butExcel" value="OUVRIR Excel"><br><br>
<input type="button" id="butAccess" value="OUVRIR Access"><br><br>
<input type="button" id="butAppOth" value="OUVRIR Another application"><br><br>
</body>
</html>
 
Skie,
13709620-C279-11CE-A49E-444553540000 is a clsid for Shell.Application

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
works great! thanks a lot you guys!
Really, my batch gonna disapear...
 
interesting notion starting a script which opens HTML page with code in and calling script maintains control through a loose pass back...
i guess its similar to using wsf with an include file?
has opened a few doors for me with my IE browser session automation so thanks people
 
hi there everyone, finally my project took place in my office,
here's the code. Just one more thing, how to get applications started in first plan?
Thankx
feel free to comment code.

Code:
<html>
<head>
<title>   MENU  AUTOFORMATION  EPIDORGE   </title>
<HTA:Application
    applicationname="AUTOFORMATION"
    Scroll="No"
    >
<script type="text/vbscript">
      Sub Window_OnLoad()
          'Set Window Size and Location
  
          Window.ResizeTo 500, 680
          Window.moveTo (screen.width-500)/2, (screen.height-680)/2
      End Sub

Sub butFileMaker_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation bureautique\bureautique\FieMaker_Pro7\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butHelpFLM_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\FieMaker_Pro7\SommaireFileMakerPro7.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butInDesignCs_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation bureautique\multimedia\_Indesign_CS_Par_l'exemple\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butHelpInDesignCs_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\_Indesign_CS_Par_l'exemple\Sommaire InDesign par exple.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butAcrobat5_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation bureautique\bureautique\Acrobat_5\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

      Sub butHelpAcrobat5_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\Acrobat_5\Sommaire  Acrobat.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butExcel_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation bureautique\bureautique\Excel\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpExcel_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\Excel\Sommaire - Excel.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub


Sub butWord_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\Microsoft_word\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpWord_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\Microsoft_word\Sommaire Word.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butDreamWeaverMX_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Dreamweaver_MX\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpDreamWeaverMX_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Dreamweaver_MX\Sommaire - Dreamweaver MX.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butWindowsXP_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\Windows-Office_XP\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpWindowsXP_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\bureautique\windows-office_XP\Sommaire OfficeXP.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butFlash5_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Flash5\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpFlash5_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Flash5\Sommaire Flash 5.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butFlashMX_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Flash_MX\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpFlashMX_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Flash_Mx\Sommaire Flash MX.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub
      
Sub butIlustrator10_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustrator10\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpIlustrator10_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustrator10\Sommaire Illustrator 10.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butIlustratorv1_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustratorv1\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpIlustratorv1_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustratorv1\Sommaire Illustrator.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butIlustratorv2_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustratorv2\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpIlustratorv2_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Ilustratorv2\Sommaire Illustrator9.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butInDesignCS_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\InDesignCs\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpInDesignCs_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\InDesignCs\Sommaire InDesign CS .pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butIReady_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\IReady_Photo5-5\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpIReady_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\IReady_Photo5-5\Sommaire Photoshop 5 5.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butPhotoShopTa_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Photoshop_CS_Techniques_avancees\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpPhotoShopTa_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\PhotoShop_CS_Techniques_avancees\Sommaire.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butPhotoShopEx_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Photoshop_par_l'exemple\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpPhotoShopEx_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Photoshop_par_l'exemple\Sommaire PS 7 par l'exemple.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butPhotoShopPhoto_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Photoshop_pour_les_photographes\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpPhotoShopPhoto_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\Photoshop_pour_les_photographes\Sommaire.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butPhotoShopCS_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\PhotoshopCS\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpPhotoShopCS_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\PhotoshopCS\Sommaire Photoshop CS.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butPhotoShopELM_OnClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\_Photoshop_Elements_4\Lecteur VTC.exe" & chr(34)
            Set WshShell = Nothing
      End Sub

Sub butHelpPhotoShopELM_onClick()
            Set WshShell = CreateObject("WScript.Shell")
            WshShell.Run chr(34) & "C:\Formation Bureautique\multimedia\_Photoshop_Elements_4\Sommaire.pdf" & chr(34)
            Set WshShell = Nothing
      End Sub

 </script>
</head>
<body background="c:\windows\system32\didacticiels_1.jpg">
<table width="100%"  border="0" align="center" cellpadding="0" cellspacing="10">
<tr>
    <td><input type="button" id="butIndesignCs" value="    InDesign    Cs   "></td>
    <td><img src="help_n.gif" id="butHelpInDesignCs"></td>
    <td><input type="button" id="butFileMaker" value="     FileMaker      7  "></td>
    <td><img src="help_n.gif" id="butHelpFLM"></td>
</tr>
<tr>
   <td><input type="button" id="buDreamWeaver4" value="  DreamWeaver 4  "></td>
   <td><img src="help_n.gif" id="butHelpDreamweaver4"></td>
   <td><input type="button" id="butExcel" value=" MicroSoft    Excel "></td>
   <td><img src="help_n.gif" id="butHelpExcel"></td>
</tr>
<tr>
   <td><input type="button" id="butDreamWeaverMx" value=" DreamWeaver MX"></td>
   <td><img src="Help_n.gif" id="butHelpDreamWeaverMx"></td>
   <td><input type="button" id="butWord" value=" MicroSoft    Word "></td>
   <td><img src="help_n.gif" id="butHelpWord"></td>
</tr>
<tr>
   <td><input type="button" id="butFlash5" value=" Macromedia Flash 5 "></td>
   <td><img src="Help_n.gif" id="butHelpFlash5"></td>
   <td><input type="button" id="butWindowsxp" value="Windows-officeXP"></td>
   <td><img src="help_n.gif" id="butHelpwindowsXP"></td>
</tr>
   <tr>
   <td><input type="button" id="butFlashMX" value="Macromedia FlashMX     "></td>
   <td><img src="Help_n.gif" id="butHelpFlashMX"></td>
   <td><input type="button" id="butAcrobat5" value=" Acrobat Reader 5"></td>
   <td><img src="help_n.gif" id="butHelpAcrobat5"></td>
</tr>
<tr>
   <td><input type="button" id="butIlustrator10" value="  Ilustrator   10  "></td>
   <td><img src="Help_n.gif" id="butHelpIlustrator10"></td>
</tr>
<tr>
   <td><input type="button" id="butIlustratorv1" value="  Ilustrator    V1  "></td>
   <td><img src="Help_n.gif" id="butHelpIlustratorv1"></td>
</tr>

<tr>
   <td><input type="button" id="butIlustratorv2" value="   Ilustrator    V2  "></td>
   <td><img src="Help_n.gif" id="butHelpIlustratorv2"></td>
</tr>

<tr>
   <td><input type="button" id="butInDesignCs" value="   InDesign   CS   "></td>
   <td><img src="Help_n.gif" id="butHelpInDesignCs"></td>
</tr>

<tr>
   <td><input type="button" id="butIready" value="  Iready   Photo  5.5  "></td>
   <td><img src="Help_n.gif" id="butHelpIready"></td>
</tr>

<tr>
   <td><input type="button" id="butPhotoShopTA" value="  PhotoShop   Avancé  "></td>
   <td><img src="Help_n.gif" id="butHelpPhotoShopTA"></td>
</tr>

<tr>
   <td><input type="button" id="butPhotoShopEX" value=" PhotoShop   Exemples "></td>
   <td><img src="Help_n.gif" id="butHelpPhotoShopEX"></td>
</tr>

<tr>
   <td><input type="button" id="butPhotoShopPhoto" value="PhotoShop Photographes"></td>
   <td><img src="Help_n.gif" id="butHelpPhotoShopPhoto"></td>
</tr>

<tr>
   <td><input type="button" id="butPhotoShopCS" value="    PhotoShop     CS    "></td>
   <td><img src="Help_n.gif" id="butHelpPhotoShopCs"></td>
</tr>

<tr>
   <td><input type="button" id="butPhotoShopELM" value="    PhotoShop Elements4    "></td>
   <td><img src="Help_n.gif" id="butHelpPhotoShopELM"></td>
</tr>

</table>
<br>
<br>
<br>
<br>
<center><BUTTON onclick="self.close()">Quitter menu autoformation Epidorge</BUTTON></center>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top