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 wOOdy-Soft 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 luisfelipe007

  1. luisfelipe007

    Validating data in a Text Box

    LPLATES Yep your sample its better :) That is a star :) -- Luis MX
  2. luisfelipe007

    date picker checkbox question

    I was near :) -- Luis MX
  3. luisfelipe007

    Showing another form once data is validated

    Check my answer in your last post. -- Luis MX
  4. luisfelipe007

    date picker checkbox question

    dtpicker.value = null ????? -- Luis MX
  5. luisfelipe007

    Validating data in a Text Box

    Private function txtWheel_Validate(Index As Integer) If Not IsNumeric(txtWheel(Index).Text) Then txtWheel_Validate= True Else txtWheel_Validate= False End If End function .... .. . if not txtwheel_validate then the value is numeric end if -- Luis MX
  6. luisfelipe007

    Validating data in a Text Box

    try function instead of Sub -- Luis MX
  7. luisfelipe007

    Have a Top Level Form and a Form Inside the Top Level Form

    oohhhhhh try.. form1.hide form2.show or form2.show form2.left = form1.left form2.top = form1.top -- Luis MX
  8. luisfelipe007

    Have a Top Level Form and a Form Inside the Top Level Form

    HI, watch: Thread222-674559 thread222-717708 you can use API for the top most... SetWindowPos Me.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE + SWP_NOSIZE -- Luis MX
  9. luisfelipe007

    icons

    Hi, http://www.vbaccelerator.com/home/Resources/Graphics_Library/Icons/index.asp watch cPopMenu and cToolBar, you have more options for add images. -- Luis MX
  10. luisfelipe007

    Child WIndow without MDI!!!

    Hey guys, I think this can be used as tabstrip. I cant find a good sample using tabstrip in VB6, but I will use this code. Or... any other sugestions??? Thanks. -- Luis MX
  11. luisfelipe007

    sql statement through vb code

    wow wow that was my first star thanks!!! -- Luis MX
  12. luisfelipe007

    Send e-mail as HTML

    Yep, you got to use another way. You cant with MAPI im sure. :D It was MAPI Extended???? http://kandkconsulting.tripod.com/VB/VBCode.htm search for the SMTP Dll good luck -- Luis MX
  13. luisfelipe007

    sql statement through vb code

    after cn.open try.. CN.CursorLocation = adUseClient and then your rst.open, are you using 'on Error' ??? remove it, if you are. try changing adForward/adLock, for other options. -- Luis MX
  14. luisfelipe007

    sql statement through vb code

    then DISTINCT its not working as you want :O -- Luis MX
  15. luisfelipe007

    Send e-mail as HTML

    vanvb but your reader its converting that text to a link, what if you send it to other mail services ? like hotmail. regards. -- Luis MX

Part and Inventory Search

Back
Top