User Profile

Collapse

Profile Sidebar

Collapse
rpicilli
rpicilli
Last Activity: Feb 26 '09, 10:13 PM
Joined: Aug 31 '08
Location: Sao Paulo - Brasil
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rpicilli
    replied to KeyPress for text box
    What did you try and do not workout up to now?

    Remember this is a forum to help you not to do the job for you. Either ways do not forget to set the Preview KeyPress in the form where you put the RTF.

    Good luck

    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Have lost control-Please help
    Hi,

    Excuse me by that. This is a Forum of visual basic that's why my answer.

    May be you can try another Forum. I don't know if there is a forum of Access.

    In this matter I can not help you because I don't know anything about Access Forms.

    Good luck

    Rpicilli
    See more | Go to post

    Leave a comment:


  • mrcw
    mrcw posted a Visitor Message for rpicilli
    thank you. I did some work using Directer years ago and this is certainly different. I must get my Directer head off and my vb head on
    mark
    See more | Go to post

  • rpicilli
    replied to What's wrong with this
    You know, I can do that but you will learn nothing. The better way to learn is reading books or help files and try a lot. Excuse me by this kind of comments but that is the true.

    Code:
    'The line below must be off of your buttom click event or allways the Page 'will 'be 0 and you'll be able to select only the first page.
    Dim iPage as integer = 0
    
    Dim PageSelected As String = "Page"
    ...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to error message
    Hi mrcw,

    Try to submit your doubts in only one post. You put the same question is differents post is not a good approche.

    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to loop help please
    If you really want to do in this way you need to make the names the same.

    For any language Page1 is different from Page01.

    Taking the example of Smarchap you can do some changes on it.

    Dim j as string
    Dim myCtrl as new Object

    for i=1 to 50
    j="Page" & i.tostring("00" )

    myCtrl.Name = j

    myCtrl.Visible= False

    next...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Have lost control-Please help
    Hi there,

    For your first question, may be you're showing the form as Showdialog. In this case the focus will be there up to you close it. If this is the case try to show your subform with subForm.show(me )

    Try this and let me know.

    Rpicilli...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to What's wrong with this
    Hi there.

    There some mistakes in your code.

    You declare PageSelected as string and give then "Page". OK
    After you Add 1 to the variable Page. I suppose this variable was declare elsewhere if not you need to declare and initialize this variable Page.

    In the Select Case you use PageSelected. This variable never will have the value 1. Remember its string and has "Page" as contents....
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to reading null value in a dataset
    in .NET
    There some way to do that.

    The easiest is to put your code inside a Try Cath constrution

    Try
    your code
    Catch Ex
    verify if was throwed a dbnull exception
    if this is the case make abc = 0 or other value
    End


    I hope this help you

    Rpicilli...
    See more | Go to post

    Leave a comment:


  • You must open the file, read line by line, as I can see into the file, your date always starts on position 7 of each line that you wanto to catch up, rigth?

    That should be you key. Read the line and keep into a variable, lets say MyDate these positions. Something like

    [CODE]

    MyDate = LineRead.substr ing(lineread, 7, 10)

    [CODE]

    Verify if MyDate is realy a date.

    ...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Automatic file segregation
    Hi,

    You already knows what to do. Open the text file, read it line by line or at once, look for the information you need (I think there is some kind of "name" or "code") that you know is there.

    Based on the information read by your programs, send to file to where it belongs.

    If you're having trouble to code, put the code that you create in this forum to be analized.

    I...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to multiple selection of listbox
    Hi there.

    Could you put your code here so we can help you?

    If you're able to select one item in listbox, this will be the same steps to select the second. The only need is to configure your Listbox to accept multiple items select.

    This is done in both design and running mode

    I hope this help but put your code to be analized.

    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to paystub problem, datediff (vb.net)
    in .NET
    Hi, this can be donne auto.

    I need to understand better what you need. Just with a little change in the code, the dEnd will reflect the date and time at the precise moment that you call the function. The same will happen with the dInit if you change the code.

    Code:
            Dim dInit As New DateTime
            Dim dEnd As New DateTime
            Dim hOurs As New TimeSpan
    
            dInit
    ...
    See more | Go to post

    Leave a comment:


  • That is a good place to start

    WebDAV Reference


    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Window.open in asp.net
    in .NET
    Can submmit the code that you're using?

    Besides look tho the Postback method.

    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Why the access database is so slow
    in .NET
    Hi there,

    Did you try to refresh your datacomponent that is bounded to the database?

    Rpicilli
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to how to access exchange server 2007 from .net
    in .NET
    Hi Chittibabu

    This is a good place to start WebDAV Reference

    Rpicilli...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to Ado Connection
    Another issue that may be occur is if the datagrid1.bound text was more then one word you should put inside brackets [ my multiple word ]. As I saw that you are using string as your ID may be the case....
    See more | Go to post

    Leave a comment:


  • Hi there.

    Could you please put your vb code so we can try to help you? Btw did you install new applications in these computers? Did you try to look at the log of Win2000? In your email server, can you look at some kind of log? Does your SMTP server needs authentication? If so, is there a chance of somebody change the password you used to use?

    As you can see there is a lot of possibilities, without more information will...
    See more | Go to post

    Leave a comment:


  • rpicilli
    replied to paystub problem, datediff (vb.net)
    in .NET
    Did you try the code I've send you?

    Rpicilli
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...