CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ComITSolutions

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    1,737

    Re: Date Range Verification - VB question

    How the input is given?
    from Database? User interface??
  2. Replies
    2
    Views
    1,630

    Re: Left Join trouble...

    in your query first part Distinct you have not selected field standard_phr_id .
  3. Re: Unable to retrieve data from database when use the Like operator in sql statement

    I didn't know that! Thanks
  4. Re: Unable to retrieve data from database when use the Like operator in sql statement

    Instead


    String dbQuery = "SELECT alumni_Name FROM AlumniMembers WHERE alumni_Name
    LIKE '*" + name + "*'";


    use
  5. Replies
    4
    Views
    33,734

    Re: Change a FlexGrid Row Back Color

    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 >=...
  6. Replies
    1
    Views
    2,262

    Re: Add control into datagridview control

    check the following link

    http://msdn.microsoft.com/en-us/library/7tas5c80.aspx
  7. Replies
    3
    Views
    821

    Re: Speeding up a Ranking Formula

    Post the query you have written for finding the rank, there will always room for fine tuning!!
  8. Replies
    4
    Views
    33,734

    Re: Change a FlexGrid Row Back Color

    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...
  9. Thread: Sql vb

    by ComITSolutions
    Replies
    3
    Views
    704

    Re: Sql vb

    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...
  10. Replies
    10
    Views
    1,338

    Re: List View

    Same question in http://www.codeguru.com/forum/showthread.php?t=494065
  11. Replies
    2
    Views
    1,175

    Re: Help with create database script

    I doubt about from Higher version to lower version compatibility!
  12. Re: Richtextbox with mouse cursor and add/replace saving

    RichTextBox1.selText="<---Replacing Text ------>"
  13. Replies
    10
    Views
    1,338

    Re: License Issue

    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....
  14. Replies
    10
    Views
    1,338

    Re: License Issue

    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....
  15. Re: Richtextbox with mouse cursor and add/replace saving

    If your problem is solved, mark this thread as [Resolved]
  16. Re: Richtextbox with mouse cursor and add/replace saving

    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...
  17. Re: Richtextbox with mouse cursor and add/replace saving

    To Read the File


    Richtextbox.LoadFile(FileName,FileType)
    ' File Type = 1(rtfText) = Text file
    ' File Type =2(rtfRTF) = RTF File



    To Save the File
  18. Replies
    2
    Views
    770

    Re: Bulk data insert

    Which database you are using? What is the source of resultset?
  19. Replies
    5
    Views
    896

    Re: Validation

    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...
  20. Re: How to set values for textboxes that is not visible

    Using a variable is better option instead of textbox. Why do you want something like that?

    in any case if you dont want to display the value in textbox ,eventhough textbox is visible then

    try...
  21. Re: How can Made Winzip Application in vb6 or vb2008?

    you could have checked in FAQ before starting thread, the following link is provided
    http://www.codeguru.com/vb/gen/vb_gr...cle.php/c6743/ :)
  22. Re: DataGridViewComboBox event

    If you got what you were looking for,mark this thread as resolved.
  23. Re: How to directly move from msgbox to form1

    Private Sub Command1_Click()
    If text1.Text = "" Then
    MsgBox ("You have no content on your 1st Transformation Matrix")
    Exit Sub '<-- Required here

    Else
    'Exit Sub <--- Not required, here you...
  24. Replies
    5
    Views
    1,383

    Re: MS Flex Grid

    In that case you can use loop to save data row by row.



    For RowNo = 1 to MSFlexGrid1.rows-1
    '... Saving code (note: Use RowNo variable instead of currow1,currow2 ...

    Next RowNo
  25. Replies
    6
    Views
    1,987

    Re: Need help in VB6.0 Understanding..

    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" '...
Results 1 to 25 of 153
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured