Readall
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 10 articles for 0.000 sec
Folder views after Exchange migration from 5.5 to Exchange 2003     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: eddieaikau
Date: Jun 10, 2008 05:15

....GetDefaultFolder(6).Views Set objNewView = objViews.Add(Name:="RIM Fields", _ ViewType:=olTableView, SaveOption:=olViewSaveOptionAllFoldersOfType) objNewView.XML = fs.opentextfile("<insert file ").readall objNewView.Save End Sub AND THE XML FILE READS LIKE THIS BELOW... <?xml version="1.0" ?> - <view type="table"> <viewname>RIM ...
Show full article (8.28Kb)
PublishObject add chart to outlook     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: stevenleongusa
Date: Feb 13, 2008 17:08

...", "").Publish True Set FStream = FSObject.OpenTextFile(htmlFile, 1) strHTMLBody = FStream.ReadAll FStream.Close Set FStream = Nothing Set FStream = FSObject.OpenTextFile(chartFile, 1) strHTMLBody = FStream.ReadAll FStream.Close Set FStream = Nothing With MailItem .HTMLBody = strHTMLBody ....
Show full article (0.82Kb)
Re: No image when stationery applied via code     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: Sue Mosher [MVP-Outlook]
Date: Jan 22, 2008 20:56

... Dim fso Dim Ts Dim Signature As String Set fso = CreateObject("Scripting.FileSystemObject") Set Ts = fso.OpenTextFile("F:\Email Stationery\Email_Template.htm", 1) Signature = Ts.ReadAll ' [Body] is a tag in html file as a placeholder to actual body text , [Body] is replaced with actual body text here If IsNull(EmailBody) Then ...
Show full article (3.29Kb) · Show article thread
RE: No image when stationery applied via code     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: B Clumpner
Date: Jan 22, 2008 18:17

... Dim fso Dim Ts Dim Signature As String Set fso = CreateObject("Scripting.FileSystemObject") Set Ts = fso.OpenTextFile("F:\Email Stationery\Email_Template.htm", 1) Signature = Ts.ReadAll ' [Body] is a tag in html file as a placeholder to actual body text , [Body] is replaced with actual body text here If IsNull(EmailBody) Then Signature = ...
Show full article (2.66Kb) · Show article thread
Image not displaying when applying stationery via code     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: John
Date: Nov 21, 2007 14:33

...", 1) Set OutlookApp = New Outlook.Application Set EM = OutlookApp.CreateItem(olMailItem) With EM .To = "user@company.com" .Subject = "Any Subject" .HTMLBody = Ts.ReadAll .Send End With Content of F:\Email Stationery\Email_Template.htm ================================== <HTML> <HEAD> </HEAD> <BODY> <img src="file:///F|/MyFolder/MyImage.jpg" ...
Show full article (0.92Kb)
No image when stationery applied via code     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: John
Date: Nov 21, 2007 04:21

...(EmailBody) As String Dim fso Dim Ts Dim Signature As String Set fso = CreateObject("Scripting.FileSystemObject") Set Ts = fso.OpenTextFile("F:\Email Stationery\Email_Template.htm", 1) Signature = Ts.ReadAll ' [Body] is a tag in html file as a placeholder to actual body text , [Body] is replaced with actual body text here If IsNull(EmailBody) Then Signature = ...
Show full article (2.16Kb)
Asp - unir dois RTF e gerar outro RTF     

Group: microsoft.public.br.asp · Group Profile · Search for Readall in microsoft.public.br.asp
Author: Marco Aurelio
Date: Sep 12, 2007 07:15

... esta ficando de cabeça para baixo.. e os ões esta ficando `oes... O que preciso fazer pra solucionar isto? segue abaixo parte do script asp: If bExibirTextoServico=1 Then Set ts=fso.OpenTextFile(cCaminho & "\scripts\" & RS("IdServico") & ".rtf", 1) cTextoTecnico=cTextoTecnico & ts.ReadAll cConteudo=replace(cConteudo,"cTextoTecnico",cTextoTecnico) 'fim End If
Show full article (0.65Kb)
Have all email addresses in one email using Outlook called from Access 03     

Group: microsoft.public.outlook · Group Profile · Search for Readall in microsoft.public.outlook
Author: Ultraviolet47
Date: Nov 17, 2006 10:45

... we got a file, we can open it up. Set MyBody = fso.OpenTextFile(BodyFile, ForReading, False, TristateUseDefault) ' and read it into a variable. MyBodyText = MyBody.ReadAll ' and close the file. MyBody.Close ' Now, we open Outlook for our own device.. Set MyOutlook = New Outlook.Application ' Set up the database and query connections Set ...
Show full article (3.35Kb)
Re: SQLXMLBulkLoad works with file, but not with stream     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Readall in microsoft.public.sqlserver.xml
Author: Mark
Date: Sep 13, 2006 02:12

...); ObjectName = "ADODB.Stream"; objStrm = new ActiveXObject(ObjectName); objFile = objFileSystem.OpenTextFile(this.ProcessingFile); objStrm.Open(); objStrm.WriteText(objFile.ReadAll()); objStrm.Position = 0; this.xmlBulkLoadObj.Execute(this.XSDFile, objStrm); The XML file is shown below. I don't know if I should use the ...
Show full article (2.10Kb) · Show article thread
SQLXMLBulkLoad works with file, but not with stream     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Readall in microsoft.public.sqlserver.xml
Author: Mark
Date: Sep 12, 2006 09:34

... ActiveXObject(ObjectName); ObjectName = "ADODB.Stream"; objStrm = new ActiveXObject(ObjectName); objFile = objFileSystem.OpenTextFile(this.ProcessingFile); objStrm.Open(); objStrm.WriteText(objFile.ReadAll()); objStrm.Position = 0; this.xmlBulkLoadObj.Execute(this.XSDFile, objStrm); The XML file is shown below. I don't know if I should use...
Show full article (1.81Kb)