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 SkipVought 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: *

  1. xtraterrestrial

    Rerun code on a page refresh

    Right now when I refresh a .aspx page the code on the page does not seem to get rerun i.e. the Page_Load method is not called. Does anyone know if there is a Page property to get the Page_Load method to be called when a refresh is done? Thanks in advance
  2. xtraterrestrial

    Refresh a page reruns code

    Right now when I refresh a .aspx page the code on the page does not seem to get rerun i.e. the Page_Load method is not called. Does anyone know if there is a Page property to get the Page_Load method to be called when a refresh is done? Thanks in advance
  3. xtraterrestrial

    Running vbscript using C#

    What if I wanted to call that function on an event. I.e. I click on a server side .NET button. I tried adding it to the "onClick" event of the HTML tag but it doesn't recognize the function name. Is it even possible to do this?
  4. xtraterrestrial

    Running vbscript using C#

    Hi I have some vbscript (a function) that I would like to call form the server side using C#. Can anyone let me know what method or how I can do this? thanks in advance
  5. xtraterrestrial

    run vbscript using vb.net

    Hi I have some vbscript (a function) that I would like to call form the server side using vb.net. Can anyone let me know what method or how I can do this? thanks in advance
  6. xtraterrestrial

    Picking up the alias

    To be more clear, I basically want to find the smtp address of a user
  7. xtraterrestrial

    Picking up the alias

    I'm trying to write some code where I want to pickup the alias of a user. I'm using the AddressEntry object. objAddressEntry.details will open the property box of the user where the alias can be found. Does anyone know how I can just pickup the alias with code? Any help would be appreciated
  8. xtraterrestrial

    Finding the alias

    I want to pickup an alias of a recipient from an address book object that I used. This is the code that I have so far Set objCDO = Application.CreateObject("MAPI.Session") objCDO.Logon "", "", False, False, 0 Set Recips = objCDO.AddressBook(Nothing, _...
  9. xtraterrestrial

    Pickup alias of a recipient

    I want to pickup an alias of a recipient from an address book object that I used. This is the code that I have so far Set objCDO = Application.CreateObject("MAPI.Session") objCDO.Logon "", "", False, False, 0 Set Recips = objCDO.AddressBook(Nothing, _...
  10. xtraterrestrial

    Unable to display folder

    We have a public mailbox set up with a custom folder. One of the users is unavailable to see the custom folder. She get a "Unable to Display Folder" error message. We have already given her owner rights to both the mailbox and folder. Does anyone have any suggestions? Thanks
  11. xtraterrestrial

    Sub Class_Initialize()

    Hi I created a class of my own and I was wondering if the following procedure will run automatically upon creation of the class Public Sub Class_Initialize() ' set value of variables in class End Sub Thanks
  12. xtraterrestrial

    Can I create a class?

    I am programming a form in Outlook. I would like to create a Class which basically stores a bunch of information, is it possible to do so in VBA? If it is can someone show me the syntax or give me an example of one ? Thanks
  13. xtraterrestrial

    Can I create a class?

    I am programming a form in Outlook. I would like to create a Class which basically stores a bunch of information, is it possible to do so in VBA? If it is can someone show me the syntax or give me an example of one ? Thanks
  14. xtraterrestrial

    backing out of a new record on a user form.

    I just tried using me.undo and it works fine for me too. I wish I had found this thread earlier. scroce, if you still can't get it to work, what I previously did was fill the record with dummy values and immediately delete the record afterwards. That seems to work.
  15. xtraterrestrial

    Record x of y

    I'm created my own navigation button on a form and disabled the navigation buttons. I would like to have the "Record x of y" caption on the form. Can someone share some code that will do this for me? Thanks
  16. xtraterrestrial

    Run requery on another form

    Is there a way I can run a requery from one form to another form. I have form A which opens form B Can I run a command in form B which will run Me.Requery in form A ?
  17. xtraterrestrial

    Counting the number of records

    adding rs.movelast actually crashes the program. I think the problem it doesnt show the correct number of records is because the records haven't been loaded properly when the form first initially loads up.
  18. xtraterrestrial

    Counting the number of records

    thanks mph it works perfectly
  19. xtraterrestrial

    Counting the number of records

    ptpaton I think I misunderstood what you meant by put a count in the query. I'm not totally sure what you mean by that. My form is based on a table
  20. xtraterrestrial

    Counting the number of records

    The code didn't seem to work. I implemented it using a count variable however, when the form is first loaded it still displays the number of records as 1, even though there are more than one records

Part and Inventory Search

Back
Top