Search results for query: *

  • Users: Anti-Rich
  • Content: Threads
  • Order by date
  1. Anti-Rich

    suggestions for testing methodologies

    hello everyone, my app is in the intial testing stages, and since i have never done any 'proper' testing in the official sense of the word, i thought i would ask the people on this forum for any suggestions for the methodologies i should use... which ones are being used today or the best ways...
  2. Anti-Rich

    frustrating array/dictionary problem!

    hello everyone, at the moment i am trying to grab some information from the database and put it into a custom control called 'TreeListView' (any guesses what it does? :P)... the data in question is pick rate information in a warehouse. so basically the person is given a number of vouchers with...
  3. Anti-Rich

    performance tuning a view and table valued function

    hi all, i have just developed a view and table valued function in sql server 2k5 to show where an item in my company's two warehouses is located. the database is structured like so: tblLocationLocationID (PK)LocationName tblBLCodesLocationID (FK)BinLocation (PK)...
  4. Anti-Rich

    moving data from one db to another

    hi all, i was just wondering how it is possible to move data from one table in a database to another table in another database. i am migrating my data from the original db as i have integrated the original db (as well as the application that uses it) into a larger db (and application) i am...
  5. Anti-Rich

    SqlDataReader Troubles

    hi all, i have a quick question about sqldatareaders... is it in any way possible to view them when a connection is not open. ie. return a datareader from a function and manipulate a combobox using the returned data reader? or am i going to have to use a dataset? i keep getting an error...
  6. Anti-Rich

    skipping duplicates in mass insert

    hi all, ok, i have two excel spreadsheets with huge amounts of information in them. both sheets have 3 fields, IDNumber, Description and Location. the only thing that differs with the two sheets are location (ie. one sheet is building a and the other sheet is building b - e). my question is...
  7. Anti-Rich

    how listview and listviewcollection interact

    hi all, i have a question which will hopefully enable me to understand a bit better how the listview works. basically my question is: can someone please explain to me how the classes ListView, ListViewItem and ListViewItemCollection interact with each other? i am really struggling in...
  8. Anti-Rich

    Essential GDI+ resource

    Hi Everyone, I have been dabbling in GDI+ the past couple of weeks, creating my own controls. and being completely new to a subject i ran into SO freakin many roadblocks along the way. along with help from the various brains of the forum (you know who you are, THANKYOU! :)) i managed to...
  9. Anti-Rich

    brother/sister forums

    hi all, i was just wondering, does this forum have any affiliate or brother/sister sites in other languages? (ie. C#.NET Forums - the exclusive C#.net community). i like the community in this form, and since i have just decided to port my employers project to C# (i have that flexibility, lucky...
  10. Anti-Rich

    sql distinct troubles

    hi everyone, i have a problem at the moment, where i am trying to retrieve timesheet information (for the employees at my company) from the database. now i can get basic information, but i wanted (for comparitive purposes), to break it down to do it by month... here is my query so far...
  11. Anti-Rich

    ListView Hell

    Hello everyone, well the past week has been one long week of tearing my hair out, reading insane amounts of (what i realised at the end of reading it) useless information. what i am trying to do, is render an extended ListViewItem (named SuperTreeItem) onto an extended listview. for some...
  12. Anti-Rich

    Combined ListView and TreeView Control

    Hello everyone, i have mentioned in a couple of posts at other threads that i am trying to create a custom listview control that incorporates a treeview's functionality. i have made some progress with that control, and i am getting it to recognise a customized listviewitem i created, able to...
  13. Anti-Rich

    control creation tutorials

    hi everyone, i am currently in the process of creating a custom treeview/listview control. since i have never done this before, i feel like i am simply stabbing in the dark, hoping what i do is the right way and its extremely frustrating. does anyone know of any good tutorials or resources...
  14. Anti-Rich

    between operator, inclusive or not?

    hi all im encountering weird result data when using a between in my sql statement... this is my sql statement: SELECT DISTINCT EmployeeID, EntryDate FROM tblCapture WHERE EmployeeID = @currentEmployee AND EntryDate BETWEEN @date1 AND @date2 ORDER BY EntryDate ASC my question is, is...
  15. Anti-Rich

    custom treeview control

    hello everyone, i have a question in regards to the treeview control, i was wondering if it is possible to integrate a listview control (set to the details view) inside a treeview? does anyone know of a control where this has been done to some degree of success, or if not a couple of...
  16. Anti-Rich

    custom button control

    hi all, i have a problem with a custom control i am creating... now i have a custom gradient background that paints when the button is used, the only problem is, it clears the text when it paints the rectangle!! i know why this happens, but i dont know the overrides method to use to set the...
  17. Anti-Rich

    menu strip question

    hi all, i have recently discovered how to use gradients in my application, and i am pretty happy with the results. at the moment i have a dark blue - light blue fade and it looks good :) with my menu strip, i feel that the edges of the menu are too sharp, and detract from the 'shiny' or...
  18. Anti-Rich

    Form MenuStrip Toolbar

    hi guys with my menu, i have the background set to dark grey and the font color set to white (the whole awesome contrast thing going.. :P), which i think looks pretty good. the only thing is, when i hover over clicking a button, the item is selected with the color orange, which does not work...
  19. Anti-Rich

    sql query has me stumped...

    hi everyone, i have a question relating to inner joins. i know that an inner join is used to join two tables in order to get relating data between them, but i have a table which has three fields which can get data from 3 other tables, none of which relate to each other (therefore, i would...
  20. Anti-Rich

    Exceptions...

    Hi all, i have read that it is bad programming practice that when you are catching exceptions, to just catch a general exception. the question i have is, why is this such a bad thing? wouldnt it be more advisable to be able to handle a wider range of exceptions (especially ones you dont even...
Back
Top