Search results for query: *

  • Users: shawne
  • Content: Threads
  • Order by date
  1. shawne

    Question SMO & System.Data.Sql.SqlDataSourceEnumerator broken in Windows 10?

    I have a dialog I wrote which is nothing more than a SQL server / database selector. It provides a graphical interface for a user to select their SQL server, database and authentication methods. Anyway, this worked fine prior to moving to Windows 10. Since moving to Windows 10 I'm unable to...
  2. shawne

    DefaultView.RowFilter query language

    Two questions, 1.) Is there a way to do a "inverse" filter? For instance. I have a datagridview with a list of all software installed on my machine. There are two basic filters I would like to use. One, view only updates. This one I have figured out. The other option would be the inverse to...
  3. shawne

    Remote performance counters

    Anyone have a working code snippet on how to read performance counters on remote/non-domain PCs? I'm working on an app. which will monitor our exchange 2007 environment and i would like to be able to pull in some of the counters from our edge server. NOTE: No use trying to do this through WMI...
  4. shawne

    downloading/installing Ax controls in old axwebbrowser

    I have a custom AxWeb-browser I use in a tab-based browser which displays Intra-net, web-based applications. Some of these web-apps. need to install Ax controls on the clients. For some reason, those controls are blocked. I'm thinking there is another flag somewhere which needs set, but based on...
  5. shawne

    Outline text on a button

    Is there a simple way to outline text on a button?
  6. shawne

    Enumerate all "Network Interface Instances"

    Any one know where to pull out all "Network Interface Instances"? My app. is creating counters for the Network Interface category, but I need to know the instance names of the network interface(s). Thanks!
  7. shawne

    Customizing 2005 WebBrowser control

    Anyone have any links or tips on customizing the WebBrowser control in 2005? Preferably in VB. I'm primarily looking for disabling script debugging and turning on auto complete forms and user name/passwords. I have a customized Ax browser, but if possible i'd like to see how to accomplish the...
  8. shawne

    Monitor progress on .DownloadFile?

    Is there a simple way to create a progress bar to show download progress from a webclient.downloadfile? I have an app. that downloads multiple files and updates total progress as it completes each file and I also showed an animated GIF to give the user the appearance that it was actually doing...
  9. shawne

    Application has generated an exception that could not be handled.

    I have an application which works fine on the machine i've been devloping it on. As soon as I move it to another machine I get: "Application has generated an exception that could not be handled" After setting up a few message boxes I narrowed down that it occurs when I do a form.showdialog ...
  10. shawne

    StackOverFlow????

    Anyone have a clue why the top function works fine, but the bottom function results in a StackOverFlow? dbServer, dbName, dbIdentification and dbPassword are the same values when either function is called. I'm sure the answer is staring me right in the face, but i'll be damned if I can see it...
  11. shawne

    Return an array from a function

    Anyone have a snippet on how to return an array from a function?
  12. shawne

    bound datagridview with unbound image column

    I want to change an image in my unbound image column based on data from another column. The below code does nothing though. Does not produce an error or change the image for the current row. The datagridview is data bound with an unbound image column added programmatically. For the life of me I...
  13. shawne

    Programmatically created ContextMenu

    Given the below piece of code, why after the first right click to bring up the context menu, the menu no longer comes up? It trys (flashes and disappears) but will not remain. Thanks! Public ContextMenu1 As New ContextMenu Public MenuItem1 As New MenuItem Public MenuItem2 As New...
  14. shawne

    LostFocus/Leave event

    I'm certain somewhere in here there is a thread which talks about my question, however I could spend all day looking for it. My question is: I have a double click event on a listview that pops up another form which contains a few buttons (actions) you can take on the item you double clicked...
  15. shawne

    Differences between 2k5pro and 2k5 standard

    What are the major differences between VS 2k5 pro and 2k5 standard? The price difference between them from what I found is fairly substantial. Anyone possibly have a link with a side by side comparison? Thanks!
  16. shawne

    open sub key in registry remote machine?

    John, How would you do this on a remote client? I can get the base hive open, but i'm stuck on getting into the subkeys. IE
  17. shawne

    help, can't make send-to-tray work

    Ok, when I click my button to minimize to tray, the notify icon shows up, the form minimizes to the system tray and hides, then the application ends....Here is the snippet that is suppose to in affect minimize to the system tray: This should be a simple thing, but I can't figure it out.
  18. shawne

    Events/Custom Events

    Ok..I have a custom browser control which I am using in a windows application. I need to be able to catch the newwindow2 event of the AxWebbrowser control in order to keep popups running with-in my application, not IE. How do I let my windows form know when the AxWebbrowser newwindow2 event...
  19. shawne

    Webbrowser control w/autocomplete?

    Anyone know if it's possible to use autocomplete with the webbrowser control, and if so...how?
  20. shawne

    ADO in a Windows Service

    Anyone have an idea why the following code does not work? It just hangs when trying to connect to the database via trusted connection. The application is actually a windows service which is suppose to run at user controlled intervals and update a database. It's really a simple application, i'm...
Back
Top