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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: luisfelipe007
  • Order by date
  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
  16. luisfelipe007

    sql statement through vb code

    Hi, try... RST.Open "select DISTINCT REPNAME, E_MAILADDR, ILEC, LEVEL] from escalateemail where ilec = '" & strIlec & "' AND " & strState & " = '1' order by [level]", CN, adOpenForwardOnly, adLockReadOnly, adCmdText sending 1 as '1', also debug strState regards...
  17. luisfelipe007

    Send e-mail as HTML

    you cant with MAPI, theres is a second MAPI released that supports HTML, but I cant help you, make further search at MSDN or google. regards, -- Luis MX
  18. luisfelipe007

    Enabling & Disabling a text box

    also change the background color... textbox1.enabled=false textbox1.BackColor = &H8000000B -- Luis MX
  19. luisfelipe007

    finding char at position in string

    This is usefully... http://www.vb2themax.com/Item.asp?PageID=TipBank&ID=398 http://www.vb2themax.com/Item.asp?PageID=TipBank&ID=399 I got a tokenizer sample: re.Pattern = "\w+\," re.IgnoreCase = False ' case sensitive search re.Global = True...
  20. luisfelipe007

    PRINT CURRENT RECORD OF DATAGRID ON DATAREPORT

    oohhhh thank you, sorry I didnt see that in the code Next time I'll check before asking. heres your star :D -- Luis MX

Part and Inventory Search

Back
Top