.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Title bar not updating

2 REPLIES 2
Reply
Message 1 of 3
Luigi71
450 Views, 2 Replies

Title bar not updating

First of all I wish to greet all.

Then, I wrote a loop to save automatically a list of documents with the SaveAs method (Database.SaveAs).

The code is the following:

 

doc.Database.SaveAs(path, True, DwgVersion.Current, doc.Database.SecurityParameters).

 

While the documents are correctly saved with the correct new name (e.g. Map1.dwg, Map2.dwg, etc.)  in the correct location, the doc.Name properties are not updated, the title bar of autocad also. They still remains Drawing1.dwgDrawing2.dwg, etc.

 

Anyone have some suggestion?

 

Thanks

Tags (2)
2 REPLIES 2
Message 2 of 3
Balaji_Ram
in reply to: Luigi71

Greetings to you too.

 

Saving the database with a different file name does not update the document.

To do that, you can send the "SaveAs" command as in this code snippet :

 

[CommandMethod("Test", CommandFlags.Session)]
public void TestMethod()
{
    object filediaVariable = Application.GetSystemVariable("FILEDIA");
    Application.SetSystemVariable("FILEDIA", 0);

    DocumentCollection acDocMgr = Application.DocumentManager;
    foreach (Document doc in acDocMgr)
    {
        dynamic acadDoc = doc.GetAcadDocument();
        String newFileName = doc.Database.Filename.Replace(".dwg", "_New.dwg");
        acadDoc.SendCommand(String.Format("saveas\n\n{0}\n", newFileName));
    }
    Application.SetSystemVariable("FILEDIA", filediaVariable);
}

I have used the dynamic keyword available in .Net framework 4.0. If you are using AutoCAD 2011 which targets the 3.5 framework, you can replace it with AcadDocument and add references to the AutoCAD COM interop assemblies.

 

 

 



Balaji
Developer Technical Services
Autodesk Developer Network

Message 3 of 3
Luigi71
in reply to: Luigi71

Thanks for the tip.

 

Seems to works fine

 

Very Helpful

 

Thankyou

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost