Nested Ifs Or Select Case?
Dear Mr. Hans,yes you right my issue is sorted out completely with using your code in my excel file.many thanks for your good guiding.Nima
View ArticleNested Ifs Or Select Case?
Nima sent me his workbook, and I wrote the following code for him (it the code for a worksheet named View):Private Sub OpenDB(ByRef cnn As ADODB.Connection) 'note the change between brackets ByRef cnn...
View ArticleNested Ifs Or Select Case?
Perhaps you could create a stripped-down copy of the workbook (without sensitive information) and make it available through one of the websites that let you upload and share a file, such as Windows...
View ArticleNested Ifs Or Select Case?
dear Hans,your msg noted and thanks for you for your immediate replay as always.could i send you my sample excel file to look at it .is it possible?thanksNima
View ArticleNested Ifs Or Select Case?
I'd use a For ... Next loop: Dim I As Long For I = 1 To 13 If Me.Controls("txt" & I).Value <> "" Then ... End If Next IRegards, Hans Vogelaar (http://www.eileenslounge.com)
View ArticleNested Ifs Or Select Case?
hi in my form i have 13 textbox (txt1,txt2,....text13) as parameters to search data from my database sheet.i need to check availability of 13 textbox.value to find how many of them have value to...
View Article