Click here to Skip to main content
15,891,431 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to prevent multiple user login using one account in VB Pin
Dave Kreskowiak3-Apr-08 5:30
mveDave Kreskowiak3-Apr-08 5:30 
QuestionCan we search column in MS access (or in Excel) table with the header which contains spaces? [modified] Pin
ATC3-Apr-08 4:07
ATC3-Apr-08 4:07 
AnswerRe: Can we search column in MS access (or in Excel) table with the header which contains spaces? Pin
Dave Kreskowiak3-Apr-08 5:25
mveDave Kreskowiak3-Apr-08 5:25 
GeneralRe: Can we search column in MS access (or in Excel) table with the header which contains spaces? Pin
ATC3-Apr-08 8:14
ATC3-Apr-08 8:14 
Generalretrieving data from database into a combo box on VB form!!! Pin
jayalom3-Apr-08 3:50
jayalom3-Apr-08 3:50 
GeneralRe: retrieving data from database into a combo box on VB form!!! Pin
Kschuler3-Apr-08 5:08
Kschuler3-Apr-08 5:08 
GeneralRe: retrieving data from database into a combo box on VB form!!! Pin
Dave Kreskowiak3-Apr-08 5:09
mveDave Kreskowiak3-Apr-08 5:09 
Generalword macro Pin
ritu43213-Apr-08 0:10
ritu43213-Apr-08 0:10 
i am working on word macro in which i have to select few heading1 complete content and paste it into other document.
In the document in every heading 1 i have placed bookmarks for start and end . So how to pick up the text .


Private Sub CommandButton3_Click()
Dim a As String
Dim iCnt As Integer

a = ""

Application.ScreenUpdating = False

Selection.HomeKey Unit:=wdStory

Selection.Find.ClearFormatting

Selection.Find.Style = ActiveDocument.Styles("Heading 1")
Selection.MoveDown Unit:=wdWindow, Count:=1, Extend:=wdExtend



'With ActiveDocument.Select

'With Selection.SetRange Start:=Selection.Start, End:=ActiveDocument.Content.End
Dim Label As String


Do While Selection.Find.Execute

With Selection.Find

fndrepl "<#T"



If .Find.Found Then

iCnt = .MoveEndUntil("#>")
If iCnt = 0 Then

MsgBox "No closing tag found", vbOKOnly, "Error..."
Exit Do
End If

.MoveRight wdCharacter, 2, wdExtend
a = Selection.Text

End If


End With
Loop


End Sub
Questionhow to encrypt the connectionstring tag and other tag wen needed in the appconfig file Pin
lakshmichawala3-Apr-08 0:08
lakshmichawala3-Apr-08 0:08 
AnswerRe: how to encrypt the connectionstring tag and other tag wen needed in the appconfig file Pin
Dave Kreskowiak3-Apr-08 3:44
mveDave Kreskowiak3-Apr-08 3:44 
Generalread parallel port and start timer Pin
ashutosh1433422-Apr-08 23:31
ashutosh1433422-Apr-08 23:31 
GeneralRe: read parallel port and start timer Pin
Dave Kreskowiak3-Apr-08 3:38
mveDave Kreskowiak3-Apr-08 3:38 
GeneralSending Mail from VB Pin
aaraaayen2-Apr-08 20:51
aaraaayen2-Apr-08 20:51 
GeneralRe: Sending Mail from VB Pin
Dave Kreskowiak3-Apr-08 3:32
mveDave Kreskowiak3-Apr-08 3:32 
QuestionTo parse a string which is in a specific format Pin
josephng2-Apr-08 19:41
josephng2-Apr-08 19:41 
GeneralRe: To parse a string which is in a specific format Pin
zaimah2-Apr-08 21:35
zaimah2-Apr-08 21:35 
GeneralRe: To parse a string which is in a specific format Pin
josephng2-Apr-08 22:13
josephng2-Apr-08 22:13 
GeneralRe: To parse a string which is in a specific format Pin
zaimah2-Apr-08 22:22
zaimah2-Apr-08 22:22 
GeneralRe: To parse a string which is in a specific format Pin
Dave Kreskowiak3-Apr-08 3:31
mveDave Kreskowiak3-Apr-08 3:31 
GeneralRe: To parse a string which is in a specific format Pin
Colin Angus Mackay2-Apr-08 22:51
Colin Angus Mackay2-Apr-08 22:51 
GeneralRe: To parse a string which is in a specific format Pin
josephng3-Apr-08 19:55
josephng3-Apr-08 19:55 
QuestionHow to Bind Controls in GridView in VB.Net or C#.Net (Windows Application) Pin
Vignesh Krishnan2-Apr-08 18:42
Vignesh Krishnan2-Apr-08 18:42 
GeneralRe: How to Bind Controls in GridView in VB.Net or C#.Net (Windows Application) Pin
Krishnraj2-Apr-08 20:37
Krishnraj2-Apr-08 20:37 
GeneralRe: How to Bind Controls in GridView in VB.Net or C#.Net (Windows Application) Pin
Vignesh Krishnan2-Apr-08 22:58
Vignesh Krishnan2-Apr-08 22:58 
GeneralRe: How to Bind Controls in GridView in VB.Net or C#.Net (Windows Application) Pin
Dave Kreskowiak3-Apr-08 3:29
mveDave Kreskowiak3-Apr-08 3:29 

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.