CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: rick7423

Page 1 of 6 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    2
    Views
    5,929

    Re: Using Text Template for Zebra ZPL in VB.Net

    Thanks for the feedback. I took your suggestion and changed the variables in the text file to be of the form %value%.

    Here is what I cam up with. I had to use the StringBuilder object to make it...
  2. Replies
    2
    Views
    5,929

    Using Text Template for Zebra ZPL in VB.Net

    I am writing a printer utility to print labels with the Zebra ZPL scripting language(??), or whatever you want to call ZPL.

    Up to now, I have created the ZPL and then embedded that into my VB.Net...
  3. Replies
    4
    Views
    6,989

    Re: Basics on C# Global Variable

    Thanks for the feedback, but I am looking for a little of both options here. I need to set those variables that are static to the user/machine it is loaded on. And also on seldom changing or very...
  4. Replies
    2
    Views
    1,899

    Re: Best way to write database routines

    Make your own class file with all your custom functionality and add it to your project. Ensure the file is included in the project and hook using the namespace:

    using my_namespace_class;
  5. Replies
    4
    Views
    6,989

    Re: Basics on C# Global Variable

    I found the Project Settings options (http://msdn.microsoft.com/en-us/library/aa730869(v=vs.80).aspx)

    This seems to be the way to go.

    Has anyone used this? Pros/cons or things to be aware of?
  6. Replies
    4
    Views
    6,989

    Basics on C# Global Variable

    Being a newbie to C#, I have a question on best practices.

    What methodology would you recommend to store local working variable that need to be accessible anywhere in the application? All of these...
  7. Replies
    2
    Views
    9,298

    Re: Connecting VB.Net to Oracle 11GR2 DB

    It would appear as though the spaces and tabs within the string caused this to fail. When I removed all white space from the TNSNAMES string and put that as the connection string, it works. The final...
  8. Replies
    2
    Views
    9,591

    Re: Serial port (com port) reading data

    Data miser is correct, this looks to be formatted data from the uits output buffer.

    Your code is just reading the output of the unit, and not actually getting the formatted data as the...
  9. Replies
    2
    Views
    9,298

    Connecting VB.Net to Oracle 11GR2 DB

    I need to connect to an Orace 11GR2 database from a VB.Net Desktop application. I am getting various errors depending on what connection string I use.

    Errors are either ORA 12154: TNS Name cannot...
  10. Replies
    6
    Views
    895

    Re: Performance Tools wanted

    I am already using perfomance monitor (perfmon), but wanted to find something a little more detailed. the more metrics i can get the better. I have been looking at sysinternal but wanted to get...
  11. Replies
    6
    Views
    895

    Performance Tools wanted

    Can anyone suggest any good tools that can be used to monitor application performance? Specifically, I am looking for a thread, memory, CPU, and port monitor.

    Any suggestions? I want to monitor an...
  12. Replies
    4
    Views
    2,065

    Re: Allocating Heap Memory

    Thanks for your help. That works for this problem (it compiles at least, testing will tell for sure).
  13. Replies
    4
    Views
    2,065

    Allocating Heap Memory

    So far, you all have been a greate resource so I am asking one last question (hopefully).

    I am threading some database functions and am passing a struct via the CreateThread(...) function. No...
  14. Replies
    7
    Views
    1,535

    Re: syntax for thread that returns a value

    I also read these and also other threads referenced from MSDN before posting here. I was still confused on a couple issues, but I think MrViggy has pushed me in the right direction. I just need to...
  15. Replies
    7
    Views
    1,535

    Re: syntax for thread that returns a value

    Outstanding Mr. Viggy, I think that gave me the push I needed.
  16. Replies
    7
    Views
    1,535

    syntax for thread that returns a value

    Ok, I need to create a thread function uses the comm port that is passed a single parameter (char[16]), and it is to return a char * (LPSTR) value.

    I already have the comm port functionality...
  17. Replies
    7
    Views
    1,173

    Re: Form Refresh Issues

    Thanks for the help. Now I have to find out how to add this functionality.
  18. Replies
    7
    Views
    1,173

    Re: Form Refresh Issues

    Yes, that is what I am intending on doing now that the utility is stable as a single threaded app ("do one thing at a time, do it very well, then move on").

    This leads to another issue, if I make...
  19. Replies
    7
    Views
    1,173

    Re: Form Refresh Issues

    You are correct, my post was a little vague. Let's see if I can clarify a little.

    THis is a C/C++ V6 application using a common dialog. The dialog has several text fields on it that get populated...
  20. Replies
    7
    Views
    1,173

    Form Refresh Issues

    I hope this makes sense, so here goes:
    I have a form that runs in a loop. It uses comm ports, local and remote database lookups. When I start a process, I want to reflect certain information on the...
  21. Replies
    0
    Views
    546

    Create CD Image file, where to start

    I know there are packages available to create and mount CD image files, but I would like to try this myself. Can anyone point me to information or give any advise on where to start? I need any...
  22. Replies
    7
    Views
    4,143

    Re: mapping local disk folder to drive letter

    Thanks for yur help on this. Mapping to network drives is easy, I have been doing that for awhile now. Working with the local drives was a little more difficult but using the UNC path...
  23. Replies
    7
    Views
    4,143

    Re: mapping local disk folder to drive letter (SOLVED)

    SOLVED!!!

    I had to use WNetAddConnection2, and I also need to use the local drive default share UNC path like the following:

    c:\ has a default share of C$, if tyhe local machine name is...
  24. Replies
    7
    Views
    4,143

    Re: mapping local disk folder to drive letter

    I am trying to do this by using the code given by "VB_THE_BEST". If I wanted help with manually mapping a drive, I would have asked elewhere.

    When i use the WNetAddConnection method given (which I...
  25. Replies
    7
    Views
    4,143

    mapping local disk folder to drive letter

    I have VB 6.0 and need to map a folder on the local disk to a drive letter: i.e. c:\myapp\mydata would need to be mapped to e:\mydata.

    Mapping network shares is rather easy, but I cannot find out...
Results 1 to 25 of 130
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured