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

    Filtering mail by client location

    Because of the nature of my work, I have to generalize what I'm trying to do. Let's just say it's government-related. And the government doesn't want certain things to be viewable in certain places, no matter what the user wants. However, there are lots of potential applications of this. The...
  2. fatmosh

    Filtering mail by client location

    Okay, so say I can create Views that allow the user to see only what they are allowed to see based on content. How do I stop them from still seeing their Inbox? Can I disallow a user from seeing their own Inbox?
  3. fatmosh

    Filtering mail by client location

    Yes, all of the e-mails would remain on the server. No, we do not use PSTs. I'm looking for a way to dynamically filter which of the e-mails currently residing in a user's Inbox (or any other folder) they are able to see, based on what computer they are logged onto.
  4. fatmosh

    Filtering mail by client location

    I'm wondering if there is a way to filter the mail a user can see based on their currently logged in location. For example, Say I am VP of Sales and VP of Finance. So I get a lot of company sensitive financial e-mails. While I'm viewing e-mail at headquarters, I want to be able to see all of my...
  5. fatmosh

    SelectSingleNode and NameSpaces???

    I believe you need to add a default namespace prefix and reference it when you do any XPath queries (like SelectSingleNode). I had a similar problem and it was fixed by doing this. Try this: Change xmlns="http://www.someurl.co.uk/NS/2001-01-10" to...
  6. fatmosh

    Schema Constraints and XPath Namespaces

    Well I got part 2) working :-) But if anyone has any idea on Part 1, please let me know! Would I have to do some sort of "choose" statment in XSLT? Is there anyway I can just do it in an XSD file? Thanks!
  7. fatmosh

    Schema Constraints and XPath Namespaces

    I have to (seemingly) simple questions: 1) I'd like to enfore a child node to take the value of it's parent in a given situation using an XML Schema. For example: Assume the following ridiculous logic is true: If my parent likes pizza, I MUST like pizza. Otherwise, I may like pizza. So...
  8. fatmosh

    SQL Server 2000 Trigger

    Thanks for the quick reply, but unfortunately it is still not working. I changed the code to: CREATE TRIGGER masterSQL.ACTIVE_TO_FORMER ON USRCSQL AFTER UPDATE AS IF UPDATE (XKILL) BEGIN select * from deleted as d select xkill, casenum from inserted as i IF (d.XKILL IS NULL) AND (i.XKILL IS NOT...
  9. fatmosh

    SQL Server 2000 Trigger

    I have a problem that I can't quite figure out, but seems pretty simple to me. Basically, our company has a large database of clients. We would like to divide them into three categories: new, active, and former. Right now we have a GIANT table with ~55,000 records that include all of our...
  10. fatmosh

    Initializing a RAM

    My program has the need to intitialize an instance of a RAM on startup, before doing the actual algorithm. I am unsure of how exactly to do this. I have created a ram.vhd file which contains an array of 256 bytes. On startup, I need to put "0" in block zero, "1" in block 1, ..., "255" in block...

Part and Inventory Search

Back
Top