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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ErantD

  1. ErantD

    Directive Skip for specific Databases in a specific instance

    Hi, (Legato Server 7.3.4 build 560) I am trying to skip a snapshots using SQL module 5.0.0.154 using a directive. I am not able to do this after trying lots of different directives. I am treating the snapshots like if they where databases, and if I use the backup command "nsrsqlsv -h...
  2. ErantD

    Qlogic HBA in Solaris 8

    Hi, I am quite new to Solaris. I just installed a Qlogic HBA in a solaris 8 system. Followed the install instructions no porblem. Now I want to check if the system has recognized the HBA and its using its driver. Where can I see this?
  3. ErantD

    Explorer in VB to get a path to a document

    After searching on this site for some more I found an answer: Dim xl as Excel.Application, fn Set xl = CreateObject("Excel.application") fn = xl.GetOpenFilename If fn <> False then 'do something with fn End if Where fn is the path : )
  4. ErantD

    Explorer in VB to get a path to a document

    How do I make a little explorer come out in my VB project so that the user can look for a file and when he hits the accept I can get the path to that file. simply a grafical interface for the user to search PC the PC for his/her file and press accept. Then the program has the path in a variable.
  5. ErantD

    Decimal coma changes to decimal point WHY

    I am making lots of administratice Macros, but my boss tells me that when he uses my Macros his decimal comas change to the american style decimal points. I am in Spain and my boss uses the Spanish coma for decimals and I use the american point for decimals in my computer. Why does this...
  6. ErantD

    Creating an Array of Objects using VS Basic for Excel Macros

    Answering my own question with help from &quot;dougcranston&quot;. This is what I did I gave my checkboxes a TAG with consecutive numbers, and placed my checkboxes in a frame. Then I used the fallowing code= Private Sub CommandButton1_Click() Dim ctrl As Control Dim x As Integer For Each...
  7. ErantD

    Making an Array of checkboxs using VB for Excel Macros

    How do I turn an Object name into an Array. Example I ahave 10 checkboxes and I´d like to turn them into a array to use in a loop. Note I am using Visaul Basic for EXCEL MACROS and simply copying the name or putting the name in the name type column can´t be done. How do I do this for Excel...
  8. ErantD

    Creating an Array of Objects using VS Basic for Excel Macros

    How do I turn an Object name into an Array. Example I ahave 10 checkboxes and I´d like to turn them into a array to use in a loop. Note I am using Visaul Basic for EXCEL MACROS and simply copying the name or putting the name in the name type column can´t be done. How do I do this for Excel...
  9. ErantD

    Arrays copying

    Remeber arrays start at 0 thats why I started at i=0, if i=0 is empty, put i=1 and same for k. :)
  10. ErantD

    Arrays copying

    simple dim i as integer dim k as integer for i=0 to 2 for k=0 to 100 b(k,i)= a(k,i) next k next i
  11. ErantD

    Turn Object Name into an Array

    How do I turn an Object name into an Array. Example I ahave 10 checkboxes and I´d like to turn them into a array to use in a loop. Note I am using Visaul Basic for EXCEL MACROS and simply copying the name or putting the name in the name type column can´t be done. How do I do this for Excel...

Part and Inventory Search

Back
Top