Search:

Type: Posts; User: randem

Page 1 of 13 1 2 3 4

Search: Search took 2.67 seconds.

  1. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    The CR Merge Modules are there...
  2. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    You probably should dump PDW and use Inno Setup or another installer that will let you accomplish that simple task or it will be like pulling teeth down the road. PDW is only for the simplest of...
  3. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    I don't use PDW or it's affiliates. But I can tell you what you need to do and have done so.

    Yes, you have to include the CR installation with your installation. There is a process and you cannot...
  4. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    You basically cannot do it with that, unless it now has a way to run external installations...
  5. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    What are you using for an installer?
  6. Re: Check for Second Partition or Harddrive

    If you ask the OS it will give you all the drive letters of all drives???????
  7. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    You think in error... I have explained the error.
  8. Re: Best Installation, Setup, Deployment software

    For PDW, Yes...

    You have to understand PDW does not know anything about NT version OS's. You can fake your way thru it, but it is not advisable. Well not by me anyway...

    PDW was created in 98,...
  9. Thread: Delete Me

    by randem
    Replies
    5
    Views
    653

    Re: Error on scripting language

    A really bad statement. Take a look at what you are really attempting to do

    StrL = Mid(mText, lPos = InStr(mText, ")") - lPos - 1)

    should be

    StrL = Mid(mText, lPos)
  10. Re: Best Installation, Setup, Deployment software

    You will never see a list of best installation packages and tools for politics will get into it. The closest you will get here is the list in the FAQ in the Application Deployment Forum, it will be...
  11. Re: P7D Wizard says dependecies information out of date

    What versions Did the name Excel change with every version, cause I forget...

    My program does maintain a list. Once a program name is added it will not distribute that application.

    I am smarter...
  12. Re: Creating environmental variables during deployment

    What installer are you using? It's not a secret is it? ;) Better details gets better answers.
  13. Re: P7D Wizard says dependecies information out of date

    Why would that be absurd. They did know that they created Excel when they created PDW or was that a surprise to them? A simple list would be all that would be needed...
  14. Re: Please Help Me to Create Setup file with ISTool

    Who were these people???? :p

    There are much better ways of getting this accomplished. Did you try the Inno Setup Wizard, It helps (not a lot, but better that from scratch) or other third party...
  15. Replies
    18
    Views
    3,731

    Re: Crystal reports 2008

    You are not deploying everything that you need to deploy. Have you deployed the CR Merge Modules?
  16. Re: P7D Wizard says dependecies information out of date

    Just do not include Excel in the installation package. I find it strange that MS would create an installer then let it attempt to distribute their software which would be illegal...

    For DAO just...
  17. Replies
    5
    Views
    582

    Re: need help! -- sstab

    I gave you just about everything you needed to handle the SSTAB but it seems that post is irrelevant... :(
  18. Replies
    11
    Views
    7,522

    Re: Visual Studio 6 Installation

    Keithuk,

    I do have CD/DVD burners. But my original CD's are my backup. They NEVER come out for anything unless I blow away my software folders. This way I can carry around all the software I need...
  19. Re: using tag property to identify a control, is it possible??

    For you Control would work much better. I get into the habit of using object for I pass these things around my apps and like to make generic routines that will accept any type of object and...
  20. Re: Licence Agreement prompt in Inno Setup Compiler

    Why not just use the LicenseFile directive in the [Setup] section. It will automatically do the license file screen for you. All you need to supply is the text or RTF file to show.
  21. Replies
    11
    Views
    7,522

    Re: Visual Studio 6 Installation

    If it weren't for copying all my CD's to my HD, I would not have any backups at all. :)
  22. Replies
    11
    Views
    7,522

    Re: Visual Studio 6 Installation

    It's a zero length file that you can create yourself in the same folder that setup.exe resides.
  23. Replies
    5
    Views
    582

    Re: need help! -- sstab

    SSTab is a unique control. You need to understand how it works to be able to use it. You can't move the tabs, you will have to associate what you want to the tab in question. It is completely...
  24. Re: using tag property to identify a control, is it possible??

    It would help to actually know what you intend to accomplish...
  25. Re: using tag property to identify a control, is it possible??

    Something like that...
  26. Re: using tag property to identify a control, is it possible??

    Do you mean you want to identify all the text boxes, combo boxes, something like that? If so use the TypeOf command.

    Ex.

    Dim Ctl as Object
    ...

    For each Ctl in Controls
    If TypeOf...
  27. Replies
    3
    Views
    1,213

    Re: how to restrict list box for duplicate values

    You could also use a collection to weed out duplicates then populate the listbox.
  28. Re: [RESOLVED] what is the easiest/fastest way to clear/lock controls in a form?

    The simplest way to lock all controls is to lock (.Enable = False) the container they reside in. One line of code... All controls in the container will not be enabled.
  29. Re: how to store the values into array while looping

    If this code is correct you must do a simple thing:

    For Each objNode In objNodeList

    Redim Preserve bytesval(i)
    Redim Preserve numbers(i)
    Redim Preserve content(i)...
  30. Replies
    3
    Views
    666

    Re: Creating a ListBox using codes - help

    First you are posting in the VB6 forum when you should be posting in the VB .NET forum. You would get better help there.
  31. Replies
    3
    Views
    582

    Re: Handle runtime error '9'

    Why would you use split in that manner?


    Dim Items() as String

    Items = Split(text1.text,";")
    If Ubound(Items) < 5 Then
    MsgBox "I need Five Items"
    End If
  32. Replies
    9
    Views
    889

    Re: VB 6 dll's on virtual server

    Check your dlls VB6 uses 6 dll's and one tlb file for the runtimes. You are probably not deploying everything you need.
  33. Replies
    17
    Views
    1,344

    Re: IDE crashs after Windows update

    Well, Sometimes people attempt to create their own installers and without really knowing what they are doing and how the installation process works, they in turn force old dll/ocx/exe onto the target...
  34. Replies
    7
    Views
    862

    Re: Wanting To Create A Patch

    MS already provides a way to install just the VB6 runtime files???????
  35. Replies
    2
    Views
    1,887

    Re: Continuous Beep program

    A loop?????
  36. Replies
    7
    Views
    862

    Re: Wanting To Create A Patch

    What!?!?!?!?!
  37. Replies
    17
    Views
    1,344

    Re: IDE crashs after Windows update

    You probably have some shared mis-matched components.
  38. Replies
    8
    Views
    724

    Re: Deployment Issue

    Also just because you create an installation in XP doesn't mean it will install PROPERLY on other OS's or even on XP itself. There are many, many issues regarding a proper installation that are often...
  39. Replies
    13
    Views
    1,316

    Re: depedencies analyser

    PDW doesn't scan the files to find dependencies. You have to create a .dep file for the dll then give it to PDW. There is a function in PDW to create a .dep but it is iffy. VB does not register...
  40. Replies
    13
    Views
    1,316

    Re: depedencies analyser

    There are two app that can do that one I can say and one I can't. One is automatic and one is not. You can use Depends.exe on your dll and find dependencies (not automatic).
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width