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

    Shift+Scrollwheel not working in numeric updown

    If anyone cares, I managed to work around this. For some reason, Shift+Mousewheel wasn't firing the UpButton / DownButton events. So I manually wrote this in the OnMouseWheel event (I'm storing the wheelDelta as a variable on the form so I can tell if it's changed by a certain number blah...
  2. gdrenfrew

    Shift+Scrollwheel not working in numeric updown

    Thanks for that. I found the Control.ModifierKeys can be used to check if the user is pressing shift,alt or ctrl which works in my MouseWheel event. However, am having difficulty recognising the 'shift'. Ctrl works fine. Weird one...
  3. gdrenfrew

    Shift+Scrollwheel not working in numeric updown

    I'm trying to allow users to change the increment of a numeric updown but holding down shift (increment = 5) or ctrl (increment = 10). Default increment is 0.5 It works fine for ctrl but not for shift - even though my code is showing that I'm capturing the shift key. The numbers don't go up...
  4. gdrenfrew

    Best way to preserve user.config?

    Hi all, Am looking for a bit of advice on how best to preserve user.config settings each time we deploy our C# application. Currently the app is deployed via an .Msi and requires the old versions be de-installed. The de-installation leaves previous user.config files in tact in the user's...
  5. gdrenfrew

    Watch window of all fired events?

    Thanks for the reply, but F11 doesn't take me into the event on the infragistics ultrawingrid control that is firing. I click on a "RefreshGrid" button, I can step through that method, but when I leave that method, the actual refresh happens. I'd like to find that actual method that is...
  6. gdrenfrew

    Watch window of all fired events?

    Hello technical genii, is it possible while stepping through code to watch which events on a control or form are firing? Maybe in a trace or immediate window? I'm trying to find out what event is causing a particular behaviour (ultrawingrid refreshing and scroll bar not resetting) without...
  7. gdrenfrew

    DataTable Rows ToString chopping long strings

    Resolved: http://aspnetresources.com/blog/executescalar_truncates_xml.aspx
  8. gdrenfrew

    DataTable Rows ToString chopping long strings

    Hi, A string of XML from the database appears to get chopped when it's put into a datatable, then extracted again with ToString(). How can I stop this? Thanks. I am maintaining historical code which gets a string of XML from the SQL database (using FOR XML AUTO, ELEMENTS) eg...
  9. gdrenfrew

    Floating control activated, but stop the parent form becoming active?

    I'd like to know if it is possible to stop the parent application of a floating form becoming active when the controls on the floating form are clicked? I've got a large application, with multiple embedded controls. Some of the controls can be detached on effectively floating forms, which can...
  10. gdrenfrew

    Clicking away from a control to lose its focus?

    Thanks JurkMonkey And if there were many panels on the form, would each need its own handler - or can I write a handler for "everything except the numericupdown"? Does the numericupdown know there's been a mouseclick that wasn't on it? Will give the above a go though. thanks
  11. gdrenfrew

    Clicking away from a control to lose its focus?

    Hello, I've got a form, with a customer control on it. The custom control has panels, numeric updowns etc. When the numeric updown has the focus, I then want to click away from the numericupdown so it loses the focus. However, I don't know how to make the panel_click event take the focus...
  12. gdrenfrew

    Cannot login via Media Player 10

    Hi, one of our customers is trying to listen to a commentary that we publish on the web via Media Server. They should log in via Windows Media Player to hear it. Unfortunately, one user cannot get in even though they are using the correct username/password. Does anyone know of any sites that...
  13. gdrenfrew

    Should "lookup fields" be strings, ints, what?

    In development, we have a couple of databases each similar, but each being designed by different developers. Lookup Table on Dev 1 Approved 2 Rejected 3 Deleted 4 Cancelled Lookup Table on Live 1 Approved 2 Rejected 3 Deleted 5 Cancelled Without fail, someone will write a...
  14. gdrenfrew

    FPSE2002: Submit/Cancel button don't do anything

    Hello, I'm trying to change some configuration settings in my FPSE2002 install (to allow external source control specifically), and although I can click on the Submit button to save my changes - nothing happens. I don't get any error. Can anyone help me understand why I can get to the...
  15. gdrenfrew

    Remove a control from a control array?

    Thanks for the replies Bob and Vladk, Bob, you are right, my concern is the control array not closing up the empty elements. I hoped I'd be able to ReDim Preserve with my control array, but I was unable to. Another tack I took was to try and use the Control.Remove method - but the controls do...
  16. gdrenfrew

    Remove a control from a control array?

    Hi there, hope someone can help, haven't been able to solve this... I'm trying to remove a control from a control array, dynamically within the code. I have a form with 3 controls on it, called CtlLine(0),(1) and (2). How can I remove the second element? Unload CtlLine(1) removes it from...
  17. gdrenfrew

    A document management app/plugin for our corporate site?

    Hi, Looking for a simple off-the-shelf document management program to fit into our existing corporate (static) website... we're looking for a document management solution for our small corporate website. It's so we can manage reports and market information that we want visitors to the site to...
  18. gdrenfrew

    How to check if string field contains a date?

    Cheers Santa, can't say much, but advice has already been taken from the Eagles on this supplier's product, and the issue with dates is a teeny tiny problem in a much grander pile of poo! I'll tack in the date function you suggest. thanks again.
  19. gdrenfrew

    How to check if string field contains a date?

    Hi Santa, I agree with your ultimate question, however I'm trying to use the Oracle database provided by a supplier, and it is utter rubbish. Hence I'm trying to write an extract to get the data out and insert it into SQL Server, which I've designed with appropriate data types. Sometimes...
  20. gdrenfrew

    How to check if string field contains a date?

    Can I check if a string field contains a date? Is there an IS_DATE function in Oracle? Thanks

Part and Inventory Search

Back
Top