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: *

  • Users: Polu
  • Order by date
  1. Polu

    Is the american dream still possible?

    Hello. I am from Spain. I am a Computer Engineer (5 years at University). I have worked for three years as a consultant in a major company all over Europe and Latin-America. It was a challenging and fulfilling job but too much overtime (+80 hours per week) and too much political crap. I...
  2. Polu

    Fowler's Analysis Patterns - still good?

    PoEAI is an excellent book, also. http://www.enterpriseintegrationpatterns.com/
  3. Polu

    TransactionScope and MSMQ

    Hello again. I found it. Rigth code is: using (TransactionScope scope = new TransactionScope()) { using (MessageQueue myQueue = new MessageQueue(QUEUE_NAME)) { if (myQueue.Transactional) { myQueue.Send(TicketTextBox.Text, "Message"...
  4. Polu

    TransactionScope and MSMQ

    Hello, I am trying to use System.Transactions and MSMQ with no success. In http://msdn2.microsoft.com/en-us/library/system.transactions.aspx it is said: "The System.Transactions infrastructure makes transactional programming simple and efficient throughout the platform by supporting...
  5. Polu

    OO logical question (DB Insert Method)

    To map a relational model into an object oriented model is a difficult, recurrent and unresolved topic. Take a look here: http://www.tek-tips.com/viewthread.cfm?qid=487289
  6. Polu

    learning COM

    It looks like COM has become a niche just like COBOL and we, the old guys, are trying to protect our jobs. Well... you should start reading "Essential COM
  7. Polu

    dcom and xp sp2

    May be too obvious but... did you run dcomcnfg? By default SP2 disables DCOM support.
  8. Polu

    Working on a collection / temporary object

    I agree with stevexff, I think that command pattern is the better option for you.
  9. Polu

    Handling collections of errors

    VolkerStamme: Overloadig the equal operator is going to be a nigthmare for a poor maintenance programmer in 2007. Please, flood your code with remmarks about this!
  10. Polu

    UI Validation

    Hello. Not sure if I understand you correctly, but I don't think that security issues should be oriented to data validation. Security effort should be oriented to identification of users and managing rigths for users/groups of users. I mean, a user will type his user/password pair and he will...
  11. Polu

    UI Validation

    The ASCII diagrams are not well displayed; you should cut and paste them into notepad.exe to see them properly.
  12. Polu

    UI Validation

    Hello. You will need a four tiers design instead the now classical three tiers model. Which means: Tier 1: Database access layer (not discussed here) Tier 2: Business layer: This is the place for "Only customers 21 and over are allowed to register for subscription" kind of rules Tier 3...
  13. Polu

    AOP

    Hello, Sorry for my ignorance but, what do you mean by "AOP concepts" Thank you! Polu.
  14. Polu

    ADT - Lists

    It depends on the sort algorithm you use. Most commonly will be O(n^2)
  15. Polu

    ADT - Lists

    a) An array b) A balanced B-Tree
  16. Polu

    Search a string while a character is met

    Sorry! #pragma intriNsic
  17. Polu

    Search a string while a character is met

    Hello. Not pretty sure about what you want to do; But I think you should use inline assembler and #pragma intrisic In fact, I don't know the difference (if any) between #pragma intrisic and the keyword inline. However, if you are going to write assembly, I think you should use RISC...
  18. Polu

    Hex String to Decimal Conversion

    Algol 68 !!! How old are you, xwb?
  19. Polu

    CoCreateInstanceEx fails after installing XP Service Pack 2

    Hello. You should run dcomcnfg because the SP2 installation disables COM+. Regards, Polu.
  20. Polu

    searchmiracle #$%$% pop-ups !

    Hello. Please, look at http://www.tek-tips.com/viewthread.cfm?qid=970140&page=1 Good luck!

Part and Inventory Search

Back
Top