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. robwistar

    Installing a Print Server

    I've only done this on XP, but I would expect that the process is somewhat similar. It sounds like you have the server installed OK, but not the printer. Make sure that the print server has a static IP (at least to the network). I suspect that if you type that IP into a web browser, the...
  2. robwistar

    CA policy settings folder absent

    I have installed an Enterprise Root CA, and Microsoft tells me that I need to access the Policy Settings folder in the CA MMC in order to set it up to issue certifiactes for smart cards...
  3. robwistar

    Debate: C# v. C++ v. Java

    "... it might be better to say 'fully compiled code is potentially faster than managed code'." So in managed code you have full access to all the same resources that you have with unmanaged code? Rob [atom]
  4. robwistar

    Debate: C# v. C++ v. Java

    "But the C# and C++.NET will be do the same very soon." Well all the .NET stuff is managed code as I understand it. If you were to use C++ (not .NET) or any other language that directly comiles to executable code, that will always be more powerful than managed code, right? Even...
  5. robwistar

    Debate: C# v. C++ v. Java

    Thanks for the input everyone. I'll use C# for this project, but it seems I should stay on top of C++ and Java. If Java and C# as similar as seanbo suggests, that shouldn't be hard. Thanks again! Rob [atom]
  6. robwistar

    Debate: C# v. C++ v. Java

    I just graduated college with a Computer Engineering degree. In essence, this means I know a bit of programming and a bit of Electrical Engineering (heavier on the electrical engineering side). I have had a fair amount of Java experience in my early years at college, and some C++ in high...
  7. robwistar

    ActiveX component can't create object

    Bill -- Thanks for that. I couldn't find documentation in either of my books for that. You're a champion. Star for you! (and good eye on the typo) [blush] Rob
  8. robwistar

    ActiveX component can't create object

    oh, and the error "ActiveX component can't create object" seems to pop up when you try to set a property of the hyperlink, i.e.: hyperPackList.Adress = strNewPLFileName Thanks! Rob
  9. robwistar

    ActiveX component can't create object

    Thanks Bill, I will try to be more clear. Every time we make a shipment, we make up a packing slip. I have a table in my Access database that stores each shipment. It includes stuff like an id# and the date, etc. It also includes a hyperlink field that contains a hyperlink to the packing...
  10. robwistar

    ActiveX component can't create object

    Doh! I just realized that that you said that that code "works assuming 'hyperPackList' is a label." I am a bit new to Access ... how can hyperPackList be a label if you dimensioned it as a hyperlink? I have a shipment table with one of the fields being hyperlinks to the...
  11. robwistar

    Assembly to C/C++ compiler

    While I was at school (a mere few months ago) I actually asked this question of one of my professors. He told me that people have been working on programs that would construct procedural C code from assembly, but at this point they are mainly an academic exercise and they don't work well at...
  12. robwistar

    Access vs VB

    If you keep it in Access all users will need Access to run it. If they have Access already anyway, then that's not a real big deal. But if they need to buy Access to run your software, that isn't cheap. It's more professional to distribute an standalone executable over a database app. If...
  13. robwistar

    ActiveX component can't create object

    I have an idea what the problem may be, but I don't know what to do about it. From the VB help files: "You can use the Address property to specify or determine the path to an object, document, Web page or other destination for a Hyperlink object associated with a command button, image...
  14. robwistar

    ActiveX component can't create object

    billpower -- thanks for getting back. when i tried your code, I got the error: "Microsoft can't find the field 'hyperPackList' referred to in your expression" I don't know why it was looking for a field, but I am also not familiar with the use of 'Me!', so I tried removing that...
  15. robwistar

    Display Last Page of Records in a Form

    uh, that's Resume Next at the end there, sorry. Rob
  16. robwistar

    Display Last Page of Records in a Form

    You could start at the beginning of the table and scroll all the way through to the end. Not incredibly efficient, but it should work: On Error GoTo Err While (True) DoCmd.GoToRecord acDataForm, "WhateverForm", acNext Wend Err: Next Hopefully someone has a better...
  17. robwistar

    Creating Relationships Macro or Module

    Sounds like something you would have to do in SQL code, not VBA. I don't know how to do it, but maybe it will point you in the right direction.
  18. robwistar

    ActiveX component can't create object

    "ActiveX component can't create object" I get that error when I run this code: Dim hyperPackList As New Hyperlink hyperPackList.Address = strNewFileName It seems to crash on the second line there. If I comment out that second line, it crashes on the next line...
  19. robwistar

    Book Rec

    Well ... I just graduated college with a degree in computer engineering. So I am definitnely a techie, but I'm not sure if I'd consider myself a developer. But I'll look into it, thanks! Rob
  20. robwistar

    Book Rec

    Thanks, I'll look into that. Rob

Part and Inventory Search

Back
Top