Click here to Skip to main content
16,010,650 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Dialing a Phone Number through PC Pin
keninfo25-Apr-07 22:20
keninfo25-Apr-07 22:20 
QuestionDataGridView Doubt Pin
A.Muthunagai25-Apr-07 19:24
A.Muthunagai25-Apr-07 19:24 
Questioncreating a design time only property for a usercontrol Pin
lee2325-Apr-07 18:58
lee2325-Apr-07 18:58 
AnswerRe: creating a design time only property for a usercontrol Pin
Dave Kreskowiak26-Apr-07 4:46
mveDave Kreskowiak26-Apr-07 4:46 
Questionstring manipulation Pin
uglyeyes25-Apr-07 18:12
uglyeyes25-Apr-07 18:12 
AnswerRe: string manipulation Pin
Brady Kelly25-Apr-07 19:23
Brady Kelly25-Apr-07 19:23 
GeneralRe: string manipulation Pin
uglyeyes25-Apr-07 19:39
uglyeyes25-Apr-07 19:39 
GeneralRe: string manipulation Pin
Brady Kelly25-Apr-07 20:03
Brady Kelly25-Apr-07 20:03 
How are you moving the text into Powerpoint? What method calls are you using? Because it will be somewhere close to here that you will probably select the text between hashes, using the positions of the hashes in the original text, and set the bold attribute of the font for that text.

Example (pseudo code, you'll have to read up on how to really do this in Powerpoint VBA):

Dim oldText as string
Dim newText as String
Dim start as Integer, end as Integer

oldText = "I want #this# word bold"
start = Pos("#", oldText) ' Get pos of first #
end = Pos("#", oldtext, start) ' Get pos of first # after start pos.
newText = Strip(oldText, "#") ' Removed # from text
PPSlide.Insert(newText)
PPSlide.Select(newText, start, end)
PPSLide.Selection.Fond.Bold = true

"A little learning is a dangerous thing; drink deep, or taste not the Pierian spring: there shallow draughts intoxicate the brain, and drinking largely sobers us again.", by Alexander Pope

My Blog

GeneralRe: string manipulation Pin
uglyeyes25-Apr-07 20:21
uglyeyes25-Apr-07 20:21 
GeneralRe: string manipulation Pin
uglyeyes26-Apr-07 18:36
uglyeyes26-Apr-07 18:36 
QuestionConversion problem Pin
Xmen Real 25-Apr-07 16:49
professional Xmen Real 25-Apr-07 16:49 
AnswerRe: Conversion problem Pin
Christian Graus25-Apr-07 23:30
protectorChristian Graus25-Apr-07 23:30 
GeneralRe: Conversion problem Pin
Xmen Real 25-Apr-07 23:52
professional Xmen Real 25-Apr-07 23:52 
GeneralRe: Conversion problem Pin
Christian Graus26-Apr-07 0:02
protectorChristian Graus26-Apr-07 0:02 
GeneralRe: Conversion problem Pin
Xmen Real 26-Apr-07 1:09
professional Xmen Real 26-Apr-07 1:09 
GeneralRe: Conversion problem Pin
Christian Graus26-Apr-07 11:10
protectorChristian Graus26-Apr-07 11:10 
GeneralRe: Conversion problem Pin
Xmen Real 26-Apr-07 14:42
professional Xmen Real 26-Apr-07 14:42 
QuestionHow to display message frome client side? [modified] Pin
braleping25-Apr-07 15:46
braleping25-Apr-07 15:46 
AnswerRe: How to display message frome client side? Pin
Dave Kreskowiak26-Apr-07 4:38
mveDave Kreskowiak26-Apr-07 4:38 
GeneralRe: How to display message frome client side? Pin
braleping26-Apr-07 4:48
braleping26-Apr-07 4:48 
GeneralRe: How to display message frome client side? Pin
Dave Kreskowiak26-Apr-07 13:47
mveDave Kreskowiak26-Apr-07 13:47 
GeneralRe: How to display message frome client side? Pin
braleping26-Apr-07 16:15
braleping26-Apr-07 16:15 
GeneralRe: which method to use? Pin
braleping26-Apr-07 16:18
braleping26-Apr-07 16:18 
GeneralRe: Pin
braleping26-Apr-07 4:49
braleping26-Apr-07 4:49 
AnswerRe: How to display message frome client side? Pin
braleping26-Apr-07 4:52
braleping26-Apr-07 4:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.