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!

Search results for query: *

  • Users: marcarls
  • Content: Threads
  • Order by date
  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

    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...
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. marcarls

    Error in trigger "Attempt to intitiate ...with results pending"?!

    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" Attempt to initiate a new SQL Server operation with results pending". I...
  13. 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...
  14. marcarls

    How to get current NLS_DATE_FORMAT?

    Hi, Is there anyway to get hold of the currect NLS_DATE_FORMAT setting on database level from the database? I need to check which settings our diffrent clients around the world have and then write a function that depending on this settings converts the date with correct format mask. Any...
  15. marcarls

    DATE converstion problem, diffrent regional settings

    I have a string with a date format, and I want to convert it into a date using TO_DATE. Since users can have diffrent regional settings on their computers I dont know in which date format the sting is and I sometimes get the error message "ORA-01830: date format picture ends before...
  16. marcarls

    Keep field and label together?!

    Hi, My problem is that my labels does not keep togheter with the datafield, when the datafield spans over several rows. The label of the data field below the expanded data does not keep together with the text. I have tried the anchoring but I always get the error message REP-1814: Report cannot...
  17. marcarls

    Select rows with MAX date for each logday?

    Hi I have a log table like this: Case_id Text_id Log_time 100 2 2003-01-01 15:00 100 2 2003-01-01 16:00 110 5 2003-04-09 10:00 110 5 2003-04-09 11:00 I would like to write a query that returns 2 rows that is for every case_id and text_id I want the last logged row for that day...
  18. marcarls

    Global path variable/dynamic search paths?

    Hi, I have the problem that in my little application I have created Reports, and in the property palette a have provided the filename for example c:\reports\actors.rdf I now want to create an install package of my application and I can not have a bind reference like "c:\" since I do...
  19. marcarls

    How to reference non DB items just like in Forms?!

    Hi, I have created a field in my report header in which I had in mind to fetch some values into. In a trigger I have created nessesary code to retrieve the values, but I do not know how to assign the value to the field. In Forms you just add : before any reference to a field. But when i try to...
  20. marcarls

    Function Find in Display List menu option?

    Hi, I have to fields, one where user can enter an ID and then the corresponding actor name will appear in a field next to the right. If the user do not now the ID I want him/her to be able to use Find function in my LOV. The LOV contains ID and the actors name. When user selects a record, the...

Part and Inventory Search

Back
Top