Click here to Skip to main content
15,894,460 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: is call false?? Pin
alpdoruk1-May-07 3:25
alpdoruk1-May-07 3:25 
GeneralRe: is call false?? Pin
Tom John2-May-07 8:54
Tom John2-May-07 8:54 
GeneralRe: is call false?? Pin
ummoops2-May-07 13:04
ummoops2-May-07 13:04 
QuestionDHTML Editing Control - Table Property's? Pin
TimHot30-Apr-07 21:18
TimHot30-Apr-07 21:18 
AnswerRe: DHTML Editing Control - Table Property's? Pin
Dave Kreskowiak1-May-07 3:50
mveDave Kreskowiak1-May-07 3:50 
GeneralRe: DHTML Editing Control - Table Property's? Pin
TimHot1-May-07 3:59
TimHot1-May-07 3:59 
GeneralRe: DHTML Editing Control - Table Property's? Pin
Dave Kreskowiak1-May-07 4:41
mveDave Kreskowiak1-May-07 4:41 
GeneralRe: DHTML Editing Control - Table Property's? Pin
TimHot3-May-07 3:19
TimHot3-May-07 3:19 
Here is the code:

Dim doc As Object = Form1.txt.DOM<br />
Dim selection As Object = doc.selection<br />
Dim tr As Object = selection.createrange<br />
Dim c, r As Integer<br />
Dim HtmlCode As New System.Text.StringBuilder<br />
Dim anp As String = ""<br />
Dim sty As String = ""<br />
Select Case anpass<br />
    Case Style.fest<br />
        anp = breite<br />
    Case Style.inahlt<br />
        anp = ""<br />
    Case Style.Window<br />
        anp = "100%"<br />
        sty = "table-layout:fixed;" & Chr(34)<br />
End Select<br />
HtmlCode.Append("<table style=" & Chr(34) & sty & " border=""thin"" cellspacing = " & cellspan & " rowspacing = " & rowspan & " width= " & anp & " bordercolor=" & bcolor & ">")<br />
For r = 1 To CInt(rows)<br />
    HtmlCode.Append("<tr>")<br />
    For c = 1 To CInt(cols)<br />
        HtmlCode.Append("<td>")<br />
        HtmlCode.Append("</td>")<br />
    Next<br />
    HtmlCode.Append("</tr>")<br />
Next<br />
HtmlCode.Append("</table>")<br />
tr.pasteHTML(HtmlCode.ToString)

Questionvoice command performer Pin
sanket h modi30-Apr-07 21:02
sanket h modi30-Apr-07 21:02 
AnswerRe: voice command performer Pin
Dave Kreskowiak1-May-07 3:49
mveDave Kreskowiak1-May-07 3:49 
QuestionPop up on right click on the whole application window Pin
x86phre3x30-Apr-07 19:35
x86phre3x30-Apr-07 19:35 
AnswerRe: Pop up on right click on the whole application window Pin
Christian Graus30-Apr-07 21:16
protectorChristian Graus30-Apr-07 21:16 
GeneralRe: Pop up on right click on the whole application window Pin
x86phre3x1-May-07 1:48
x86phre3x1-May-07 1:48 
GeneralRe: Pop up on right click on the whole application window Pin
Christian Graus1-May-07 1:54
protectorChristian Graus1-May-07 1:54 
AnswerRe: Pop up on right click on the whole application window Pin
Tom John1-May-07 2:16
Tom John1-May-07 2:16 
GeneralRe: Pop up on right click on the whole application window Pin
x86phre3x1-May-07 20:41
x86phre3x1-May-07 20:41 
GeneralRe: Pop up on right click on the whole application window Pin
Tom John2-May-07 8:48
Tom John2-May-07 8:48 
Questionhow to set a corresponding color on a particular cell? Pin
moomoooomoo30-Apr-07 17:24
moomoooomoo30-Apr-07 17:24 
AnswerRe: how to set a corresponding color on a particular cell? Pin
ChandraRam30-Apr-07 22:51
ChandraRam30-Apr-07 22:51 
GeneralRe: how to set a corresponding color on a particular cell? Pin
moomoooomoo30-Apr-07 23:59
moomoooomoo30-Apr-07 23:59 
GeneralRe: how to set a corresponding color on a particular cell? Pin
Tom John1-May-07 2:21
Tom John1-May-07 2:21 
GeneralRe: how to set a corresponding color on a particular cell? Pin
ChandraRam1-May-07 21:46
ChandraRam1-May-07 21:46 
GeneralRe: how to set a corresponding color on a particular cell? Pin
moomoooomoo1-May-07 23:23
moomoooomoo1-May-07 23:23 
AnswerRe: how to set a corresponding color on a particular cell? Pin
Dave Kreskowiak1-May-07 3:41
mveDave Kreskowiak1-May-07 3:41 
QuestionGet the time of the last event fired by an application Pin
Polymorpher30-Apr-07 12:06
Polymorpher30-Apr-07 12:06 

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.