Search:

Type: Posts; User: koolprasad2003

Page 1 of 12 1 2 3 4

Search: Search took 0.02 seconds.

  1. Custom document properties font gets changed when update fields

    Dear all

    i have place some custom document properties in my DOCX document and when i update them using MACRO its font gets changed ? can anybody help me to get out of this issue ?

    What to...
  2. MsOf07 How to pick 4 lines before and after word table

    Dear all
    I have a word table in word 2007 docx file, I want to read table content (that I have done successfully) , now I want to read 4 lines which exists above and below table
    How to read it...
  3. Replies
    3
    Views
    3,793

    MsOf07 Get selected text in VBA

    Dear all
    I have word document I which I have 10 lines. if I select line 1 and 7 with control key, how can I get only selected lines in VBA ?
    I have tried with 'Application.Selection.Text' but it...
  4. Replies
    3
    Views
    4,719

    MsOf07 Re: How to deploy Macro

    Thanks for reply.
    But what step do I need to follow to deploy macro on each machine ?
  5. Replies
    3
    Views
    4,719

    MsOf07 How to deploy Macro

    I have used Custom Fields in my DOCX file and update them using OpenXML, but custom fields are not getting updated in document.
    So I have write following macro to update field, it run well on my...
  6. MsOf07 Re: Word protection issue for DOCX file

    It seems there is problem for DOCX file in protection, i have resolved the issue by using openword xml DSK, it works like charms !!!
  7. Replies
    1
    Views
    6,261

    MsOf07 Word to pdf using PDF maker in C#

    I have a Adobe acrobat and word 2007 installed on my machine, I want to create pdf using 'Adobe Pdf maker office com addin' How can I do it using C# ?
    How can I click create pdf button on a ribbon...
  8. MsOf07 [RESOLVED] Word protection issue for DOCX file

    Hello all
    I have protect my word document with protection type as 'word.wdprotectiontype.wdallowonlyreading' in VB.NET.
    Now after some time I have unprotect it, and again I protect it with...
  9. MsOf07 How to convert word table to clean HTML in VB.NET

    Hi all

    I have a word file with few tables in it, when I convert word to filtered HTML using VB.NET, word add extra tags in it for tables, How do I remove them ?

    I just want text-align, bold,...
  10. MsOf07 How to convert word table to xml with customized tag

    Hello all
    I want to convert word table to xml with customized tag, basically I have word document with a table in it, now I want to convert that word table to some customize xml document like...
  11. MsOf07 How can i disable 'SaveAs' and 'Print' option in word document using vb.net

    Hello all
    I want to make 'SaveAs' and 'Print' options disable from my document using vb.net, Is it possible ?
    is there any other way to do that ?
    Or how can I stop user from make a copy of...
  12. Replies
    5
    Views
    3,860

    MsOf07 Re: How to write a macro using VB.NET

    Thanks for reply RobDog
    What I exactly want is, avoid copy paste content and printing from my word document, I have tried with word protection with 'readonly' locking but, still I can able to copy...
  13. Replies
    5
    Views
    3,860

    MsOf07 How to write a macro using VB.NET

    Hello all
    I have a word file and I want to restrict a copy paste in it, so I need to write a macro for that word file, I know how to write it but i want to do it programmatically using vb.net
    ...
  14. VS 2010 How do i change PDF version to 1.4 using iTextSharp

    Hello all
    I have a PDF file with version 1.5, I want to change its version to 1.4 using iTextSharp, I tried with following code but failed to change the version, How can I do it
    Here is my code...
  15. Re: How do i draw flow chart using VB.NET (programatically)

    Thanks for reply jm and boops
    can you give me some sample code so that I can try with the same
  16. How do i draw flow chart using VB.NET (programatically)

    Hello all
    I have a VB.NET windows application, I need to draw a flowchart using VB.NET windows application (programmatically) ? I have tried with word shapes but find it hard as we need to give...
  17. VS 2010 Application Takes time to close file on network share on windows server 2008

    Application Takes time to close file on network share on windows server 2008 with client windows 7 ?

    Hi All
    I have a simple application which will create and write a file on network share folder...
  18. Re: Windows task scheduler not running when select "Run whether user is logged on or

    Its SQL Server 2005. Schedule task is configured using Domain\Administrator account. There is not integrated security tag in connection string. My SQL is installed on same machine.
    Database...
  19. Windows task scheduler not running when select "Run whether user is logged on or not"

    Hello all

    i have create an exe for some database operations, this exe needs to be run on each minute and do some database operations.
    when i create a shceduler and configure it for 1 minute run...
  20. MsOf07 Re: How to call XLA macro in Excel using vb.net

    Can you please correct my code so that it will be helpful for me :)

    Thanks in advanvce
  21. MsOf07 Re: How to call XLA macro in Excel using vb.net

    Thanks for reply westconn, but it gives me following error
    "Cannot run the macro 'Import_Data.xla'. The macro may not be available in this workbook or all macros may be disabled."
    But the macro is...
  22. MsOf07 How to call XLA macro in Excel using vb.net

    Hi ALL
    I have create a XLA macro in excel, it has some UI for user inputs and it will generate output accordingly.
    The macro is already in addins section.
    Now my task is to open that excel file...
  23. MsOf10 Re: Catastrophic failure in EXCEL 2010 (Home and business edition) 64 bit

    Yes. I have resolved this error.
    Basically to get the handle of excel object do not use "objExelApp.Hinstance", use (IntPtr)objExelApp.Hwnd instead.

    Hope it helps to members who got this issues.
  24. VS 2010 How to update/upgrade my windows appliation using MSI setup project

    Hello all
    i have developed a windows based application and create a setup project MSI to deploy it.
    deployment was success and everything runs as expected. Now i have fix some bugs in my...
  25. MsOf10 [RESOLVED] Catastrophic failure in EXCEL 2010 (Home and business edition) 64 bit

    I have Open a excel file using C#.NET (COM application) and trying to get it's HInstance but it gives me error on 64 bit EXCEL 2010.

    Here is my code

    objExelApp = new Excel.ApplicationClass();...
  26. VS 2008 How to Update the installed Window Application

    i have created the window application and i have created the setup of that application that has been installed to client machine.Now the requirement is that if i will do the further modification to...
  27. VS 2010 Windows scheduler task is running Continuously after i restart my machine

    I have a VB.NET windows based application, which send mail to clients after 1 hours if the flag is TRUE in database. So i have developed a code to send email depend on the flag status.

    For sending...
  28. Replies
    2
    Views
    2,558

    VS 2008 screen flicker due to Dock fill style

    I am developing a window based application in VS2008, it has 3 forms.
    on each forms i have used TableLayout panel and set the Dock property to FILL.

    due to this, on page load my screen get's...
  29. Replies
    1
    Views
    1,043

    MsOf07 How to read MDI file content

    I have a MDI (Microsoft document Imaging) file. how to read content of MDI file using c#.net / VB.Net
  30. Page can not be displayed in IE8 for asp

    Hi friends
    Let me explain you sitution
    we have two offices where this code used. office A and Office B
    office A has application server installed, my asp application running well in Office A. with...
  31. Replies
    2
    Views
    533

    Print a given file using VB6

    How to print a given txt file using vb 6.
    without printdialog box.
    Means i need to implement "print now" functionality.
    how to do that ? :confused:

    Thanks in advance
  32. VS 2008 Error occoured when EXE run by Task schedular

    In my application, Application server and database server are different.

    MS-SQL Server 2005 installed on Database server.

    One program (.exe) scheduled on Application server which connects to...
  33. Replies
    0
    Views
    400

    MsOf07 Docx to HTML list tags problem

    I have a ordered list in word document, what i do is, convert my word document to HTML (using saveAS filtered HTML) in word 2003. it put proper LIST tages with <li><ol>

    for the same content in...
  34. MsOf07 while converting DOC to HTML special char not convert

    while i save my doc file in HTML using (wd.saveFormat.FormatHtml)

    it will not convert special characters in HTML. special characters like (o Degreesign, alphasign, beta sign, TreadMark sign).
    ...
  35. Replies
    1
    Views
    602

    MsOf07 file is locked for editing by user

    i have got this error while opening my word document, following line give me error

    objDoc = ObjApp.Documents.Open("//word file path")

    i have googled for above problem microsoft says,

    1....
  36. Replies
    0
    Views
    443

    MsOf07 Word protection problem

    I have protect my word file with ProtectType.CommentOnly but it not works properly with .DOCX file. It will lock whole word file [ProtectType.ReadOnly].
    Same code works fine with .DOC files.

    Is...
  37. MsOf07 Re: what access permission should i give to run my application

    thanks for reply.


    now when i login with Administrator account on XP it works fine but if i login with limited access user account it throws following exeption

    "Creating an instance of com...
  38. MsOf07 what access permission should i give to run my application

    i have a application developed in C#.net, which read the content of word file.using Interop.word 12.0 assembly library.
    now if i login with Administrator account it works fine but if i login with...
  39. Re: why is cookie still working when browser has cookies disabled?

    have you disabled your cookies like this ?
  40. SQL Server does not exist or access denied

    I have SQL Server 2005 installed on Windows Server 2008 R2.
    Now when i connect to database from my application which is installed on Windows server 2003 it gives me following error

    SQL Server...
Results 1 to 40 of 478
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width