Search results for query: *

  1. C

    Hide Hidden Devices

    As far as my knowlegde goes, yes. I didn't update it yet to go into the textbox, because it already giving errors I added another button called btnTest to run it from. Here is the code I have for the main Form: Imports System.Management Imports WindowsApplication1.Win32 Public Class Form1...
  2. C

    Hide Hidden Devices

    Sorry to say, but I tried multiple things, but I just can't fit it into my code.... I'm not a very expreienced programmer and only program when I need tools and then start to dig into it. Can you give me a better hint? Or am I asking too much now? I tried to put the code under a new button, but...
  3. C

    Hide Hidden Devices

    Thanks for the quick replies, I will try it in a few minutes Thanks for the point out to the tool! Greetzzz, CornElvis
  4. C

    Hide Hidden Devices

    Hi, Thanks for the reply, but I might sound stupid now, but where do I implement this in the code?
  5. C

    Hide Hidden Devices

    Hi All, Been a long time since my last thread but here we go. I'm using VS.NET 2010 Prof Beta at the moment and I'm trying to list all Nic Cards and their settings into a text box. I succeeded with a script from the web (which had an error in the first place) and some adjustments to it...
  6. C

    Question How to setup a simple checkedlistbox app.

    hahahaha, you didn't check my link, it's exactly the same as yours...:D
  7. C

    Question How to setup a simple checkedlistbox app.

    Hi, don't know much about that BetterCheckedListBox, but I found you a link: LINK It's really detailed.
  8. C

    Question uninstall multiple programs one by one from a checklistbox

    Hi, I was thinking about this project for a long time and now I really want to get to it, because I think windows is really missing this feature and it drives me nuts waiting for it to finish and the select another program or install part of the program until it's finished with the first one...
  9. C

    Question vbpowerpack.dll and IMAPIWrapper.dll

    never mind I found them. In a strange way though, because someone made a app himself and the app installed the dll's, although he renamed them, he mentioned in the description that he renamed them.....:p thanks
  10. C

    Question vbpowerpack.dll and IMAPIWrapper.dll

    Hi All, I need to download these files somewhere as the latest Power Pack (version 3.0) doesn't seem to have these files. I have some code which requires them. I can't download them anywhere.......:mad: Maybe someone can send them to me via mail in a zip file or something like that or put them...
  11. C

    If, else, won't work somehow

    somehow this worked: If (MessageBox.Show("You have chosen to copy all files and folders from: " & Chr(13) & Source & Chr(13) & "to: " & Chr(13) & Destination, "Notes Data Mover", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1) = DialogResult.OK) Then...
  12. C

    If, else, won't work somehow

    :confused: the link is underneath there!!!!! I posted all the code in here as well (first post) and set it up for download from my webserver. What else do you need. And yes I'm using 2003. Is this a problem? The code here should work anyway, shouldn't it? greetzzz, CornElvis
  13. C

    If, else, won't work somehow

    alright here we go: I tried on 2 different installations now, different code and whatsoever. I only get an ok button and if I go for the cross which should make anything else then ok, it installs anyway. Does this sound strange or what? I changed the buttons to yesNo just for testing, but I...
  14. C

    If, else, won't work somehow

    almost everything of the code is at the first post.......... And while you're reading read my post about that part that I won't get the cancel button even when I have the same code as you gave me. So there must be something else. If I try the code you gave me in another project it works yes. But...
  15. C

    If, else, won't work somehow

    It's not that I don't get it, but it just won't do the action. I will get back to this soon thanks so far
  16. C

    If, else, won't work somehow

    somehow it just won't work this way. Or it stops or it does the copy anyway. Plus MessageBoxButtons.OKCancel doesn't show OK and Cancel it only shows OK. somethings wrong here but what? PS thanks for all the replies so far
  17. C

    If, else, won't work somehow

    ai, I was a bit to quick. It doesn't give me an option to cancel only ok. plus there was an ")" missing If MessageBox.Show(String.Format("You have chosen to copy all files and subfolders from ""{0}"" to ""{1}"". Do you wish to continue?", Source, Destination), _ "Confirm...
  18. C

    If, else, won't work somehow

    many many thanks to you jmcilhinney. You are priceless. I think I'm the one with a vb6 background here, as I started of with that a long time ago and picked it up after a few years with vb.net. So there is some vb6 legacy in my head I suppose, where I have to get rid of :D but still thanks...
  19. C

    If, else, won't work somehow

    I thought I solved it, but no. : Dim answ As Microsoft.VisualBasic.MsgBoxResult = MsgBoxResult.OK MsgBox("Following folder structure will be created: " & Chr(13) & Destination & Chr(13) & Chr(13) & "and the following data will be copied from " & Source, MsgBoxStyle.OKCancel, "Confirm")...
  20. C

    If, else, won't work somehow

    I think I'm just overlooking something simple here, but it's freaking me out. I'm kind of newby, but totally anymore, but still making stupid mistakes(like anyone I guess....) here is the thing. I try to copy a folder from one place to another and everything goes fine, untill I want to create...
Back
Top