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

    Best practice using XML and XSDs to map against database

    We have a ReST Web Service that uses POST - to insert data into database (unmarshall data from XML), and GET to retrieve data (marshalled into XML). An XSD is used to create Java objects to marshall/unmarshall data to and from a database. We kind of froze the XSD as it is, because we thought...
  2. golcarlad

    Find out when a method is triggered

    So if my Class does not know anything about the form class - and vice versa, how does the class notify the form that something just happened?
  3. golcarlad

    Find out when a method is triggered

    I appreciate what you guys are saying, but what Im doing is pretty non-standard - it invloves COM classes and .NET wrappers and this causes all kinds of nastiness. The way I see it - I can only use statics, but then again I dont think this will work anyway, I just dont see how an instance...
  4. golcarlad

    Find out when a method is triggered

    well, the static method populates the string variable, but when does the instance method know when to show the message box? - it needs to know as soon as the variable is populated and then show the message box.
  5. golcarlad

    Find out when a method is triggered

    Hi I know my problem will invariably involve something to do with delegates and/or events, but I'm not exactly sure how to implement them at the moment. The basic problem - 1) I must somehow find out when a static method in my class is triggered by some other object. 2) The static method...
  6. golcarlad

    Visual Inheritance - Property Getter/Setter doesn't seem to work

    have you got a link to the feature lists - Im just curious?
  7. golcarlad

    Visual Inheritance - Property Getter/Setter doesn't seem to work

    This is rubbish - how can MS make such a big song and dance out of this functionality and even have it on the their certification exam!!! - and it does not work! Amazing!
  8. golcarlad

    Visual Inheritance - Property Getter/Setter doesn't seem to work

    So what do you do if you have forms that share similar functionality ? Do you explicitly deactivate controls etc.
  9. golcarlad

    Visual Inheritance - Property Getter/Setter doesn't seem to work

    I have a 2 forms - parent and child. The parent has a property related to a label control, like so: [Category("ToggleFooLabel")] [Description("Set whether label is visible or not")] public bool ToggleFooLabel { get { return lblFoo.Visible; } set { lblFoo.Visible = value; }...
  10. golcarlad

    Newbie Question - Copy a file

    Hi, This is going to be a dumb question - but Ive just started Python today (from a C# background), using PythonWin too. I know how to programme fine in C#, so this environment is all a bit wierd to me. Can someone give me a heads up to get a simple program working. I just want to copy a...
  11. golcarlad

    Interesting Problem - Finding the closest coordinate....

    Hey guys - This is so much more than I expected!! thanks for your contributions - I am going to put them to the test and take it from there, but it has put me on the right track anyway - so thanks to Jason Meckley and AlexCuse who took the time to come up with some very worthy solutions...
  12. golcarlad

    Interesting Problem - Finding the closest coordinate....

    This is a problem I have been trying to figure out - but I guess because I'm not so good with maths - Im always on the back foot - so maybe (hopefully) there is someone out there who could come up with a snazzy algorithm to do the following - as fast as possible really - as speed is the issue...
  13. golcarlad

    Properties.Settings and accessing the values from other dlls

    Hi, Just wondering if there is a way I can access all my values held with my core startup project Properties.Settings file - from other projects/dlls in my Solution, as I have many errors saying: The name 'Properties' does not exist in the current context C:\fooProject\bar.cs TIA Simon
  14. golcarlad

    Video tutorials

    I find videos easier to digest - and it just gives extra confirmation on how to do things right. Have now found some decent ones on SourceForge, but I was wondering if anyone has found better? http://sourceforge.net/project/showfiles.php?group_id=200662 These are just tutorials for Java, but...
  15. golcarlad

    Video tutorials

    Does anyone know any good links to video tutorials about Java and J2EE stuff. Free ones if possible or I dont mind paying if they are really good.
  16. golcarlad

    Internal or Public - Best Practice???

    When auto generating a method in a class, Visual Studio always makes the accessor of the method Internal - not public, thing is Im used to, out of habit by using Public, but I guess if you dont want other assemblies to see your methods then Internal is the best thing to use. Do you guys use...
  17. golcarlad

    Dot Net 3 and Visual Studio 2005

    Brilliant - you would have thought they might have thought about that sort of stuff wouldnt you!
  18. golcarlad

    Trying to set bacground colour for ToolStripStatusLabel

    For some reason when I set the background colour to Red for this status label on a status strip - the colour still stays the same as the Color.Control - why can I not set the background colour for this control?

Part and Inventory Search

Back
Top