No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hi! I want to write code for searching files on local hard disk using index searching technique.I looked for it on internet, someone suggested that I should use B+ index searching technique.But I don't know how it can be implemented using B+ index searching technique.Can anybody tell me how it …
Hi! I think your requirement is as follows. [code] Dim strToFind As String Dim i As Integer = 0 strToFind = TextBox1.Text For Each item As Object In ListBox1.Items If item.ToString().ToUpper() = strToFind.ToUpper() Then i += 1 End If If i > 1 Then MsgBox("Item exists in the listbox more …
Hi! For minimal wastage of steel I think you should consider area of the required steel against area of steel from the stock. Regards, iCreator
Hi Sana.khatib20! I think your requirement is like such, Reg_Id = Incremental_Id + Date_Id To get Incremental_Id you must read no of records in that month. e.g. select count (*) from example where month(date) = month(now()) And you know how to get Date_Id.:) Regards, iCreator
Hi! I am creating a windows service. I want to know that , is there any other way to install windows service than using installutil.exe ? I don't want to install my windows service on client's machine using command prompt. Better way if I can install it using setup. Thanks …
The End.
iCreator