September 9th, 2011 07:02 AM
How the input is given?
from Database? User interface??
September 9th, 2011 06:55 AM
in your query first part Distinct you have not selected field standard_phr_id .
August 11th, 2011 04:32 AM
I didn't know that! Thanks
August 10th, 2011 04:12 AM
Instead
String dbQuery = "SELECT alumni_Name FROM AlumniMembers WHERE alumni_Name
LIKE '*" + name + "*'";
use
December 29th, 2010 05:13 AM
I Agree DataMiser, the same code can be modified as below:
Private Sub SetBackColor(FlexGrid As MSHFlexGrid, RowNo As Integer, BkColor As ColorConstants)
With FlexGrid
If RowNo >=...
December 25th, 2010 05:51 AM
check the following link
http://msdn.microsoft.com/en-us/library/7tas5c80.aspx
December 25th, 2010 05:31 AM
Post the query you have written for finding the rank, there will always room for fine tuning!!
December 25th, 2010 05:25 AM
As mentioned by DataMiser, you can change the background color of a cell and the row. If you want to change all the cells of a particular row, you have to loop through all the columns.
Below code...
March 31st, 2010 03:41 AM
In your code you should have one connection each to the databases. Either you can use the method given by Wof or you can open two different recordset for each database and use
RS.Find method to...
March 13th, 2010 01:48 AM
Same question in http://www.codeguru.com/forum/showthread.php?t=494065
March 13th, 2010 01:22 AM
I doubt about from Higher version to lower version compatibility!
March 12th, 2010 05:33 AM
RichTextBox1.selText="<---Replacing Text ------>"
March 12th, 2010 05:27 AM
Are you Using Any thirdparty OCX or DLL in your application?
As in your question Refer to 'D:\New Folder\VB\HR\MDI.log Open this file with notepad, you can check which control is giving problem....
March 12th, 2010 05:16 AM
Are you Using Any thirdparty OCX or DLL in your application?
As in your question Refer to 'D:\New Folder\VB\HR\MDI.log Open this file with notepad, you can check which control is giving problem....
March 12th, 2010 05:09 AM
If your problem is solved, mark this thread as [Resolved]
March 12th, 2010 03:38 AM
Yes, Datamiser I understood it wronly.
The following Code may be useful, I have added one more invisible richtextbox to the same form.
Logic is when user clicks button, first richtextbox lost...
March 11th, 2010 10:22 PM
To Read the File
Richtextbox.LoadFile(FileName,FileType)
' File Type = 1(rtfText) = Text file
' File Type =2(rtfRTF) = RTF File
To Save the File
March 11th, 2010 06:08 AM
Which database you are using? What is the source of resultset?
March 10th, 2010 08:23 AM
First of all you should try to write some code, based on your requirement and if you get struck in between , there are many gurus in this forum to guide.
Private Sub...
February 27th, 2010 11:41 PM
in addition to vb5prgrmr's explanation. You can also use MID$ Function to replace a specific location character with Another.
Dim TmpStr as string
tmpstr = "BAT"
MID$(TmpStr,2,1)="U" '...