Search results for query: *

  1. J

    Printing with S500 Barcode Printer

    Thanks Thanks for the tip, David. I had already tried that, but so far no luck. The Zebra is stubborn as a mule.
  2. J

    Printing with S500 Barcode Printer

    Hey, guys. I hope you can give me a few hints on this one. I need to print a number of text lines with a Zebra Stripe 500 barcode printer. I use the PrintDocument class in order to send the content of 6 TextBox controls as output. But somehow the S500 printer ignores my label size settings on...
  3. J

    MDI Form and MDI Children Question

    Thanks, JohnH! Excellent! Thanks, JohnH. I tried out the code shown in the link you provided, but it didn't work the first time. My fault, obviously. But now it did! That was all I needed, thanks. I really appreciate it. You were a great help to me today. :)
  4. J

    MDI Form and MDI Children Question

    Thanks for the link. But I still haven't found a way around my problem. I appreciate the help, though.
  5. J

    MDI Form and MDI Children Question

    [RESOLVED] MDI Form and MDI Children Question Hi, all. I'm a newcomer to VB .NET and I'm having a hard time with MDI forms. Specifically, whenever the user attempts to close the MDI form, I need to make sure that all of its children forms are closed. If they are not, I display a message asking...
  6. J

    Problem with network path

    My application was OK. The user in question simply did not have the required permission to navigate the server folders. Thanks anyway for reading my post. See ya.
  7. J

    Problem with network path

    Problem with network path [RESOLVED] Hey, guys. I have an application that retrieves image files from a certain directory path (provided by the user). It validates the path with the "IO.Directory.Exists(FolderName)" function. The problem is that within a LAN, when the user picks a valid network...
  8. J

    .NET runtime excluded

    Many thanks, people Hi, all. Just wanted to thank you for all your help. This setup project is a real headache. Anyway, thanks jmcilhinney for the link you provided, I still have to download the plug-in and test it. Thanks TechGnome for explaining the bootstrap option. I'll let you know...
  9. J

    .NET runtime excluded

    I'm still in the dark Hi, Juggalo. Thanks for the tip. I'm still kind of lost. You mean that all types of Setup and Deployment Projects won't work or just the Setup Project? Maybe I should use the Merge Module Project instead of the Setup Project. Note that the build proccess only throws an...
  10. J

    .NET runtime excluded

    Hi, all. I'd appreciate any help. I have a Windows Setup Project for a Windows Application, but VB .NET does not let me include the "dotnetfxredist_x86_enu.msm" dependency module when I try to build the project, but I need it in order to install my application on older machines wich don't have...
  11. J

    A DataGrid issue

    Thanks, DavidT for pointing me to the right direction. I am starting to get acquainted now with the DataGridTableStyle and DataGridColumnStyle classes. I guess I was just used to the DataGrid control from the VB6 era. ;) You definetely saved me a lot of headaches. Thanks, dude.
  12. J

    A DataGrid issue

    A DataGrid issue [RESOLVED] HI, all. Though not a favorite of mine, the DaraGrid control is in many cases the ideal control for displaying info. Unfortunately, it doesn't change the fact that it is a royal pain for me to use. So, my question is, is there a way to modify the width of a specific...
  13. J

    TextBox Validation

    One tiny detail Hi, guys. I must say I find this thread particularly hilarious. I mean the whole C# vs. VB syntax discussion is so funny. Although kulrom has a point, the (If Sender = RadioButton1 Then) sentence will throw a syntax error if you have the “Option Strict” set to “On” in your...
  14. J

    picResult.print ()

    Need more details Hi, there. You weren't very specific about what you want to do. However, as far as I know the PictureBox control doesn't have a Print() method and can only contain image types. If you wish to display search results, maybe you should consider using other controls like DataGrid...
  15. J

    Tiny problem with file extensions

    Yes, I guess the GetFileNameWithoutExtension pretty much tells what it does, and it's the shortest and fastest way to get the job done. Of course you didn't mean to belittle. I never took it that way. It's just that the question I posted seems so dumb especially after such an easy solution...
  16. J

    Tiny problem with file extensions

    Thanks a lot, guys! Thanks for all your help. So many ways to get the job done. I tried all of them and they all seem to work. I wasn't aware of the GetFileNameWithoutExtension method. I guess I need to pay more attention to those namespaces. Thanks, Kulrom for the zip file. And all of you for...
  17. J

    Need a hand with TreeView Control

    Thanks again, dude Thanks again, jmcilhinney. I tried using your code again as you suggested. I don’t what happened, but somehow it didn’t work the first time. But now it does, superbly I’d have to say. I guess the mistake was mine. Thanks for all your help and for making programming much more...
  18. J

    Need a hand with TreeView Control

    Half the problem solved Hi, again. I've just come up with the following code. It is recursive and brings all folders and subfolders within a specified path. Nevertheless, it has one tiny problem. It duplicates the tree from the specified path. I can't really say why. DK Private Sub...
  19. J

    Need a hand with TreeView Control

    Thanks again Hi, jmcilhinney. Thanks for replying. Good point about the ByVal parameter. I guess your approach is more adequate. However, I still need to get all subfolders of each folder within the path and it doesn't need to be the root folder. Using your example, I wrote the following code...
  20. J

    Tiny problem with file extensions

    Tiny problem with file extensions - [RESOLVED] Hi, there. I have created a function that returns a list of files within a specified directory. The IO.FileInfo.Name property is adequate because through it I can obtain only the names of the files without its whole path from root. However, it...
Back
Top