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 SkipVought 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: *

  1. vlad123

    datagrid

    Hi, I have a form with 2 comboboxes and one datagrid. I want to use these 2 comboboxes to filter the information from datagrid. I have in the first combo all countries from table country in the second one: all cities from the country that is selected in the first combo (table city) I want in...
  2. vlad123

    multiuser db

    This application is not made by me.these temporary tables are for some queries in Access.the only possibility its to change this?
  3. vlad123

    multiuser db

    Hi, I have an application with a SQL server database and using VBA, also some temporary tables in Access. I need to make it working for being used by more than one user in the same time.My boss wants to have the entire database on a network server and everyone shares the data and uses the same...
  4. vlad123

    application.run

    Hi! My problem looks something like this: I have some sequences, every sequence has some steps.Every step is a function.Of course, every step, function can have one or more arguments. for every sequence I have to call every function with its own arguments. these things I have in a DB. I have the...
  5. vlad123

    multiselect listbox

    I have a listbox with columncount = 2, boundcolumn = 1 and Multiselect = extended. I need to use the values selected in this list from the second column. For ex, if the user select World Markets;http://stocks.onvista.co.uk/overview_quotes.html?ID_OSI=85374; AND...
  6. vlad123

    compare text

    thanks a lot!!
  7. vlad123

    compare text

    Hi! I want to compare the text from 2 different files, to see if there are some differences. Do you have any idea how can I first open these files to have the text from them? (in VBA) I have the path and also the file name in 2 variables. Thanks!
  8. vlad123

    value list

    the values from this list are not in a table. Just in the list box(value list).
  9. vlad123

    value list

    I am using Access 2003!!!
  10. vlad123

    value list

    Hi! I have a list box with Row Source Type: value list. I want to delete all duplicates from this list(every value to be found just one time). Do you have any ideea?
  11. vlad123

    common dialog

    Thank you! Its working!
  12. vlad123

    common dialog

    I tried something like this : Dim strFilePath As String strFilePath = GetOpenFile Open strFilePath For Input As #1 But, the problem is that I don't want to read or to write from or in this file, I want just to show it. And I dont know how.
  13. vlad123

    common dialog

    Hi! I wanted to use a common dialog control in Access 2003 but I dont have this in Components. So, I use a code from http://www.mvps.org/access/api/api0001.htm. The problem is that I can browse but not open (when I press open its not doing anything). Can you tell me where is the problem?! thanks!
  14. vlad123

    strings manipulating

    if , for ex. , I have a statement containing the word 'income'. I want to extract the numeric value from this statement just if this value is greater than 10.000. something like this. so first I need to see if I have a numeric value in this statement and then to check if this value is in a...
  15. vlad123

    strings manipulating

    Hi! How can I verify if a string contains numbers or only letters?! and, if its possible, to verify if the numbers contained in this string are in a specified interval, like 0 < x < 100.000 Thanks!
  16. vlad123

    add item

    thank you very much.its working!
  17. vlad123

    add item

    Can you tell me, please, how can I add values in a list with 2 columns?! (ColumnCount=2) First column: lstLinks.AddItem MyBrowser.Document.links(i).innerText second one: MyBrowser.Document.links(i).href thanks!
  18. vlad123

    execbw

    Hi! I have a form with a web browser control.I want to print the information from this web browser (navigate through one web page).Until now I can preview and print this, but if I want to save in a word document it doesnt work. I can save this as a html file or txt file, but thats all...
  19. vlad123

    web browser in a report

    I need to have in a report some information from Web pages. I have this information stored in a table in text format (.innertext) and also html format (.outerHTML). I can open this in a form in a web browser to see it. But, if I put in a report the information in text format, of course it doesnt...

Part and Inventory Search

Back
Top