Search results

  1. V

    Outlook 2007 Plugin

    Hi, I never wrote a plug-in for Office products, but this is a very useful thing... This is what I want: In outlook 2007 when user right clicks on an email message and select one, a menu item should be added with a custom name, and when user select it, it runs my program with a command... I...
  2. V

    Excel 2007 Problem

    Hello, I use Visual Basic .NET 2008 and want to create a new Excel workbook and save data into it... I was using this code for Excel 97-2003 workbooks and it just works fine: --- Dim ExcelString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + FileTextBox.Text + ";Extended...
  3. V

    Create Visual Studio .NET 2005/2008 Toolbox

    Hello, I have written a .NET 2.0 component (.dll) which I am creating a setup for it. The hard thing is that I wanna create a Toolbox in the target system Visual Studio Toolbox. I wanna create this Toolbox at the installation time. Anyone knows a way to do this both for VS.NET2005 and...
  4. V

    System Monitor

    Hello, I know there are some programs that monitor the system for changes. For example you run it and install a program, it says that your installed program has made what changes to the registry, to the file system, what files have been added and removed during the installation, etc... I...
  5. V

    Help me choose the edition of VS.NET

    Hi, I just dont know use which edition of Visual Studio .NET 2008? Express, Standard or Professional ?! I have express and its OK just it wont allow me to select target .net framework when I want to create a new project. The professional version allows you to select your new project is for .net...
  6. V

    Upper Case

    Hi, How can I convert the first letter of each word in a sentence to upper case? I cannot simply use .ToUpper because some words like "of" shouldnt be converted. Is there an internal function in VB.NET FW2 which do it for me automatically? Capitalization I mean. Thanks :)
  7. V

    Copy and Merge 2 Arrays

    Hi, I have 2 arrays, I dont know their length... I wanna copy both arrays into 1 single array. So the length of output array will be sum of my 2 input arrays. I know I should use Array.Copy but dont know how, for my case, it wont merge the contents of 2 arrays into 1. Anyone can help me? I also...
  8. V

    System.Management in VB.NET 2008

    Hi, Anyone has VB.NET 2008? Wheres System.Management? When you select the properties of a project, from References tab, there is NO System.Management and even if you write its name manually into the "Imported Namespaces" text box, it wont import. I wanna know what the problem VS have with...
  9. V

    Windows Controls Problem

    Hi, I have a TabControl on my form with 1 TextBox in EACH Tab, total 2 TextBox... I fill each TextBox during a loop like this: For i As Integer = 1 To 100 ReportTextBoxX1.Text = ReportTextBoxX1.Text + i.ToString + vbNewLine ReportTextBoxX2.Text = ReportTextBoxX2.Text + i.ToString +...
  10. V

    Upgrade from OleDb to SqlCLient

    Hi, I want to upgrade from OleDb to SqlCLient, I mean from .mdb file to .sdf file. I have installed MS SQL Server 2008 Express Compact edition and designed my database files and created tables/fields and now gonna copy it to my application directory so my application will work with that on...
  11. V

    Access Problem

    Dim ReadUsers As New OleDb.OleDbCommand("SELECT * FROM Emails WHERE GroupID = " + MyID + "", GroupConnection) Dim MyReader2 As OleDbDataReader = ReadUsers.ExecuteReader While MyReader2.Read ... End While Hello, I have a critical problem in reading data from database! But the above code reads...
  12. V

    Access or SQL

    Hello, I have written an address book and for its database, I used Access to create a .mdb database and store my data programmatically into this .mdb file. However, the problem is that when reading and saving data to this kind of database I have to use Jet 4.0 which is NOT available on 64-bit...
  13. V

    OpenFileDialog Filter String

    Hi everyone :) I have no idea why my OpenFileDialog Filter String is NOT working as expected? All Picture Files |(*.gif;*.jpg;*.jpeg;*.jpe;*.jfif;*.png;*.bmp;*.dib;*.wmf;*.art;*.ico)|All Files (*.*)|*.* Well, when running my application and show OpenFileDialog it will filter and show *.bmp and...
  14. V

    Load and Save Settings

    Hi, I wanna save and load my color selected by ColorPicker like this: SaveSetting("MyApp", "Style", "Color", ColorPickerButton1.SelectedColor.ToString) ColorPickerButton1.SelectedColor = Color.FromName(GetSetting("MyApp", "Style", "Color")) The color I am loading from the settings does not...
  15. V

    Read all cells - in all sheets - of an excel file

    So this is the VB forum :D As my posts title indicates, I wanna read all cells of all sheets/pages in my excel file and just show the text content of each cell. I have written my code but have 2 problems: Dim ExcelConnection As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data...
Back
Top