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

Recent content by shiningblade

  1. shiningblade

    CFMX WDDX Serialization Problem

    As it turns out, we have some java that is creating the hashmap that becomes the structure. To get around the problem we found that casting all the values in the hashmap to strings then building the table works ok. I don't get why serialization causes a change in the actual values when they are...
  2. shiningblade

    CFMX WDDX Serialization Problem

    When serializing a rather large structure I am having numbers (e.g. 1.8) being changed (e.g. 1.799999999532) for not apparent reason. I have double checked the structure and the packet and the number is definitely being changed during the serialization. Deserializing does not change it back...
  3. shiningblade

    Bad Software - Is there a Code of Ethics?

    A person can dream can't they ;-)
  4. shiningblade

    Bad Software - Is there a Code of Ethics?

    Don't hold your breath. The website was last updated in 1998. ;-) Anyways, I don't think it is the Software engineers that need to sign a code of ethics. It is management that has to. With statements like: "I will not allow scope creep." "I will get the developer the required...
  5. shiningblade

    Plugging your own site.

    I think Cian means promoting/advertising it in the forums either in a sig or in the body. Jude
  6. shiningblade

    People taking things the wrong way

    Joking or not, you crossed a line and put a threat in a document. That was just ignorant of you (you did not consider how she would react). I don't blame her for reacting the way she did, with recent conflict in the workplace, I have seen that women tend to react to threats of violence with more...
  7. shiningblade

    Exactly what is "software"?

    Software is a very vague term as the debate here has proved. It is easy to differentiate what is not hardware but classifying it further is getting more difficult. XML, for example, is not only the raw data, but also can explain how it is organized. So more and more, I think definitions will...
  8. shiningblade

    Importance of Primary Keys

    How important are primary keys in a SQL Server database? I know someone who says it is common practice not to use them. Is he out to lunch?
  9. shiningblade

    Option Group Problem

    Make sure your back style is transparent. Jude
  10. shiningblade

    What is the future of eBooks?

    Peter, I think ebook88 is right. You are going to have to be more specific about the tiny bit of advertising going on. I cannot see it at all, it must be buried beneath the whole lot of advertising going on. ;-) Jude
  11. shiningblade

    XP - The death of Microsoft?

    If it has to be stable, it has to be OS/390 Jude
  12. shiningblade

    Open recordset behind form

    On the exit of the txtZip field you can put the following if not(Me!txtZip = "" OR isnull(Me!txtZip)) then txtCity = dlookup("[city]", "ZipCodes", "[zip] = " & Me!txtZip) end if HTH, Jude
  13. shiningblade

    creating carriage returns in a memo field

    You can press <Ctrl> <Enter>. This means there might be a bit more user education than normal but it will probably save you a lot of headaches. Jude
  14. shiningblade

    Criteria from text field on form

    But what does the format of the string in [Forms]![frmSearch]![txtComments] have to look like? Jude
  15. shiningblade

    Criteria from text field on form

    I would like to have the criteria of a field in my query to come from a text field on a form. [Forms]![frmSearch]![txtComments] is populated by a VBA function that will parse and format text from another field. I then want to use [Forms]![frmSearch]![txtComments]as the criteria for the field...

Part and Inventory Search

Back
Top