Search:

Type: Posts; User: hydrakiller4000

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. MsOf10 Re: [Access] Run-time error '3144': - Syntax error in UPDATE statement

    Thanks for the reply! My query just sets all the variables to either Null or "", and I have tested the output, and it looks correct. It seems I have found the problem:

    I have a set of 36 bins, and...
  2. MsOf10 Re: [Access] Run-time error '3144': - Syntax error in UPDATE statement

    Thanks for the advice! I have followed the troubleshooting steps, but unfortunately it simply isn't working and is not throwing any errors.

    Here's the query code:


    UPDATE tblBins SET...
  3. MsOf10 [Access] Run-time error '3144': - Syntax error in UPDATE statement

    Hello, everyone! I'm running an update query programmatically, and I'm receiving a syntax error for some reason. I can't seem to figure out what's wrong. Here's my code:


    Dim db As Database
    ...
  4. VS 2010 Re: Storing Application Data Within An Application

    Thanks for your input as well. I have set my UAC settings to "requireAdministrator," but I see your point. I should start to utilize the AppData folder rather than the Program Files Folder. The...
  5. VS 2010 Re: Storing Application Data Within An Application

    Okay, gotcha. Thanks for the help. Sorry about that.
  6. VS 2010 Re: Storing Application Data Within An Application

    Thanks for the replies, everyone! I was aware that My.Settings saves application data externally; however, it is in a location that a normal user would not think of looking.

    I suppose the best...
  7. VS 2010 [RESOLVED] Storing Application Data Within An Application

    Hey, everyone! I was wondering if it's possible to store application data within an application without storing the data in an external file. For example, in my application, the user can choose where...
  8. Re: Obtaining Full Access To A Directory and Its Subdirectories/Files

    Thanks for your input, Evil_Giraffe. Previously, my application had a handle on the directory that I would like to delete, but it only caused an error on a few particular files. I've now made sure...
  9. Obtaining Full Access To A Directory and Its Subdirectories/Files

    Hello, everyone! My application copies files and folders from the user's computer to a directory that the program itself creates. Later on in the application's lifespan, I need to delete this...
  10. Replies
    5
    Views
    2,946

    Re: Embedding DLL in Project

    Hmm, yes that actually is true. My problem was that my application is not compatible with ILMerge since it is using the .NET Framework 4. However, I read up about .NET 4 issues on the official...
  11. Replies
    5
    Views
    2,946

    Re: Embedding DLL in Project

    After trying ILMerge again, I believe I have successfully combined the .exe and the .dll files, but unfortunately my .exe crashes on launch. Here are the steps in the Command Prompt I used to merge...
  12. Replies
    5
    Views
    2,946

    Re: Embedding DLL in Project

    Thanks for the reply! I can distribute both the EXE and the DLL in a ZIP file, but I always like to try my best to keep my applications standalone because users can relocate the program wherever...
  13. Replies
    5
    Views
    2,946

    [RESOLVED] Embedding DLL in Project

    Hello, everyone! I'm using Visual Studio 2010, and I'm using the DotNetZip library to compress and extract .zip files in my application. For my purposes, the only reference that DotNetZip needs to...
  14. [RESOLVED] DotNetZip - Show Save Progress

    Hello, everyone! I'm using the third-party class called DotNetZip to create zip files of directories in my application, and no matter what I do, it seems like I can't get the progress of the...
  15. Replies
    2
    Views
    1,581

    3.0/LINQ Re: Using DotNetZip

    Thanks for the reply and the help!

    To be honest, I did look for instructions, especially on the DotNetZip website, but I must've missed that one line that has the link to "Getting Started with...
  16. Replies
    7
    Views
    837

    Re: Loop issue

    Also, one unrelated thing I noticed that you're doing as bad practice is Dimming the FTP client within the loop. Since your host, username, and password values will be constant, you don't need to...
  17. Replies
    9
    Views
    15,794

    Re: Fastest Copy Operation

    Okay, thank you very much! Yes, I am sticking to the .NET libraries. I guess I will test this out on multiple computers and see if my computer alone experiences the issue.

    Thanks once again,...
  18. Replies
    9
    Views
    15,794

    Re: Fastest Copy Operation

    Thanks for the reply. I use Microsoft Security Essentials, which is very conservative on system resources and hasn't negatively impacted my system performance at all.

    As for the managed/unmanaged...
  19. Replies
    2
    Views
    1,581

    3.0/LINQ [RESOLVED] Using DotNetZip

    Hey everyone! I'm trying to use a third-party solution called DotNetZip for basic zip compression/decompression, but I can't seem to get it set up. It's really not clear what you have to add to your...
  20. Replies
    9
    Views
    15,794

    Re: Fastest Copy Operation

    Sorry for the late reply, guys. Thank you all for your replies! I would like to copy the files, which is why I'm not simply using a Move operation.

    Yes, you are correct that it will take longer to...
  21. Replies
    9
    Views
    15,794

    [RESOLVED] Fastest Copy Operation

    Hey, everyone! I'm making a program that copies files and folders from one location on your computer to another location on your computer. Currently, I'm using the following code (this is only a...
  22. VS 2010 Re: WebClient OpenWriteAsync Not Updating File

    I'm sorry for double-posting, but I really need help with this. I've been looking online for help (with no luck), and I've tried numerous times to get this to work, but I keep experiencing the same...
  23. VS 2010 WebClient OpenWriteAsync Not Updating File

    Hello, everyone! I'm using the WebClient class' OpenWriteAsync function, and I'm having a little trouble with it. I want it to write some information to a .txt file I have uploaded on my FTP. I made...
  24. Replies
    2
    Views
    9,493

    VS 2010 Re: Displaying Table on RichTextBox

    Thank you for the reply; however, the accompanying RTFtable file contains class modules from VB6, unfortunately. I'm using VB.NET.
  25. Replies
    2
    Views
    9,493

    VS 2010 Displaying Table on RichTextBox

    Hello, everyone! In my program, users can fill out orders, and I'm trying to make a way for them to export orders to a .rtf file. In order to preserve formatting (bold, underline, etc.), I'm creating...
  26. VS 2010 Re: Printing A New Line While Printing

    Thank you! That worked very well! :)
  27. VS 2010 [RESOLVED] Printing A New Line While Printing

    Hello, everyone! I am setting up printing (to a printer or file) in my application, and it doesn't seem to print out any new lines that I specify. Here's some of my printing code:


    ' Loop through...
  28. VS 2010 Re: Creating Directories While UAC Is Enabled

    Thank you very much! That was a very simple solution!
  29. VS 2010 [RESOLVED] Creating Directories While UAC Is Enabled

    Hello, everyone! I'm creating a program that creates new directories and subdirectories in the "C:\Program Files" folder, and the operation fails if the user has the User Account Controls enabled in...
  30. Replies
    4
    Views
    3,444

    VS 2010 Re: Program Hangs on Client Computers

    Well, I do have a Try and Catch statement in there for when the program copies the file over. If there's an error, it'll just display "Error copying [filepath]" and won't copy the file over. Also,...
  31. Replies
    4
    Views
    3,444

    VS 2010 Re: Program Hangs on Client Computers

    Okay, sorry about that. So the application takes clients' data, which was uploaded to a server, and copies it to the respective directories on the local hard drive. For example, on the server, it...
  32. Replies
    4
    Views
    3,444

    VS 2010 Program Hangs on Client Computers

    Hello, everyone! I've created a multithreaded application that copies data from one directory to another, and I'm having trouble getting it to work properly on clients' computers. All computers...
  33. VS 2005 Re: I am sad that i m still novice to vb.net i think that i dont know anything.

    Don't worry; there is help available on the web for you! Look at this website for some help; it's filled with a good number of tutorials that will get you programming in no time:
    ...
  34. VS 2010 Re: Showing Forms On Multithreaded Application

    Wow! Thank you so much! That did it! Now my GUI is always intact, and the program runs smoothly.

    Unfortunately, there's still a problem. I'm making this program for a College IT Center that I...
  35. VS 2010 Re: Showing Forms On Multithreaded Application

    Thank you! The blog provided me with some very nice information! However, I'm still having trouble not using default instances. I believe I'm referencing the Form object correctly without using...
  36. VS 2010 Re: Showing Forms On Multithreaded Application

    I'm not entirely sure I know what you mean by that. I've changed my Subs without parameters to use the MethodInvoker to call the Sub as opposed to creating a delegate. I've removed my current...
  37. VS 2010 Re: Showing Forms On Multithreaded Application

    Thank you! That post was very helpful! However, I'm still having a few troubles. My forms are opening, for the most part, but the one that updates the status tends to freeze while large files are...
  38. VS 2010 [RESOLVED] Showing Forms On Multithreaded Application

    Hey, everyone! I've finally gotten multi-threading working on my application, but now I'm having trouble showing forms when I need to. I currently have three threads in my program: one for updating a...
  39. Replies
    6
    Views
    5,796

    VS 2010 Re: Program Keeps Hanging

    Hey, bergerkiller! Thanks a lot for the help! I've managed to get my program to multi-thread, finally! It turns out that I wasn't multi-threading the main Sub that triggered the CopyAllFiles Sub. Now...
  40. Replies
    6
    Views
    5,796

    VS 2010 Re: Program Keeps Hanging

    Thanks for the help again, but the program still doesn't copy any of the files. It says that the copying has completed when none of the files got transferred. Is there a way to make a thread execute...
Results 1 to 40 of 56
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width