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

  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#

    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
  4. 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
  5. 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
  6. 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, _...
  7. 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, _...
  8. 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
  9. 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
  10. 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
  11. 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
  12. 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
  13. 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 ?
  14. xtraterrestrial

    Counting the number of records

    Hi I have the following code in a form to count the number of records in a table Private Sub Form_Current() Dim rs As DAO.Recordset Set rs = Me.RecordsetClone lblRecordNum.Caption = rs.RecordCount rs.Close Set rs = Nothing End Sub When I first start up the form the number...
  15. xtraterrestrial

    Accessing a public variable from a form

    Hi I wanna get access a public variable in a form from a subform of the form. Is there a way to do this ? Thanks
  16. xtraterrestrial

    Find Security Group of a User with VBA

    Hi, Does anyone know how I can find the security group that the current user belongs to with VBA code? ex Admin, User
  17. xtraterrestrial

    User-Level Security Wizard with MDE file

    Hi, I was converted my access database into an MDE file. I then tried to set some securities on the MDE database using the User-Level Security Wizard. However, it says I can't run the wizard with an MDE file. Is there anything I can do to get around this? Thanks
  18. xtraterrestrial

    Update records

    When I make some changes to a record from a form the values don't seem to get updated immediately. I have to move to another record and move back before the new values show Is there a command that lets me update the records instantly?
  19. xtraterrestrial

    Cannot write to record

    Hi, I tried to write some information to a table by opening a recordset but I get the following error "Update or Cancel Update Without AddNew or Edit" This is what a basically have, Dim rs As DAO.Recordset Dim db As DAO.Database Set db = CurrentDb Set rs =...
  20. xtraterrestrial

    Newline symbol for a record

    Hi I have text field in a record where I want to output information to a textbox. Is there a way to input a new line character to the text field so I can show my information in the textbox nicely? I tried using chr(10) but that doesn't seem to work. I think this is because the field in my...

Part and Inventory Search

Back
Top