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 bkrike 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
  • Content: Threads
  • 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

    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...
  4. 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...
  5. 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 & "\app", "*.lnk What I can't seem to get right is to allow lnk and exe files to be shown :-(
  6. 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 & "\files\" SelectedItem = List1.Text...
  7. Bubbler

    Fire a function?

    I have a mod that works as a timer so that my app stays running in the processes with the form hiden and not visible in the task bar. If the mouse is idle for the preset amount of time in the mod, the app shows again. In order to stop users from launching the app twice, it is common to use: If...
  8. Bubbler

    Using some code that LPlates provid

    Using some code that LPlates provided (and it works great by the way!) I am trying to figure out how to remove a registry entry during a reboot with a boot disk. LPlates code sets the app so that if it is terminated by windows, for example pressing reset on the box , then the app restarts with...
  9. Bubbler

    End a specific process

    Lets say there is a process running called myprocess.exe that was launched by my app (not in the applications window, in the processes window) Can I check for and kill it on exit of my app? I say check for, because it may or may not be running depending on user input. And can it be done across...
  10. Bubbler

    Auto TextBox Entry

    If I have a standard Text Box on an asp page let's say named "message" How can I create a link so that when the user clicks on it, it auto inserts the text string "Link Clicked"
  11. Bubbler

    Maximum Timer Length

    What is the maximum length you can set a Timer for? Is it possible to set it to fire every 12 hours let's say?
  12. Bubbler

    Resave from ListBox to txt File is adding quotes

    I am using a text box and a cmd button and a list box to add items to a txt file but when it resaves the entries to the txt file it adds quotes on each entry, so if the list was: entry1 entry2 and I added entry3 the list resaves as "entry1" "entry2" "entry3" What...
  13. Bubbler

    Using ShellExecute on QueryUnload

    I am wondering if I am thinking about this correctly. What I am trying to do is have the exe file in the ShellExecute actually execute if the app is closed via a reboot, (not closed using the application but literaly hammering the reset button on the machine. Will putting the ShellExecute in the...
  14. Bubbler

    Does an access db in an app req user to have access?

    If I use an access db in an app, does it require the user that installs the app to MS Access installed or can the app still perform browse, search, delete and add record functions without it? Or do I need to include a certain file (Mdac, dll or something)
  15. Bubbler

    Drag Files to ListBox

    How do I enable users to drag files from a folder or the desktop, drop to a ListBox and have it so it creates a copy of the file in the folder that the list box is reading from? Private Sub Form_Load() ListDir "c:\", "*.*" End Sub Private Sub ListDir(ThisPath As String...
  16. Bubbler

    Images in a list box

    Is it possible to include the icons next to the names of the list box that is populated via a folder full of .lnk files? Like in a windows start menu? From what I can find on the net, it is not, but I have to ask here because if it is possible, this forum would know!
  17. Bubbler

    Removing extensions from a FileListBox

    Is there a way to remove the extensions from the list in a FileListBox ctrl without affecting the files?
  18. Bubbler

    Learning tool for .net Enterprise Architect

    I just bought Visual Studio.net Enterprise Architect Before I was't any money I am wondering if anyone has personal experience with good books/training tools. I have a basic understanding of VB6.0 and before I get to deep into VB6.0 I am going to go into the .net tools. Any input would be helpfull.
  19. Bubbler

    FileListBox Populating

    I have a FileListBox and it is populated via a folder full of shortcuts (.lnk) How can I make the FileListBox react so that when one of the shortcuts is clicked on in the FileListBox it opens the program that the shortcut is pionting to? Private Sub File1_Click() 'Go to Program End Sub Private...
  20. Bubbler

    Disable Task Manager

    I know it can't be done, however I have located a work around and I am seeking input from other developers as to thoughts (possible crashes, tangles etc) This seems to be a viable solution if your goal is only to prevent the user from using task manager. If you put this in a timer with a...

Part and Inventory Search

Back
Top