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. vinidel

    VSTO word document file does not show controls when saved outside vsto

    Hi All, I have create a VSTO Word document using VS 2005. I have placed controls such as TextBoxes, Buttons, and Lables using VSTO. These objects work well during run time. My problem is when I save the Word document and open it outside of VSTO, the controls disappear. What am I doing wrong...
  2. vinidel

    How to add reference to windows application in VSTO project?

    Is there a way I can include VSTO project/ files in my main windows application and do not need to create dll files.
  3. vinidel

    How to add reference to windows application in VSTO project?

    Hi All, I have a windows application in VB.NET and want to generate certain documents in word from this application. I am using VSTO in VS 2005, so I created a separate project but added to the same solution of my windows application. I have a module class in windows application which carries...
  4. vinidel

    How to do File Operations for a Praticular User only ?

    Thanks jebenson for guiding me to the thread with the solution. I found another link from this thread that leads to the example by using AliaAccount class. Here is the link: http://weblogs.asp.net/ralfw/archive/2003/11/24/39479.aspx When I run the example on my machine and impersonating...
  5. vinidel

    How to do File Operations for a Praticular User only ?

    Hi All, I have a vb.net application that copies/ moves pictures to the file directory on network drive. I do not want my users to go directly to the file directory and modify or rename any picture/ file. I want them to use this vb.net application only for making any changes to the...
  6. vinidel

    How can I show thumbnail view of pictures

    I have a treeview control that shows all drives & directories on my machine. I have a listview that shows the directory. folder contents selected in treeview. I am able to filter the contents of listview box to show only JPG files. But how can I show the thumbnail view of the JPG files instead...
  7. vinidel

    AnimationExtender problem inside a GridView

    I'm trying to put an animationextender + div + the javascript it comes with inside an <itemTemplate>. It works fine, but only for the first row of the gridview, which it opens, closes and updates. When I click the button that starts the animation on any other row, it simply shows the animation...
  8. vinidel

    Links in Excel Sheet

    Hi All, How can I break links in excel sheet using VB.NET? I know there is a method/ function called BreakLinks in Excel library. But how to use it? I tried but could not figure it out. Thanks
  9. vinidel

    Cells count in MS EXCEL

    Thanks PGoRule.
  10. vinidel

    Cells count in MS EXCEL

    Hi ALL, How can I find out how many cells actually have data in an excel sheet using VB.NET Code? Thanks
  11. vinidel

    VB.NET APP As Windows Services - Call to Excel or Word failing.

    Thanks Chiph for your suggestion. Anyways, I found the solution from MSDN KB articles. I am pasting the url link incase if someone is intrested to know. http://support.microsoft.com/kb/q288366/
  12. vinidel

    VB.NET APP As Windows Services - Call to Excel or Word failing.

    Hi ALL, I have a small application APP A that converts excel and doc files to text files. I have another application APP B that is running as services on my windows server. Within APP B I have a call to APP A and I am passing the source filename and path to APP A to convert these files to...
  13. vinidel

    What version of .NET FRAMEWORK ?

    Thanks guy for your reply. Ok here is the situation: I am using Microsoft Excel 11.0 Object library in my VB.NET project. I have two machine that are identical with operating system (XP Professional), office suite 2003 and both the machines are installed with .NET Framework 1.1 and 2.0 But...
  14. vinidel

    What version of .NET FRAMEWORK ?

    Hi ALL, I want to know what version of .NET FRAMEWORK I have on my machine? 1. If I look under add/ remove programs listing via control panel I do see .Netframework Version 1.1 and also 2.0. 2. If I check from Visual Studio 2003, Help and then About it says Microsoft Version 1.1 So I am...
  15. vinidel

    Excel to Text file Conversion issue

    Thanks for your input RonRepp. But I am saving worksheet not workbook. I have .xls files that have multiple worksheets and I have to save them as defferent text files. With workbook method it just saves the first sheet even though you try to iterate in for each wb as workbook next loop...
  16. vinidel

    Excel to Text file Conversion issue

    Hey guys, I am struggling with this issue for a long time, please help. I have this code that coverts excel sheets to text file. This was working till my system was upgraded to office 2003. Here is the code: Private Function SaveXLasText(ByVal XLSourceFilename As String, ByVal...
  17. vinidel

    'System.Runtime.InteropServices.COMException' when Using excel 11.0

    HI, I have a VB.NET application that converts excel sheets to text file using office XP. It was working fine as expected till my system was upgraded to office 2003. I have updated the references to excel 11.0 object library and I do not get any build errors. My code runs, it open excel files...
  18. vinidel

    How to convert tabs to carrort character in a tab delimeted text file?

    Thanks ThatRickyGuy for your guidance. Here is the code if someone needs it: Try ' Create an instance of StreamReader to read from a file. Dim sr As StreamReader = New StreamReader("C:\XLS-TO-TEXT\USING-XLS-LIB\XLStoTEXT\bin\FINAL.txt") Dim sw As...
  19. vinidel

    How to convert tabs to carrort character in a tab delimeted text file?

    Sorry I misspelled Delimited as Delimeted.
  20. vinidel

    How to convert tabs to carrort character in a tab delimeted text file?

    Hi ALL, I want convert a tabs in tab delimeted text file to carrort characters. Can anyone guide me how to do it using VB.NET code. Thanks

Part and Inventory Search

Back
Top