Search results for query: *

  1. nooch32

    Access to file protected

    is it possible to wait until the file is unlocked before trying to perform actions?
  2. nooch32

    Access to file protected

    I have a folderwatcher set up to watch a folder. When it finds a new file, it renames the file (if needed) and then loads the file up into a pic box. The error i'm getting is: "Exception has been thrown by the target of an invocation" Which isn't a great error message, but after looking into...
  3. nooch32

    Easy one (image from resource file)

    ah right, i found it, you can directly access resources: my.resources.sub (as bitmap) i was using it in a dataviewgrid, so it went straight in without conversion :D
  4. nooch32

    Easy one (image from resource file)

    How do i get the image from the resources file into an image variable? i have an image in the resources file called "sub.gif" if that helps at all Kind Regards, Danny
  5. nooch32

    Rebelling Forms

    ah brilliant! thanks both :)
  6. nooch32

    Rebelling Forms

    You'll have to excuse me i'm new to .net Set e.cancel = true where?
  7. nooch32

    Rebelling Forms

    brilliant! Just what i wanted it to do, many thanks
  8. nooch32

    Rebelling Forms

    I have an application and the form frmPhotoOrganiser was set to start up initially, but i wanted to include a login form, so i set up a new form called frmLogin. I also have another form frmSplash, which is a splash screen. The splash screen was set up as a splash screen in the project...
  9. nooch32

    textboxes and subroutines

    There looks to be something about it on this page: http://www.informit.com/articles/article.asp?p=102148&seqNum=3&rl=1 DirectCast() function looks good, but i can't find anything about it in the object browser
  10. nooch32

    Web Page response via POST

    ah the WebClient method seems a lot more simplier than using WebRequest/Response and a stream and a streamreader
  11. nooch32

    Web Page response via POST

    ah great stuff thanks
  12. nooch32

    Using Array as FSO

    But thanks for your example, i think that will do what i'm trying to achieve, just might have been easier for me to use the FileSystemWatcher in the first place. Ah well (in case you haven't guessed i've just crossed the line from vb to .net sorry for my inexperience)
  13. nooch32

    Using Array as FSO

    Sounds good. I've just found the FileSystemWatcher control, you see the files in the array are the difference between two snapshots of a folder. I wonder if it would have been easier just using the FileSystemWatcher control to get this list.
  14. nooch32

    Web Page response via POST

    Not sure if this is in the right forum, or if it belongs in the remoting forum, sorry if this is the wrong one. I have an application that i want to send a http post request to a web page, is it possible to get the response from this web page and put it into a variable? the web page returns a...
  15. nooch32

    Using Array as FSO

    ah it wouldn't let me do it that way, because the way the list is generated is using a join command and it's saying it can't convert it into fileinfo If this helps you to understand the array i've generated would contain full file paths, for example: (0) "C:\photos\me.jpg" (1)...
  16. nooch32

    Using Array as FSO

    ah right, i've just dimmed my array as array for now, but i guess seen as tho my array contains file paths, i could dim it as a fileinfo, i'll try that thanks matey :D
  17. nooch32

    Using Array as FSO

    Hi, I have an array that contains a list of files. All the files in the array are in the same directory, however the directory also contains other files, so in a way the array is a filtered list of files that i'm after. Is it possible to convert my array into a file system object so i can...
Back
Top