Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. 123121

    PDF Creation using MicroStation 95

    I've always used Distiller for creating a PDF files. The steps were as follows: 1) create a PostScript file from Ustation 2) create PDF file from PostScript file using Distiller Maybe there is an another way how to create the PDF, but you need appropriate plotter driver. Vlado
  2. 123121

    Making a program smaller

    I think you need to split your software progam to DLL's and/or ActiveX's. It hepls you with loading and your application to be a bit faster. But the space is nearly the same. Do you clean your arrays to remove unnecessarily information? Vlado
  3. 123121

    do .visible = true

    You can give the same name to all TextBox-es you want. Once you use the same name textbox-es will have an index. then you can work with them ysint that index. e.g. TextBox(1).Visible = True TextBox(2).Visible = False Vlado
  4. 123121

    Adding Tags to elements

    Does anybody know how to add a tag to the element using macro in MicroStation95, please. I'm tring to automatize processes in our company and this is the solution I want to use. I know that USTN 95 is a it old application but I believe there is an engineer who can answer me question. Many...
  5. 123121

    Search for string in excel cells

    Improved procedure: Sub DELETE_EXP() For MY_COLS = Range("IV1").End(xlToLeft).Column To 1 Step -1 CURRENT_CELL = Lcase(Range("A1").Offset(0, MY_COLS - 1).Value) If CURRENT_CELL Like "exp" Or _ CURRENT_CELL Like "*exp" Or _ CURRENT_CELL Like "exp*" Or _ CURRENT_CELL...
  6. 123121

    ARRAY FUNCTION

    While you are using dynamic arrays be carefull with using ReDim statment. This statment always clear all your array. To keep your array use following. The following code show how to increase your array with protecting all array data. 'ReDim Preserve MyArray(UBound(MyArray)+1)' Vlado
  7. 123121

    Excel shutting itself down

    Check if you have installed any Add-In's maybe there is any which closes your Excel session -> virus. Vlado
  8. 123121

    ACAD LT and Visual Basic

    As far as I know VB .NET does not support DDE future. You must use VB 6.0 Vlado
  9. 123121

    Column width

    I have tried to set width to Millimeters. I tried to set column width to 10mm. I used following procedure: 1cm = 567 twips 1mm = 56.7 twips 1point = 20 twips => 1mm = 2.835 points when I set up this value I NEVER get the result 10mm. I all the time got the value '9.789'. Can sombody help me...
  10. 123121

    Snaps...

    Guys, visit this web site www.arkitur.se/maf/snuttlisteng.htm there is tool called 'Quick Snap'. It works the same or similar to auto-snap in V8. It supports the intersection snap. Enjoy it, Vlado [pc2] Vlado
  11. 123121

    Microstation 95 key-in

    I'm using Microstation 95, version 05.05.08.11 Vlado
  12. 123121

    Microstation 95 key-in

    Does any body know why my ustation shuts down when I'm trying to insert text using key-in? Any suggestions appreciated. Vlado
  13. 123121

    Pro/E viewer

    Can somebody advise where I can download a free Pro/E viewer. Thanks, Vlado Vlado
  14. 123121

    How to stop other program?

    Hello, can somebody help me with the following, please. I need to stop CAD program which I did not create for a while (until user do a click on its window). Thanx, Vlado [pc2]
  15. 123121

    Font formating

    Hello, can somebody help me please? How can I change 'Slant' of font using Microstation Basic language? Vlado
  16. 123121

    Batch Files from Excel

    Use following code: Shell "C:\temp\MyBatchFile.bat",vbNormalFocus instead of vbNormalFocus you can use different from list Thanks, Vlado
  17. 123121

    Select custom color

    Hello, can somebody help me find out how can I select custom background color /open custom color dialog box which returns value of selected color/ for text box when macro runs (in runtime), please. Many thanks, Vlado Thanks, Vlado
  18. 123121

    excel --> microstation95

    I checked it but in Microstation95 is not option to insert OLE objects. Thanks, Vlado
  19. 123121

    I created MAcro based fiel in excel

    I created MAcro based fiel in excel. I saved this file as 'Excel Add-In' *.xla. When I starts excel my toolbars are visible on the toolbox. It is okey but every time I starts excel the dialog box with message "'Macros may contain viruses ...' Disable/Enable macros" is shown. Is there...
  20. 123121

    excel --> microstation95

    Can somebody help me with this issue, please. I am looking for a free utility or macro which allows to import excel table into microstation 95. Many thanks, Vlado
Back
Top