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

Search:

Type: Posts; User: vb5prgrmr

Page 1 of 16 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: Required Migration Suggestions from VB6.0+Mssql7.0 ERP Solution

    VB6 can interact with the web and you are not tied to any technology to do so... PHP, ASP, ASP.NET, and so on, just so long as you set up the other technology in such a way that any user could use...
  2. Re: Required Migration Suggestions from VB6.0+Mssql7.0 ERP Solution

    Place an ad, get a programmer, pay them well, and all will be good. As for the upgrade path that M$ has chosen for you, that would be VS.NET and at least SQL 2k5 but if you search hard enough, you...
  3. Re: System Appreciation of VB based applications

    Okay, most programs are created from an idea and as that idea is flesh out, it becomes a list of requirements. Meaning...


    which turns into this...

    and so on, and so on.

    Then from there,...
  4. Replies
    3
    Views
    919

    Re: File Filter List

    Pssst, hey Dave,... "The filterList is the list box with the file type extensions and the filDialog is the list box with the files." makes me think OP is using the FileListBox control and then this...
  5. Re: Issue of Updating Serial Number in Database Table

    So then your table design needs to be something like...

    iID Autonumber used to keep records unique
    iSortID Number this is what we will be sorting on when we request records from this table
    vText...
  6. Replies
    14
    Views
    2,810

    Re: VB6 SQL 'WHERE' statement problem

    Let me add to the discussion above and say that access thinks you are trying to execute multiple SQL statement because of the ; in the middle of the string. Either remove it, or the rest of the...
  7. Replies
    14
    Views
    2,810

    Re: VB6 SQL 'WHERE' statement problem

    I can hear what you are saying but pulling out your hearing has nothing to do with your hair and going bald...

    Yes, please post your code...



    Good Luck
  8. Replies
    13
    Views
    17,713

    Re: Capture Screen + Save

    Ahhhh!!!! Look its a necrophilliac, a necromonger, no! It's a necroposter!!! To which we all say ewwwww!!! Disgusting! :)

    Okay, enough ragging on you. Please, in the future six, create a new...
  9. Re: System Appreciation of VB based applications

    Oohhh! Pretty the alienware system is... :)

    Appreciate/depreciate as in accounting terms???
  10. Re: How can I use API to detect registry or file changes, file opening, or app execut

    for files, you can get most of what you want from ReadDirectoryChangesW API...



    Good Luck
  11. Re: [RESOLVED] Need Help displaying local time zone, please.

    From same site http://vbnet.mvps.org/index.html?code/locale/gettimezoneinfo.htm

    then this http://www.cpearson.com/excel/TimeZoneAndDaylightTime.aspx

    and then on this page (have to look for...
  12. Replies
    4
    Views
    3,991

    Re: real time charting..

    Are you wanting to do something like task manager's CPU usage graph, or something that fills and then wipes itself only to redraw itself as new data comes in? Because, I think you could use the...
  13. Re: Way to get innertext of all childnodes of a node?

    It is kind of like a recursive Dir search in that first you must get a reference to the top level and then with that, you get a reference to its children, and then their children, and so on and so...
  14. Re: Emulating Save Image As in Web Browser Control

    Okay, you have the URL to the image right? So, you put that into a string variable...

    MyString = ...

    Then you will need a couple of dynamic arrays declared. One for the CD.FileName and one for...
  15. Re: Emulating Save Image As in Web Browser Control

    Friends time (yahoo, google, ask, answers, bing) vb6 URLDownloadToFile API...

    Okay, you have the source http...jpg/bmp/tga/png/etc then all you need is the common dialog control with the showsave...
  16. Replies
    10
    Views
    1,387

    Re: Edit text in FileListBox

    As I said at another site... "Format" it out...


    Dim My1stArray() As String, My2ndArray() As String, S As String
    Dim LB As Integer, UB As Integer, LoopCnt As Integer

    S =...
  17. Re: Passing parameters from VBA to ASM DLL

    > But, unfortunately, VS 6.0 is one of the things I do not have (unless it is identical to the '97 version, what I don't think it is). What does that VB API viewer do?

    Actually, 97 is 5.0 and it...
  18. Re: Passing parameters from VBA to ASM DLL

    >...what gave me lots of .NET stuff I was definitely not looking for

    Use -.net in next query to remove a lot of .bloat stuff...


    As for what vb sends and c expects, it would be a lot easier if...
  19. Re: Runtime error 91: object variable or with block variable not set

    What I showed you is a Free Table Directory access which is different than a database directory but you should still be able to add indexes via standard sql alter table statements. If not, try the...
  20. Re: VB6 How to Read text/String Using binary method ?

    DataMiser...


    Dim FileContents As String, FName As String, FNumb As Integer

    FName = "C:\z\test.txt"
    FNumb = FreeFile

    Open FName For Binary As #FNumb
    FileContents = Input(FileLen(FName),...
  21. Replies
    5
    Views
    2,988

    Re: Setup Initialialization Error

    Okay, when you click on acmboot.exe, it looks for acmsetup.exe and more than likely passes it a command line arguement that tells the acmsetup.exe where to find the files it extracted or where to...
  22. Re: Runtime error 91: object variable or with block variable not set

    Okay, I'm going to show you something that I think will solve your problems... BUT first let me tell you what I did to your project before I show you this code...

    You want to know what I did?...
  23. Re: Runtime error 91: object variable or with block variable not set

    Do you actually have VFP (Visual Fox Pro) or dBase? I ask because you really need to have a look at the field names contained within the cust.dbf and I'll tell you why. Why is because most of the...
  24. Re: avoid stretching an image but in a fixed size

    Nope,... You will need to use just a little bit of simple math...

    pseudo code...

    if height > width then
    percentage = width / height
    elseif width > height then
    percentage = height / width...
  25. Replies
    5
    Views
    2,988

    Re: Setup Initialialization Error

    Do you see the file acmsetup.exe? because that is your error...
Results 1 to 25 of 395
Page 1 of 16 1 2 3 4





Click Here to Expand Forum to Full Width

Featured