Search:

Type: Posts; User: batgurl

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    1,163

    Re: How to call this legacy function in C#?

    byte[10] dtmfBuffer;


    Will not compile.

    I think you mean:



    byte[] dtmfBuffer = new byte[10];
  2. Replies
    4
    Views
    1,163

    How to call this legacy function in C#?

    Some kind person show me how to call this in C#?

    In VB6 I use:


    Declare Function GX_GetDTMFKey Lib "GxVoice.dll" (ByVal ChannelNo As Integer, ByVal DTMFCount As Integer, ByRef DTMFString As...
  3. Re: [2.0] Best way to use common code between solutions?

    Ok. Let me set it out in detail:

    I have a number of C# projects. Each of them should compile to a single exe.

    There are some common elements that exist in all of these projects. For simplicity...
  4. Re: [2.0] Best way to use common code between solutions?

    Well at least I've only got two eyes ;)

    I'll try the GAC route - but it isn't quite what I was looking for.

    I hoped for something like the good old VB6 days when you could include the same...
  5. Re: C# - PC fingerprint (for program piracy protection)

    That's a good idea. Limiting installs by time sounds fair.

    You could also perhaps do something with upgrades. Only allow upgrades to the system with the most recently issued activation key.

    If...
  6. Re: [2.0] Best way to use common code between solutions?

    ..err, yes I did.



    Do you know the answer please?
  7. Replies
    0
    Views
    496

    [2005] Need advice on IP phones on lan

    I'm starting a project to build a pabx (telephone exchange) in software.

    This would use IP phones on a company lan. To start with the traffic will be internal, phone-to-phone; more like an...
  8. Re: C# - PC fingerprint (for program piracy protection)

    A certain proportion of users will install a second copy on another machine and ask for a new code. That's just one of the drawbacks of this method, You have to use judgement if a user requests...
  9. Re: [2.0] Best way to use common code between solutions?

    So there is no way to have a common code base that is used in different EXEs and gets updated automatically? If the code base changes then the new code has to be copied into EVERY project that uses...
  10. Replies
    14
    Views
    1,098

    Re: Prevent Piracy of my product

    This thread helped me:

    http://www.vbforums.com/showthread.php?t=250436

    BG.
  11. [2.0] Best way to use common code between solutions?

    What I want to do:

    I have common code for utilities I will use in different programs. I want to store in one place, so that when code is improved (performance/remove bugs) all programs will be...
  12. Replies
    4
    Views
    516

    Re: HELP!! MS Word from inside VB6

    Right. I found the constants:

    Const wdFindContinue = 1
    Const wdReplaceAll = 2

    But now when I run it it bugs out with a 438 (Object does not support property or method) at
    ...
  13. Replies
    4
    Views
    516

    Re: HELP!! MS Word from inside VB6

    Hey thanks!!!

    Okay I did that and got


    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
    .Text = "abc"
    .Replacement.Text =...
  14. Replies
    0
    Views
    446

    Fax modem codes

    I am writing a VB6 program to check customer fax numbers. It's for a huge database and it's suspected a small proportion of the fax numbers have been corrupted by a bad SQL update.

    It takes the...
  15. Replies
    4
    Views
    516

    HELP!! MS Word from inside VB6

    I have a project using VB6 and MS Word 2003.

    I need to open an existing Word document, find some text in it, replace that text and close the document.

    I think I need something like:

    Set...
  16. Replies
    4
    Views
    560

    Re: Jet connect string

    fixed it myself

    just took out '|Write' so i use


    "; Mode=Read"
  17. Replies
    3
    Views
    840

    Re: Alpha blend icons

    thanks that works great!
  18. Replies
    4
    Views
    560

    Re: Jet connect string

    sorry mark dont work

    says variable not defined
  19. Replies
    4
    Views
    560

    {RESOLVED BY ME}nJet connect string

    can you u help unbug this connect string pls

    works with ordinary db but fails if it is a read only db which want to open for view and look up only

    sSQL = "SELECT * FROM [Table 1];"
    DBPath =...
  20. Replies
    3
    Views
    840

    {REZOLVED} Alpha blend icons

    is there way to show XP alpha blend icons on a vb6 form?

    not the image or the picture control does support them
Results 1 to 20 of 23



Click Here to Expand Forum to Full Width