J
jonathan
Does anyone know how to access a cell from Excel and
translate the contents of that cell to text/String?
i.e. if Cell B1 contains "Apple", how can you get the
String "Apple" from Cell B1 after you pasted it in PP.
the snippet is something like this:
Set slide3Table = wbDownload.Sheets("CODC")
slide3Table.Range("C49").CopyPicture
/* I need to know what text/string is in C49 */
Dim slide3 As Slide
Set slide3 = ActivePresentation.Slides("CODC")
Call pastePPTShape(slide3, "Title", 215.88, 4, 38.88,
287.88)
MsgBox "The import completed successfully"
translate the contents of that cell to text/String?
i.e. if Cell B1 contains "Apple", how can you get the
String "Apple" from Cell B1 after you pasted it in PP.
the snippet is something like this:
Set slide3Table = wbDownload.Sheets("CODC")
slide3Table.Range("C49").CopyPicture
/* I need to know what text/string is in C49 */
Dim slide3 As Slide
Set slide3 = ActivePresentation.Slides("CODC")
Call pastePPTShape(slide3, "Title", 215.88, 4, 38.88,
287.88)
MsgBox "The import completed successfully"