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

Search results for query: *

  1. TheBigViking

    Anybody out there interested in talking about MS multitier dev issues?

    Stupid me. If I make sure that the client machines are running same version of MDAC as the server machine, I can put record sets in an bloody interface without any problems. Oh how the small things sometimes get the best of minds unstuck Yours sincerely, The Big Viking
  2. TheBigViking

    MSMQ on WIN98???

    Does any body know if it is possibleto install and run any version of MSMQ on WIN98SE to run in workgroup mode? Yours sincerely, The Big Viking
  3. TheBigViking

    MSMQ on WIN98???

    Does any body know if it is possible to install and run MSMQ (any version) on WIN98SE Yours sincerely, The Big Viking
  4. TheBigViking

    On Error is not trapping divide by zero

    Going back to the days when I used to write in QBasic the only time an error trap was really required was when the control actually left the program. For example, opening a file. Most other error checking used to be done in code. The practice of putting On Error Resume Next at the top of...
  5. TheBigViking

    How to avoid to run the program if one is already running!!

    You guys should keep something in mind. The form that is being loaded IS NOT THE APP. It is just the user interface to the app. What I am trying to say is this. Why must the app load directly into the form. Load it with sub main. From sub main you can do all the checking that you want to do. I...
  6. TheBigViking

    If DCOM a bit slow, Dial up connection window shown?

    When my client app running on WIN98 calls a method on the server machine, and if it takes a bit long, I mean a second or so, the Dial Up connection window is displayed. Is there any way that I can prevent this from happening? The Big Viking
  7. TheBigViking

    Anybody out there interested in talking about MS multitier dev issues?

    Hi JohnK You seem to be just the right kind of person to ask my question too. Let me give you a bit of background first though. I started developing the system about 6 months ago. I am an old hand at assembler language, and a bit risky with C,C++. How ever ever since I started with VB6 I have...
  8. TheBigViking

    ROLLBACK solution ?

    MTS can do it for you The Big Viking
  9. TheBigViking

    1 dll or multiple dlls?

    Depending on how large things are going to get, you could divide the DLL into logical blocks. To go one step further you could put interfaces between these logical blocks. This would enable you to recompile one logical block with out having to recompile the whole lot. Keep in mind that large...
  10. TheBigViking

    design strategy - objects or interfaces?

    An option is not to change the I_Searchable interface but to implement a new interface I_Searchable2 (for example). The server then implements both of these interfaces, thereby catering for both the old and new clients. The Big Viking
  11. TheBigViking

    Does COM+ export TLBs?

    I have just started changing the interfaces to my classes from VB empty interfaces to IDL compiled interfaces. This is all working fine. Do not know why I didn't get into IDL a long time ago. Know the question I have to ask is this. When COM+ exports the component to a client (via the MSI) does...
  12. TheBigViking

    COM+ Events on WIN98SE

    I gave up trying. I now use RPC to call a class whose methods raise events of the exact same names as the COM+ event methods. Instead of subscribing to transient events, I use the old faithfull WithEvents. At first it meant I would mean I would have to have 2 seperate sets of client software...
  13. TheBigViking

    How to avoid to run the program if one is already running!!

    Instead of starting the EXE with a form, start is with Sub Main. In sub main you can check e.g. a registry setting to see if the app is loaded. If loaded, it is easy to end, else load and show the form from here. In form load set a registry entry and on form unload clear the setting. The Big Viking
  14. TheBigViking

    On Error is not trapping divide by zero

    Instead of relying on error trapping, do your own error checking for example "If length = 0 then exit sub" The problem with error traps, which in this instance is so big, is that you can hide errors. All you are looking for is divide by zero. Why must you trap for all possible errors...
  15. TheBigViking

    MSMQ 2.0 or 3.0 on WIN98 ???

    Does any one know if and how MSMQ 2 or 3 (preferably 3) can be installed on WIN98 SE? The Big Viking
  16. TheBigViking

    MSMQ

    I see that you want to create a private message queue. If msmq was not installed for work group mode, I have found that private queues are not allowed. From what I know is the in this case msmq is looking for ADS (advanced directory service) and not finding it. The Big Viking
  17. TheBigViking

    MSMQ 2.0 or 3.0 on WIN98 ???

    Does any body know if and how either MSMQ 2 or 3 can be installed on windows 98 to be used in work group mode? The Big Viking
  18. TheBigViking

    System goes to A drive for about 30 seconds even when not requested

    I have found that sometimes a DLL can be registered on the A drive - believe it or not. Windows then tries to find this DLL on this drive. To check for this do a search through the registry for a:\. See what you find. Be carefull though. The Big Viking
  19. TheBigViking

    COM+ Events on WIN98SE

    I need to know if it is possible to get COM+ events to work on WIN98SE. I have developed a system where a central COM+ Server app used RPC to activate COM+ events on remote PCs. But I do not know of any way to get these events to run on WIN98. I have tried exporting the server events, and...

Part and Inventory Search

Back
Top