Search:

Type: Posts; User: realbogus

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    671

    VS 2008 Re: VB - Getting file name clicked on

    Awesome! Thanks for the tip!

    This has been a gnarly one to research, because nothing seemed to make sense to the search engines for me.

    I will test and let you know.
  2. Replies
    4
    Views
    671

    VS 2008 Re: VB - Getting file name clicked on

    I got that... application associations. But that still doesn't help me get the actual path and file name of the file selected.

    Let me try this approach. When the user clicks on a DOCX file, it...
  3. Replies
    4
    Views
    671

    VS 2008 VB - Getting file name clicked on

    I need the file name from Windows Explorer...

    I have a service that runs when a specific extension is selected.

    It's along the same lines as selecting a Docx from WinExp and then Word opens...
  4. Replies
    5
    Views
    610

    [RESOLVED] VB6 won't run a program...

    I reinstalled it... I think I missed one of the dozen or controls we use...

    But it works now...

    Thanks!!!
  5. Replies
    5
    Views
    610

    Re: VB6 won't run a program...

    I have reinstalled SP6 with no improvement.

    I am really starting to worry that the problem is with the OS... some fix from MS has turned XP toxic.
  6. Replies
    5
    Views
    610

    [RESOLVED] VB6 won't run a program...

    I just reinstalled VB6 and it won't run any applications!

    I open the program, press F5 or the > or Debug >> Run and the IDE just blips out. No error messages... it just exits.

    I can't compile,...
  7. Re: CRC32 bug... and I am pulling my hair out!

    More info.

    I copied the file set from the source to the server. The CRC32 numbers have changed AGAIN and they STILL don't match.
  8. CRC32 bug... and I am pulling my hair out!

    This is the scoop:

    I work in the bio-tech industries as a software engineer. We do lots of testing of products, and the results are saved on a server.

    The instruments are mostly Agilent...
  9. Replies
    2
    Views
    525

    Re: FSO Exclusive Use

    Ok... that makes some sense... but I have found a buggy that might just be the culpret. Now all I need to do is make sense of it. Off to create another topic...

    Thanks!
  10. Replies
    15
    Views
    1,529

    Re: Backup database

    I have a ton of VB code to do this in SQL server... I donno if it will help in Access, for some reason, I doubt it.
  11. Re: A more secure file to put application settings instead of .ini file and registry?

    I use an encrypted access file.

    The file gets renamed with a .key extention, then opened by the application as an mdb internally. The .key confuses the hell out of the system and will not fire...
  12. Replies
    2
    Views
    525

    FSO Exclusive Use

    Is there anyway to apply a Read Lock or an Exclusive Use condition to a file opened with FSO?

    The way I am thinking is via opening it for write... but that could cause conflicts with what I am...
  13. Replies
    9
    Views
    708

    Re: Me and my friend needs work to do.

    .NET is the future.

    Another way to get a good version for free is to attend a MicroSoft event. Also, if you are a student, there are deals available there.

    You will need a database, I would use...
  14. Re: new to programming language(how to display unused alpha characters)

    no, that's not an array. it's a function. A function is a process that ultimately acts like a variable. In this case, the function is being passed the potential range of letters A..Z and a..z in...
  15. Replies
    9
    Views
    8,428

    Re: Taskkill Question

    Are you trying to stop duplicates or other jobs period?

    If you are stopping dupes, this is the best bet:

    If App.PrevInstance = True Then
    Exit Sub
    End If
  16. Replies
    3
    Views
    475

    Re: Opening files from Server

    you can, but not that way...

    Using FTP in that manner isn't good.

    First off, check out FSO - File System Object. It has easier methods of accessing data and retrieving it.

    Since, I am sure,...
  17. Replies
    9
    Views
    8,490

    Re: Sort By Date in VB6!

    to start with, use ADO. Then set the data type as a date.

    The rest will take care of itself. Otherwise, the system views the data as a string and confusion could abound.
  18. Replies
    13
    Views
    888

    Re: Visual Source Safe - Wannabe

    gee... what kind of documents are you protecting? Source code?

    If it is source code, there are some folks here who have written some tools that can help you... I am sure they will chime in.

    VSS...
  19. Replies
    6
    Views
    4,311

    Re: VB6 .EXE self CRC-checking

    the only other suggestion would be to dynamically allocate all values to a table.
  20. Replies
    6
    Views
    4,311

    Re: VB6 .EXE self CRC-checking

    the easiest way is to use FSO on the file, get the size and compare.
  21. Replies
    7
    Views
    658

    Re: [RESOLVED] Database Searching Issue

    What suggestion fixed it?
  22. Replies
    7
    Views
    658

    Re: Database Searching Issue

    if it's not being found, you are getting a rs.eof condition = true. You aren't trapping for it.

    Change the ifs:



    If rs.eof then
    Msgbox "thief"
    exit sub
  23. Replies
    2
    Views
    3,877

    Re: No Transaction is Active

    Code would be killer hard...

    We spent about an hour this morning... and found the damned thing!

    It is way to complex to get into at this time, but I will summarize later.
  24. Replies
    2
    Views
    3,877

    No Transaction is Active

    That's the message I am getting... I have a VB6 project that yes, has transactions in it, however, this form doesn't, yet it throws the error...

    It's very random and inconsistant in its behaviour,...
  25. Replies
    26
    Views
    1,184

    Re: [UPDATE] Forms Blowing up the IDE

    I hear what you are saying, but the controls that were blowing up worked fine on other forms... hense, if I was having an issue with an unregistered OCX, for example, I would expect it to be global,...
  26. Replies
    26
    Views
    1,184

    Re: [UPDATE] Forms Blowing up the IDE

    I would find it very hard to believe that VSS couldn't handle binary files... that would boggle what's left of my brain.

    Still no cause... the best guess? A combination of a huge exe and a MS...
  27. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    I have not tried that... I will give that a shot when I have a few minutes to kill.
  28. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    Well... a couple of weeks have past... and I am still no closer to figuring this out.

    However, this is what we did. A new computer was imaged (created in May), and given to us. The first thing I...
  29. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    it is becoming apparent that the updates they ship out are part of the master plan of making older software obsolete... most annoying.
  30. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    This problem was present before the memory upgrade... if anything, I was hoping the memory upgrade would fix it.

    Yesterday, a coworker and me did some analysis on this. We found that the FRX file...
  31. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    I just installed - last week - a new 2 gig stick. It replaced the 1 gig that had been there.

    So far, I have totally reinstalled VB6, SP6 and a long list of 3rd party controls. I did some reading,...
  32. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    A lot of old stuff... 3D Magic Buttons, some old Sheldon (pre-Infragistics) controls, Component 1, Be Cube, DynamiCube... things of that nature.

    There is a chance I have found something... reading...
  33. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    techgnome - I would LOVE to... but it's being replaced with a .NET app.

    But, as I said, that's a few weeks off, and these dinky little fixes come and go still... it really is convoluted... why...
  34. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    I am in the process of reinstalling VB6 and the primary suite of controls we use.

    I can't think of anything else...

    oh, the OS returns a wacky memory read error, but not all the time.
  35. Replies
    26
    Views
    1,184

    Re: Forms Blowing up the IDE

    There shouldn't be. The 2 machines in question are both identical model Dell's - Optiplex 745's, both running XP SP2. If anything, mine has more memory.

    They were both built off the same image,...
  36. Replies
    3
    Views
    939

    Re: Does File Exist? Is File in Use?

    FSO has a file exists method.

    Public Function Get_INI_Item(Key As String, Element As String) As String

    Dim sTemp As String
    Dim FileName As String
    Dim oChkFile As FileSystemObject...
  37. Thread: programming

    by realbogus
    Replies
    6
    Views
    533

    Re: programming

    It looks to me like she needs Programming 101...

    Grace - have you considered a local college? Is there one available? If not, do some searching around here... but you will need some documentation.
  38. Replies
    26
    Views
    1,184

    [UPDATE] Forms Blowing up the IDE

    This is getting to become an old problem for me... we have a rather large (when compiled, 14m) application. It's one giant EXE (I know...).

    Converting/upgrading is out of the question. We are...
  39. Replies
    33
    Views
    1,653

    Re: [2005] what to do in asp.net

    it's not that bad... besides, hair is way overrated. :)
  40. Re: [02/03] ASP.NET 1.0 > 1.1 Upgrade

    GOT IT!!!

    The computer had 1.1 installed... however, it was apparently a bad install. I uninstalled and reinstalled. Life is good. I can actually get in.

    Thanks!
Results 1 to 40 of 105
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width