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 gkittelson 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: Ramo83
  • Order by date
  1. Ramo83

    Delegates Hint

    Actually that's a bright idea, Thanks!
  2. Ramo83

    Delegates Hint

    Actually I realised that I still need to use the switch statement because the pointer does not know which opcode to perform (as you said). The thing that there's alot of cases in my code (lots of if-else or cases in the switch block), and I'm trying to find a clever approach to reduce the code...
  3. Ramo83

    Delegates Hint

    Let's consider the following piece of code: float Plus (float a, float b) { return a+b; } float Minus (float a, float b) { return a-b; } float Multiply(float a, float b) { return a*b; } float Divide (float a, float b) { return a/b; } // Solution with a switch-statement - <opCode>...
  4. Ramo83

    Delegates Hint

    Hi all, Can anyone give me a hint how can I replace a switch statement with a delegate? I'm using .net here and as I know there is no function pointers in the .net framework. Any help would be appreciated. Thanks.
  5. Ramo83

    Error 10721896683

    Sorry the Error code is 10721896682 (not 10721896683). Thanks
  6. Ramo83

    Error 10721896683

    Hello everyone, I'm trying to create an Xml file using VS.Net, but the problem when I validate the Xml document it always gives me this error: Invalid at the top of the document. Error code:- 10721896683... Any help would be appreciated. Thanks
  7. Ramo83

    Serializing TreeNode

    Can you please make it clearer? Thanks alot
  8. Ramo83

    Serializing TreeNode

    Hello, I want to serialize the object TreeNode, but it always throw this exeption: {"There was an error reflecting property 'ContextMenu'."} - this is the inne r exeption. I'm using the XMLSerializer to serialize the treeNode into a XML file. How can this problem be solved?
  9. Ramo83

    XMLSchemaComplexType question

    Hello everyone, I have a schema and I wish to navigate through it, when I have a complex type, I can get the sequence element in that complex type by: complextype.particle, but it's still treated as a particle and i can't get the elements inside it. How can I get the sequence element in that...
  10. Ramo83

    Xml Schema elements

    Hello, How can I get the elements from a xmlschema object and the elements count as well ? thank you :)
  11. Ramo83

    Covert to Binary Object

    Yes I'm trying to put the content of the file in the database. So I have to change the Fileinfo to a Binary Object (Sql Data type)... Thanx for the help
  12. Ramo83

    Covert to Binary Object

    Hello, I have files objects of type: FileInfo, and I need to change them to a Binary Object format so I can put them in a database... How can that be done please? Thank you
  13. Ramo83

    Filling a database with files

    ok thanx!
  14. Ramo83

    Filling a database with files

    Ok I have SQL Server 2000. I have files objects of type: FileInfo and I want to change (convert) the files to a binary objects... How can that be done please?? Thank you
  15. Ramo83

    Filling a database with files

    Hello, How can I fill a database with files (like mp3s or .jpeg)?? The thing that the database only support specific data types and it cant be filled by anything else... Thank u
  16. Ramo83

    Return Key

    Okay but what is the problem I just wanted to know more about the RegisterHiddenField method...
  17. Ramo83

    Return Key

    Actually I'm not that familiar with the RegisterHiddenField method... Any details please?? Regards, Ramo
  18. Ramo83

    Return Key

    Note that it's a form for a web application not a windows application.. Thanx, Ramo
  19. Ramo83

    Return Key

    Ok the problem that WebForm does not contain a definition for 'AcceptButton' property... Thanx, Ramo
  20. Ramo83

    Return Key

    How can I assign the "return" key to a specific button in the form? Im making a search engine and I want to press "enter" to make the search instead of clicking the search button... Thank you

Part and Inventory Search

Back
Top