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 strongm 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. marcarls

    Timer.Start vs Timer.Enable, is there any difference?

    Hello, I am trying to find this answer. Is there any diffrence between using Timer.Enable or Timer.Start(). According to help I can not tell if there is any diffrence in behavior. I first thougt that Enable/Disable was resetting the timer, but when reading the help it seams like Start/stop are...
  2. marcarls

    Returnvalue problem

    Hi, Having (probably) a newbie problem with returnvalues from a stored procedure. I am calling this proceure from within another procedure: CREATE PROCEDURE PartsCap_GetSystemID @SystemName varchar(50) AS --System.ID is a uniqueidentifier. Select System.ID from System Where System.Name =...
  3. marcarls

    How to make Duration take resouce's availability into consideration

    Yes I entered 40 hours in duration using the Ghant View. When looking at the resource it says that he should work 8/hours per day with that task, not 4 as i would expect. Does the blue lines in Ghant chart represent work effort or duration? I expect MS Project to adjust the length of the bar...
  4. marcarls

    How to make Duration take resouce's availability into consideration

    Hi, In my project the resources availability is changing from week to week. I have entered this in "Resource Information". For example person A is working 50% of a 40 hour week. BUT when assigning him a 40 hours task the duration of task will still be presented as one weeks, instead of two...
  5. marcarls

    Capture which control user clicked on with MouseDown event?

    That was really fast answer, thanks a lot, your the greatest :-) The code works fine, I will adjust it to fit my needs. Now I do not have to skip the coffebreak ...nice ;-)
  6. marcarls

    Capture which control user clicked on with MouseDown event?

    Oh I didn't even think about that argument. :-) But the object sender this time only states that it is the object toolbar that is beeing hit, I want to know exactly what part of the toolbar. Perhaps I am missing out on something more...
  7. marcarls

    Capture which control user clicked on with MouseDown event?

    Hi, I need to find out which button in my toolbar the user clicks on, and I can not use the ButtonClicked event. Here's why, I'm having a toolbarbutton called "rewind" that will rewind the time when the user holds the button down, just like any music player. Because of that I can not use...
  8. marcarls

    How to remove automat generated schema info in tag (xml)?

    Hi! When I serialize my class, .NET automatically generates schema information in xmlRootAttribute for example: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> I want to remove that inforamtion but how? Thanks in advance. /Maria
  9. marcarls

    Serialization problem, "there was an error reflecting..."

    Dear friends, I am trying a simple serialization example. I have a class Employee having few fields and Methods I have a another class as Employees that implements the ICollection interface. In windows form code module i have two object variable's of employee class that I add to the Employees...
  10. marcarls

    Select whole row in Datagrid when user navigate with Keyboard

    Hi! I have code (see below) to highlight the entire row when any cell of the datagrid is clicked...but I also want to achieve the same thing when the user use the keyboard (tab) to navigate in the datagrid. Can anyone give me a hint on how to solve this ;-) Private Sub DGrid1_MouseUp(ByVal...
  11. marcarls

    I want to learn VB.NET, any book recommendations?

    Hi! I have about 5 years of programming experience and I now want to learn VB.NET (I have no earlier experience of VB, just basic knowledge). I would like to buy some books in this subject, but I want them to be hands-on, preferable with realistic examples, perhaps a guide to build a whole...
  12. marcarls

    Any other way than using Translation Toolkit to translate an appl?

    Hi I am working with translating our application to other languages, for them moment only German. I have used the translation toolkit for this purpose, but I found it very unstable and not consistent. Sometimes it just ignores to translate objects, othertimes it removes objects from my library...
  13. marcarls

    How to achieve row level row level functionality in triggers?Help!?

    What I want to do is this. I have a log table where I log changes, not just per row but per column. Example: ID Column_name Old_value New_value 1 telephone 031-56879 08-45878 2 Address My old adr My new address My update trigger check per column which columns...
  14. marcarls

    Get today's date in qry.....(and or is null)

    Perhaps something like this? :-) SELECT * FROM tblCapacity WHERE startDate < getdate() AND (endDate > getdate() or endDate IS NULL) /Maria
  15. marcarls

    How to achieve row level row level functionality in triggers?Help!?

    Hi, I have written triggers for diffrent databases that we are going to use to audit changes in some of our tables. In Oracle for example you can create a triggers that fires for each inserted row, which is useful if the update statement updates more than one row. But I have understood that this...
  16. marcarls

    How to get host and userid?

    Hi, I am writing triggers to audit changes in data. In MSS I use functions host() and suser_sname() to get the computer name and the dba-login for the person who triggered the change. I need to know if there is any corresponding functions for Sybase SQL Anywhere? Anyone who knows? Thank you very...
  17. marcarls

    Error in trigger &quot;Attempt to intitiate ...with results pending&quot;?!

    Hi again, I think I understand by the article that I do not take care of errors that might occur in my code. Do you have any suggestions on how I might write the code to check if something got wrong, to avoid pending result. In the article they gave a C++ example, but I am writing the code in...
  18. marcarls

    Error in trigger &quot;Attempt to intitiate ...with results pending&quot;?!

    Thanks, I will read it and see if I understand anything ;-) My trigger is for audit functionality, when records are inserted/updated/deleted the change should be logged into another table (per column...thats why it is large...) It look something like this...(this is only for the first column, in...
  19. marcarls

    Error in trigger &quot;Attempt to intitiate ...with results pending&quot;?!

    Hi, I have an urgent problem. I have created insert, update, and delete triggers for a table. They are pretty large...When i try to insert i new record, or change an exising...or do anything I recieve the message&quot; Attempt to initiate a new SQL Server operation with results pending&quot;. I...
  20. marcarls

    Capture errors inside triggers to avoid displ in the application?

    Hi I'm writing triggers to audit changes made by users through our application that we develop. When something goes wrong in the trigger I do not want the trigger to throw back the error to the application, instead I want to log the occured error in a file or database table. Does anyone have...

Part and Inventory Search

Back
Top