CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Cobra

Page 1 of 4 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    1
    Views
    753

    Try this code: Dim mapiSession...

    Try this code:

    Dim mapiSession
    Dim mapiMessages

    Set mapiSession = CreateObject("MSMAPI.MAPISession")
    Set mapiMessages =...
  2. Thread: MAPI flicker

    by Cobra
    Replies
    4
    Views
    749

    No. I do it right before I send it. This is my...

    No. I do it right before I send it. This is my code:

    Dim mapiSession
    Dim mapiMessages

    Set mapiSession = CreateObject("MSMAPI.MAPISession")
    ...
  3. Thread: MAPI flicker

    by Cobra
    Replies
    4
    Views
    749

    I have the same thing, and i don't get a flicker.

    I have the same thing, and i don't get a flicker.
  4. Replies
    0
    Views
    667

    Log into a website (eg hotmail) using vb

    Hello. I would like to register for a course at university, but it is full; I have to log in constantly and check if someone dropped the course, so I can sign up for it. My question is, can I use VB...
  5. Replies
    8
    Views
    1,008

    Thanks guys. I don't know what am I gonna do,...

    Thanks guys. I don't know what am I gonna do, though. I think I'm doomed.
  6. Replies
    8
    Views
    1,008

    Thanks for trying DSJ, but that is not what i...

    Thanks for trying DSJ, but that is not what i need. I'll try again to describe what my problem is. I open an excel file from VB. Then I open MS Excel by double clicking on some Excel file (different...
  7. Replies
    2
    Views
    937

    If the applet is loading the data from a file,...

    If the applet is loading the data from a file, why don't you just retreive the whole file from the website?
  8. Replies
    4
    Views
    808

    You could use the left and right functions....

    You could use the left and right functions.
    letter = left(mystring, 1)
    mystring = right(mystring, len(mystring) - 1),
    until the length of mystring is 0.
    I'm not an expert though, and this might...
  9. Replies
    8
    Views
    1,008

    xl As New Excel.Application xlw As...

    xl As New Excel.Application
    xlw As Excel.Workbook
    xlw = xl.workbooks.open(path)
  10. Replies
    8
    Views
    1,008

    I think it has to do with the way the excel file...

    I think it has to do with the way the excel file is opened. There are many arguments in the open command, but I don't think that any apply. I still want to see if anyone has any suggestions.
  11. Replies
    8
    Views
    1,008

    hide VB opened Excel files from Excel

    Hi. I posted this question before, but I would like to know if anyone has any other ideas.
    I have a program which opens an excel file, writes to it and when the program is closed, it also closes...
  12. Replies
    2
    Views
    791

    booogt, I appreciate your idea, but does anybody...

    booogt, I appreciate your idea, but does anybody who worked with excel files have any other idea?
    Thanks.
    TM
  13. Replies
    2
    Views
    791

    hide Excel file from Excel

    Hi. I'm opening an excel file from vb and I'm making changes to it. While the excel file is opened, if the user double-clicks on some excel file in windows, and excel starts up, if you go to...
  14. Thread: capture tab

    by Cobra
    Replies
    4
    Views
    832

    Maybe i didn't explain myself clearly; it does...

    Maybe i didn't explain myself clearly; it does work the way i programmed it to. Thanks for your concern. Anyway, i traced my program and because i used a funky way to deal with the forms, I'm able to...
  15. Replies
    9
    Views
    2,328

    Hi. I'm not sure of the limitations of ListBox on...

    Hi. I'm not sure of the limitations of ListBox on different platforms, but for me, the next instructions work (to select fourth) element:
    List1.ListIndex = 3
    List1.Selected(3) = True
    Maybe,...
  16. Thread: capture tab

    by Cobra
    Replies
    4
    Views
    832

    Actually i think i need more help than that. I...

    Actually i think i need more help than that. I call a function when the user presses 'enter' on a textbox or when focus is lost on the textbox. That function takes the value from the textbox and...
  17. Thread: capture tab

    by Cobra
    Replies
    4
    Views
    832

    capture tab

    Hi. I have a function that is called when the user presses 'enter' or 'tab' on a field box. I can capture 'enter' no problem, but how do i capture 'tab'?
    Thanks
    TM
  18. Replies
    3
    Views
    623

    arrays + memory management

    Hi. I have a full 2 dimensional array (5X100). Should i worry about memory management issues? How can i "dispose" of the array, after I'm done with it?
    Also, is there a way of getting out of an...
  19. Replies
    4
    Views
    706

    Thanks a lot guys. It helps a lot.

    Thanks a lot guys. It helps a lot.
  20. Replies
    4
    Views
    706

    "microsoft" looking program

    Hi. I always wondered how can you write a program that looks and has the general functionability of programs such as microsoft word or excel - with a menu on the top, and be able to open multiple...
  21. Replies
    4
    Views
    959

    Hi. I'm not really sure what you're trying to say...

    Hi. I'm not really sure what you're trying to say by "constraint". If you refer to the name of the field then declare a variable as TableDef, set it to point to the specific database table and then...
  22. Replies
    2
    Views
    1,565

    Thanks. Your worked, but when i started to change...

    Thanks. Your worked, but when i started to change the controls it was giving me the same error message. I realized that if the mapi.msgnotetext is empty, then you get that nasty error. Weird.
    Thanks...
  23. Replies
    2
    Views
    1,565

    mapi - attachment error

    Hi. I have a very simple email program that is supposed to send emails to a bunch of people with one attachment. When i add the
    last 2 attachment lines, i get an "unspecified error"? Does anybody...
  24. Replies
    3
    Views
    968

    hi. I've never tried it on my own, but i knew of...

    hi. I've never tried it on my own, but i knew of this code from a tutorial:

    Change Drive/Disk Label

    Preparations
    Add 1 Command Button (named Command1) to your form.

    Module Code
    Declare...
  25. Replies
    1
    Views
    523

    timing issues / polling the cpu

    Hi. I have a 7day-agenda application, in which you can schedule appointments for today and the following 6 days. There is one issue though: when the clock hits 12 am, i have to reinitialize some of...
Results 1 to 25 of 91
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured