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 dencom 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: stevedemo
  • Content: Threads
  • Order by date
  1. stevedemo

    Question about ILMerge

    I am new to VB.Net I am using visual studio 2010. I came across this utility ILMerge. It's a utility to combine dll's with your exe file. I think this would be a cool idea however I can't get it to work. I found a utility that has a GUI for this http://ilmergegui.codeplex.com/releases/view/19805...
  2. stevedemo

    Combine two tables with unique values

    I have two tables Table1 & table2. Table1 is a list of part numbers table2 is a list of possible locations. I would like to create a table by combining them with the locations and only the parts from table1. However when I do this I am getting all the possible locations for table2. In excell...
  3. stevedemo

    How to add a on Event to a ActiveX object

    Is it possible to add an onEvent to a ActiveX object ? The one I am talking about is the webbrowser control. The control lacks a very important feature - the OnDocumentComplete event. Thanks, Steve All I want is the chance to prove money won't make me happy.
  4. stevedemo

    How to register a font with VBA or MS 2007 installer

    I have a Access Solution that I have created, a few of the fonts are non standard. Is there a way to register the fonts with VBA ? Or the 2007 Devloper extensions ? Thanks, Steve All I want is the chance to prove money won't make me happy.
  5. stevedemo

    VBA Guru's can you convert this php snippet to VBA ?

    I have a routine on one of my websites that grabs a CSV file and parses it, I then extract the info I need. $handle = fopen($csvfilename, "r"); while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); echo $data[1]." ".$num; // so some more stuff } fclose($handle)...
  6. stevedemo

    MS Access 2007 accde / accdr Security Help

    Ok, 2007 is not bad but it is a different animal. I would like to distribute a database but obviously I want to lock it so it can not be altered. So naturally I would want to use the accde extension. Fine and dandy until you add VB to the project then it shuts off all the macros and VB. I was...
  7. stevedemo

    Access 2007 Button: VBA / Macro

    When I add a button to a form by default Access 2007 creates a embedded macro instead of the VBA code it produced in earlier versions. Is there a way to change this ? Thanks, Steve All I want is the chance to prove money won't make me happy.
  8. stevedemo

    How to get HTML with VBA ?

    Is it possible to grab a web page html with VBA ? If so how ? Thanks !! Steve All I want is the chance to prove money won't make me happy.
  9. stevedemo

    Macro's & VBA MDE won't run in Runtime

    I am unable to get the MDE or ACCDE's to run with the Access runtime. They start up but the VBA and macros won't work. How do I make these run with out the error ? All I want is the chance to prove money won't make me happy.
  10. stevedemo

    Ms Access Version Question

    I am looking at purchasing Ms Access 2007 strictly for the ability to create exe files. However I see several different versions. Home / Student Retail Office Access Which one will make the distributable EXE files ? All I want is the chance to prove money won't make me happy.
  11. stevedemo

    Combine Two Tables with unique info in one field I'm Lost

    I have been trying to figure this one out for a few days and it has me completely stumped. I have tried joining the tables but I only end up with on large table. I have tried dlookup and it didn't seem to do a thing. I only want items in the New Query from table1 where Field 2 is not in Field 2...
  12. stevedemo

    Linked Table Manager Linking to a TEXT file Automation

    Is there a way to automate the Linked Table Manger? I have a table linked to a TEXT file. I have found code on the internet and the code from Dev Ashish doesn’t seem to want to connect to TEXT or CSV files and the code from PETER VUKOVIC didn’t work either. Is there a way to modify their...
  13. stevedemo

    Help with a type mismatch error

    I have tried the following pieces of code and all produce an error. I am stumped. Dim OntimeString, startdate, enddate As String reportname = "database_Query_Report_by_date2" 'Error Type Mismatch OntimeString = "[Date Only] >=" + CDate(Text0.Value) + " and [Date Only] <=" +...
  14. stevedemo

    Help with Converting an Excel Formual to a MS Formula

    I need to find and replace text in a query. I am stumped. The table contains all text fields I need to remove the "cr" that appears at the end. And then add a "1" at the begining of the text field this is how I do it in excel...
  15. stevedemo

    Disable Mouse wheel

    I do not have the option to use the popular dll to help with this is there another way ? I am using office 2003, I have placed a msgbox on the on wheel event to slow the wheel down. But I still get a few advances in the record. I made a query to delete blank records but that doesn't help for...
  16. stevedemo

    Tab Control Question

    What I want to do is programmatically switch between tabs. I want to do something like this: if tab.index[0].visible = true then tab.index.[1].visible = true else tab.index.[0].visible = true end if I know this code as written won't work but I think you will get my point, I want to switch...
  17. stevedemo

    MS Access Search

    Hello, I am a novice to MS Access, I am looking for an alternative to the built in query interface. I would like to pass one or possibly to variables to a query from a form then have the query displayed in a form. I probably didn't explain this well so I have attached a image of what I am...

Part and Inventory Search

Back
Top