Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Bubbler
  • Order by date
  1. Bubbler

    Find and replace using wildcard in MS Access

    I am sorry if this seems basic to all of you but I am at my wits end, I have an access db and a fld contains entries like this: This is the first record (more info1) This is second first record (more info2) I am trying to use the find replace with a wildcard so that it would become: This is...
  2. Bubbler

    Service Pack 6

    I have read some talk, both in this forum and elsewhere about service pack 6 for VB6.0, is it available? If so where?
  3. Bubbler

    Webbrowser bookmark bug?

    Try some of the examples here for ideas. Hope this helps.
  4. Bubbler

    Can I set a reference in runtime?

    Gwena, I don't think that is possible, but everytime I say that someone proves me wrong!
  5. Bubbler

    Remove Html Tag Tool

    Thank you all for your input, I have been able to compile a worable solution fro this thread, that's why I came here. Thanks again.
  6. Bubbler

    Remove Html Tag Tool

    strongm, yes I tried vb5prgrmr's suggestion, 400 thousand + links crash it. (I think :-)) Yes it is a full webpage. Here is what I tried Dim A As Object For Each A In WB.Document.Links Text1.Text = A.innerText & vbNewLine & A.HREF Next I think it is the text boxes inability to handle this...
  7. Bubbler

    Remove Html Tag Tool

    Thanks for the responses, 2 points 1. The lines are different like this <a href="http://www.website.com/page1.html">http://www.website.com/</a> <a href="http://www.website.com/page2.html">http://www.website.com/</a> and 2 keep in mind that the file is over 400 thousand lines and is a 32mb...
  8. Bubbler

    Remove Html Tag Tool

    Not sure where else to ask this, but I am hoping that due to the amount of experience in the forum I can get some leads to tools Basically I have a 32mb html page and I want to remove the tags, it is over 400,000 lines so manual is OUT!!, I have tried several tools on the net but all of them...
  9. Bubbler

    Create Shortcut instead of filecopy

    (I was talking about the original file btw)
  10. Bubbler

    Create Shortcut instead of filecopy

    Once again vb5prgrmr you hae helped me! Wish I could give you 2 stars. If you are ever in Las Vegas, I will buy you a cold one [thumbsup2]
  11. Bubbler

    Create Shortcut instead of filecopy

    Found it, (HardLink) once again vb5 you da man, one more quick question, related to this, with a ListBox and a TextBox, how in the drag & drop function of the list box: Private Sub List1_OLEDragDrop(Data As ..... and so on if a file is dragged and dropped to the list box, Text 1 shows the path...
  12. Bubbler

    Create Shortcut instead of filecopy

    I know this is possible using ShellLink but there must be something better, instead of FileCopy as shown in the example below, is it possible to CreateShortCut so to speak? If Data.GetFormat(vbCFFiles) Then Dim F As Variant For Each F In Data.Files Dim S As...
  13. Bubbler

    Filter Multiple Extensions

    Thanks vb5prgrmr, that did it! SOmetimes the simple approach...
  14. Bubbler

    Filter Multiple Extensions

    This is driving me crazy, I have a listbox displaying only lnk files in a directory and am filtering them like this: ListDir App.Path & &quot;\app&quot;, &quot;*.lnk What I can't seem to get right is to allow lnk and exe files to be shown :-(
  15. Bubbler

    Package and deployment

    Why even use the PDW? Although some may disagree, I personally use Inno Setup, it is very powerful and even has features like font install. You can get it at http://www.jrsoftware.org/isinfo.php Just my 2cts :-)
  16. Bubbler

    Embed or hide files

    Thanks for the NTFS Streams tip strongm There is a ton of info on the net for this and I think it is the answer I am seeking, I already have somewhat of a working model! Thx again.
  17. Bubbler

    Embed or hide files

    I am using simple txt files in a folder to hold info, not a lot but approx 50 seperate files, to read them into a text box via a list box I am doing this: Dim sTemp As String Dim SelectedItem As String Dim WorkDirectory WorkDirectory = App.Path & &quot;\files\&quot; SelectedItem = List1.Text...
  18. Bubbler

    Error Accessing System Registry!

    If you are still seeking a fix, or to those who are, you can get the patch from http://support.businessobjects.com/communityCS/FilesAndUpdates/scr8_webregfix.exe.asp and then follow these instructions: Extract the two files contained in the self-extracting EXE to the root folder (such as c:\ or...
  19. Bubbler

    Fire a function?

    Thanks for the code LPlates, but it still starts the app a second time, using either Sub Main() or Form_Load Maybe I am not looking at this right, when the app is running, it is visible in the process list as CCL.exe, the above example would work if I can kill the first process maybe? However...
  20. Bubbler

    Using some code that LPlates provid

    That is a good suggestion vbSun, I did not think of that. I will give it a try.

Part and Inventory Search

Back
Top