Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jincy

  1. jincy

    Im using a date picker and I need a

    DTPicker1.Value = Now
  2. jincy

    page total in data report 1.

    Use RptLabel Control. Change the caption as %p for number of pages and %P for total number of pages.
  3. jincy

    To add an icon to a MenuItem

    Use mciconmenu & ImageList in your project(This is a control) sample code: mciconmenu1.ItemIcon("mnuLogOff") = ImgLstAllIcons.ListImages.Item("Sign Off").Index - 1
  4. jincy

    To add an icon to a MenuItem

    Use mciconmenu in your project(This is a control) sample code: mciconmenu1.ItemIcon("mnuLogOff") = ImgLstAllIcons.ListImages.Item("Sign Off").Index - 1
  5. jincy

    Validation of date field

    Hi rundmc, you can use this API. Write this code in your module. Public Type SYSTEMTIME wYear As Integer wMonth As Integer wDayOfWeek As Integer wDay As Integer wHour As Integer wMinute As Integer wSecond As Integer...
  6. jincy

    Flexgrid Merging Columns/ Row

    Hi JMohammed, Try MergeCells Property Example from MSDN Library - oct 2001
  7. jincy

    delimiter problem in SQL SELECT statement

    applek, once i faced the same problem. this code will help you.. strValue .Text = Replace(strValue .Text, "'", "''") strSQL = "SELECT * FROM tblABC WHERE FieldB = '" & strValue & "'"
  8. jincy

    Printing a VB Form

    PrintForm Method Example This example uses the PrintForm method to print the current form. To try this example, paste the code into the Declarations section of a form. Place on the form any controls you want to see on the printed form, and then press F5 and click the form. Private Sub...
  9. jincy

    Rounding of Numbers in VB

    hi sonper, try this code. place one text box and command button in your form. Private Sub Command1_Click() Text1.Text = Round(Text1.Text / 10) * 10 End Sub
  10. jincy

    how to add document to a vb project and reference it in code

    gusset, first u created one .txt file and later renamed it as .res file...that is wrong... First u add resource editor tool(go to Add-Ins -> Add-In Manager..from that list select VB6 Resource Editor then check in Loaded/Unloaded in Load Behavior then click on OK)... Now one green colour tool...

Part and Inventory Search

Back
Top