Here are my questions:
1) How do I turn the entire menu bar off -file, view, help, etc....? -using VBA of course
2) How do I create a directory? - Again using VBA
3) How do I find screen resolution (example, whether I'm running on 800x600, 640x480, etc...)? Is it possible?
4) I have added a checkbox, I want to change its name and caption, the problem is when it is added, I don't know its name, how can I go about changing a checkbox's name when I first add it? Here is my code to add the checkbox:
Selection.InlineShapes.AddOLEControl ClassType:="Forms.CheckBox.1"
finally....
5) I open a document (doc1.doc) using the file open command (like clicking with my mouse no code), I then click a button in doc1.doc, and it opens a new document (doc2.doc). How do I find the name of doc1.doc? The reason is, I need to pass the value of a checkbox from doc1.doc to doc2.doc.
1) How do I turn the entire menu bar off -file, view, help, etc....? -using VBA of course
2) How do I create a directory? - Again using VBA
3) How do I find screen resolution (example, whether I'm running on 800x600, 640x480, etc...)? Is it possible?
4) I have added a checkbox, I want to change its name and caption, the problem is when it is added, I don't know its name, how can I go about changing a checkbox's name when I first add it? Here is my code to add the checkbox:
Selection.InlineShapes.AddOLEControl ClassType:="Forms.CheckBox.1"
finally....
5) I open a document (doc1.doc) using the file open command (like clicking with my mouse no code), I then click a button in doc1.doc, and it opens a new document (doc2.doc). How do I find the name of doc1.doc? The reason is, I need to pass the value of a checkbox from doc1.doc to doc2.doc.