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...
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...
"... 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]
"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...
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]
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...
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
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
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...
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...
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...
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...
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...
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...
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...
"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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.