Search results for query: *

  1. shawne

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

    While the problem still exists for me in the "Microsoft Data Connection Dialog 1.2.0" (SQL servers are not found) having this dialog available allows me to ditch the one I created. I'd still like to know what is going on with not being able to enumerate SQL servers on Windows 10, but I'm not...
  2. 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...
  3. shawne

    implement multithreading

    John, You are the man! I've been meaning to take the time to learn how to "correctly" write multi-threaded apps. for a while now and never took the time because of confusing snippets. That little project was a boon for me! It's so simple it's ridiculous! Thanks!
  4. shawne

    DefaultView.RowFilter query language

    Thanks Matt for the link!
  5. 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...
  6. shawne

    Unbound Columns in DataGridview

    cjard rocks I got it ... i'm not sure what i did wrong the first round, but i just scrapped the entire project and re-wrote it and it worked perfectly! Again, thanks. You are the man! :D
  7. shawne

    Unbound Columns in DataGridview

    Ok, First off thanks again for your help. You are the bomb! What you described made perfect sense to me and is exactly what i was after. I went through your list of changes and the only one i modified slightly was instead of using the pc name for the relation i used my primary key which is...
  8. shawne

    Unbound Columns in DataGridview

    cjard, I followed along with your video clip which was extremely helpful in getting me to this point. However, I cannot seem to get the comboboxes to "drop down". Real quick, in a nut shell here is what i'm trying to do. I have two tables: Table 1 contains various PC client data which I was...
  9. shawne

    Event Log Filter

    Ya, thats what i ended up doing ... I was hoping to avoid having to loop through each entry and compare it. I was looking for a solution like what you can do with the "Filter" option in eventviewer. I think the problem I had was there were tens of thousands events on the box I was pulling from...
  10. shawne

    Event Log Filter

    "filter" eventlog? Is there a way to "filter" events? For example, I want all Application events from 8/28/08 to 8/29/08 ...
  11. 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...
  12. shawne

    Question Automate installation

    You might want to visit AppDeploy.com The site is all about application deployment. You may want to look at InstallShield also.
  13. shawne

    ASP Vs Php..which??

    I was referring to Dream Weaver strictly from the PHP perspective. It's been a long time since i've done any work in it, so.. I use VS 2005 on a daily basis. I have not worked with 2008 yet and I have not done any serious web-development in VS. I use VS for development of my VB apps. and use...
  14. shawne

    ASP Vs Php..which??

    PHP is crossplatform. I don't know that you can host an asp page on a 'nix box, let alone use MSSQL for a backend on it. Please correct me if i'm wrong. My 'nix expierence is very limited.As far as a developement environment, I don't use it, I usually use a highlighting text editor like Context...
  15. shawne

    Saving data in a database

    Keep this in your back pocket: http://www.connectionstrings.com/ I've gone back to it countless times.
  16. shawne

    Commenting out huge sections of code

    Nice tip John! Thanks!
  17. 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...
  18. shawne

    Webbrowser control w/autocomplete?

    Was going through my subscriptions and saw this one and thought i'd post my resolution. Below is a snippet of code which enables auto complete. This issue is resolved. Public Sub GetHostInfo(ByRef theHostUIInfo As DOCHOSTUIINFO) Implements IDocHostUIHandler.GetHostInfo...
  19. shawne

    Very strange issue with tha webbrowser ProgressChanged event

    Private Sub ProgressChange(ByVal sender As Object, ByVal e As VbCustomWebBrowser.myBrowserProgress) If CInt(e.MaximumProgress) > 0 Then ToolStripProgressBar1.Value = (CInt(e.CurrentProgress) / CInt(e.MaximumProgress)) * 100 Else ToolStripProgressBar1.Value = 0...
  20. shawne

    Outline text on a button

    Is there a simple way to outline text on a button?
Back
Top