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

  • Users: FRANDAZZO
  • Order by date
  1. FRANDAZZO

    Question on working with outlook and vb

    All - I am working with a com-add to outlook. This app is a add-in app created in vb. I am working with the items in a inbox. There are 3 events add, remove, and change. When working with the add and remove events there is no problem getting the current email item because each the add and...
  2. FRANDAZZO

    Working with Email items...

    Thanks Paul! This sucks!!!! I hate VBA programmming. I will think of something. Have a great weekend! frandazzo
  3. FRANDAZZO

    Working with Email items...

    Yes, this is outlook 10 working on xp and xp professional. Frank
  4. FRANDAZZO

    Working with outlook email items

    All - I wanted to know if there is a way to link a response email from a receipent back to the sender. Meaning, I send and email and it is assigned a EntryId. When I receive the email back (i.e, the response RE:) the EntryId is changed because (1) the email is now in a new folder (e.g., the...
  5. FRANDAZZO

    Working with Email items...

    All - I wanted to know if there is a way to link a response email from a receipent back to the sender. Meaning, I send and email and it is assigned a EntryId. When I receive the email back (i.e, the response RE:) the EntryId is changed because (1) the email is now in a new folder (e.g., the...
  6. FRANDAZZO

    Dispose or Close\Nothing????

    Question - What is the difference between destroying a db conn object by using the dispose method or destroying it by using the following code: db.close db = nothing Also, does it make a difference??? Thanks in advance, Frandazzo
  7. FRANDAZZO

    execute a delete stored procedure?

    One more thing. Set Command to nothing: If Not IsNothing(oCmd) Then oCmd = Nothing Close db connection: oConn.Close Set Connection to nothing: If Not IsNothing(oConn) Then oConn= Nothing
  8. FRANDAZZO

    execute a delete stored procedure?

    Dim oConn as System.Data.SqlClient.SqlConnection() Dim oCMD as System.Data.SqlClient.SqlCommand() 'set your conn string and establish a sql connection With oCmd .Connection = oConn .CommandText = "APP_DeleteUser" .CommandType =...
  9. FRANDAZZO

    Async Call Process Active Weird!!!!

    Here is the situation. Within a vb application we are using a webservice. The application is using a async call to the webservice to execute a stored proc that is used to fill a report. The webmethod in the webservice returns a dataset. When I go to run the report the first time I get the...
  10. FRANDAZZO

    Cannot login app if users are only members of the Domain Users Group!

    Hello - I am running a web app that uses winnt authentication. If a user is a member of the domain users group thay cannot access the application. If I change their user rights to be a member of the domain admin group they are then allowed to access the app. I have corrected this issue once...
  11. FRANDAZZO

    Crystal 8.0 OLE-DB Conn Issue

    All - I always used an odbc conn using the rdc component in asp pages and never had a problem viewing a crystal report. I have now been asked to use an ole-db conn. All I keep getting is the "Server has not yet been open error". I have tried all different conn methods that other...
  12. FRANDAZZO

    Question on Destroying Objects

    Hello All, Question - Do you have to destroy (i.e., set to nothing) a dataset after you are done with it??? Or is it treated like a regular varaible you declare??? Example: Dim sStr as string - you would not destroy!!!! Dim oDS as New Dataset - do you destroy???? and if so why? Thanks in...
  13. FRANDAZZO

    Crystal 9.0 Issue with changing database name........

    All - I have been working with crystal since version 7.0. I have always used an odbc connetion to connect cryatal to a sql server db. Being I am a developer for a consulting company our db/server names are usually different from our client(s). No problem!!! When in development our odbc conn...
  14. FRANDAZZO

    Form Action in ASPX Pages?????

    Thanks..... Have a great new years!
  15. FRANDAZZO

    Form Action in ASPX Pages?????

    Hello all - I am just getting started on working with ASPX pages. I have a form tag that the runat="server". For some reason my form action is not posting to the correct page but actually to the same page. Meaning, My current page is page1.aspx and the form action is to page2.aspx...
  16. FRANDAZZO

    Programming reports in .net

    Hello All - I have a .net application and I want to add a stand alone report to my application. I am using the crystal report viewer control. Now my report is based of a sql stored procedure. How do I pass login information and parameter information to the procedure via the web page??? Any...
  17. FRANDAZZO

    Disable Menu Options Programatically

    Hello All, Question - If possiable, is there a way to disable the Import/Export option programatically in MS Outlook. This has to be done via VB and not VBA. Any help will be greatly appreciated... Thanks in advance, Frandazzo
  18. FRANDAZZO

    File System Object Help....

    OK - Let me tell you a litte about what I am doing. I am not within a VBA application. I am within a custom windows VB app. I am working with text files and I am creating and populating the files with data. I need to set the summary properties of the text file(s). I have downloaded that...
  19. FRANDAZZO

    File System Object Help....

    Hello all, Question - Is it possiable to set the summary properties of a text file within a VB application. Meaning if you right click on a text file then select properties you can view the Summary Tab. Within that tab are file properties like (Tile, Subject, Category etc.) If this can be...
  20. FRANDAZZO

    Connect TO SQL Server using ADO

    Hello all, Question - How do you connect to SQL server using ADO and using the Windows authentication not OledDB with a sql login and Pwd supplied. Thankx in advance, Frank

Part and Inventory Search

Back
Top