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 strongm 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. iannuzzelli

    What is the easiest way to collect external emails

    Want to use Exchange Server 2003 but I do not want to host my own email. I like the idea of the onestop service to eliminate individual outlook pop setups. What is the easiest way to setup Exchange to collect email from my external providers? Thanks- Gerard
  2. iannuzzelli

    How do I sort filenames using System.IO

    I'll try it. Thanks!
  3. iannuzzelli

    How do I sort filenames using System.IO

    I am looking to get a sorted list of filenames in a specific folder. I am currently using the System.IO to manioulate the filenames but can not seem to display a sorted list. How can I resolve my issue?
  4. iannuzzelli

    Exception Error when executing application on Network

    I have a VB .NET 2003 running frameworks 1.1 application that is executed from a network drive. I understand that I must give the client computer the ability to trust the Intranet using the the framework Wizard. This works fine. Everything works great except for 1 issue. I get an exception...
  5. iannuzzelli

    Is it possible to export to email form ver 9 .NET?

    I thought I could do this in earlier versions but I do not see this oiption under .NET version. Please explain if possible
  6. iannuzzelli

    Crystal Report 9 Issue

    I am using Visual Studio .NET 2003, VB .Net and Crystal Reports 9 for .NET. I have a report that looks at a single table for data and displays the data using the CR viewer. Very simple. Heres the problem... When I have multiple records in the table the report shows the data and everything...
  7. iannuzzelli

    Having trouble clearing all textboxes.

    I am using this code: Dim X As Control For Each X In Me.Controls If TypeOf X Is TextBox Then X.Text = "" End If for some reason only the controls on the 1st level of the form are cleared. For example All textboxes contained on Tabcontrols and Groupboxes are not cleared. I need to...
  8. iannuzzelli

    Why can I not sort the following?

    Thanks I will try to use this method.
  9. iannuzzelli

    Why can I not sort the following?

    The Following example list is supposed to be sorted using a List View control. Thinking it was my code I have tried sorting the list in Excel and the sorting results are the same. Why does the '-' not line up in the sorting sequence? Is there any way to get around this? Sorted in Ascending...
  10. iannuzzelli

    Why do the handles on some events disapear?

    Sometimes in VB .NET 2003 the Handles on some events disapear. Any ideas?
  11. iannuzzelli

    Is there a way to hide report formulas?

    I am using VB .NET with Crystal 9 integrated viewer. When I run the application and show a report I can see the report formulas when I run my mouse over it. Is there any way to hide the formuals during runtime?
  12. iannuzzelli

    Why is the modified date not changing?

    I was using Visual Studio 2000 and the project modified date always showed the correct date. When I upgraded to VS 2003 the project modified date does not change. Any thoughts?
  13. iannuzzelli

    Need some help with Currency formatting...

    I need to be able to convert currency formats depending on what country is selected in my application. I already know the currency but need to format the amount to reflect correct format. Windows already has this functionality and is used in the Regional and Language Settings. Is there a way I...
  14. iannuzzelli

    How do I lock the columns in a listview?

    I need to lock the columns in a listview so the user can not adjust the width. Is there anyway to do this in .NET?
  15. iannuzzelli

    How would I remove the selected row of a listview control?

    I am using a Listview control in details mode in .NET. I need to know 2 things. 1) How do I know what row/item is selected? 2) How do I remove the selected row/item? This task was very easy in VB6. Thanks
  16. iannuzzelli

    How do you pass values from VB6 to a formula field in crystal 8.5?

    You need to get the Formula Name before you send. example: GReport.FormulaFields.GetItemByName("Bank1").Text = BankName Where Bank1 is the name of the formula in your report Hope this helps!
  17. iannuzzelli

    Like to know what my cordinates are

    I have form1 which I form1.showDialog() I can get the mouse cordinates if I click somewhere on the form. I would like to get the mouse cordinates or some sort of a flag if I click anywhere but on the form. Is there any way to do this? Thanks
  18. iannuzzelli

    How to disable right click on controls

    Thanks, My concern is not so much with the cut and paste. it is with the fact that an end user can choose other options such as Right to left reading order, show unicode control characters, and set unicode control characters.
  19. iannuzzelli

    How to disable right click on controls

    I wish to turn off the ability to show the menu when a right click is issued. Why does .net default to allow an end user to arrange the text in a simple textbox? Thanks

Part and Inventory Search

Back
Top