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 Chriss Miller 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. spence27

    First Procedure - A little Help Please

    Thats a lot slicker than i was able to put together, but they both give the same output when using the command line SQL-PLUS, though i think i might re-evaluate ;-) some of mine. I was just wondering why is there no output when using SQLDeveloper I get script succeded but no results? THe only...
  2. spence27

    First Procedure - A little Help Please

    Here is the proedure i am trying to get to run basically by passing a variable in it brings back any data matching it, but it just wont compile create or replace PROCEDURE VIEW_PRODUCTS_SOLD( Start_Date in date, Finish_Date in Date ) AS BEGIN SELECT PRODUCT_ID...
  3. spence27

    Checkboxes in Combos?

    Thanks HarleyQuinn I knew their was some way to do it. I'll definatly use one of you ideas i have just tested the frmListStyleOption suggestion and it does the job but i'l;l give the other a go especially if it means i can place the check box at the other end of the line. Again thanks all for...
  4. spence27

    Checkboxes in Combos?

    It would if i havge to go down that route. I was just trying to make in a bit more intuative rather than have people holding the CTRL key as well a checkbox makes it very streight forward as to what is selected and what isn't. I have seen checkboxes in listboxes/combos in the past but i can't...
  5. spence27

    Checkboxes in Combos?

    Two questions 1) Is it possible via VBA to add a check box to a listbox for example list all the days of the week on each row and have acheckbox on each lin e so someone could choose their favorite days. 2)If possible, how is done. Any help on this would be greatfuly recieved. Thanks#Spence
  6. spence27

    Compacting in MS Access 97

    This might be one option http://www.mvps.org/access/modules/mdl0030.htm with a bit of code tinkering
  7. spence27

    Limit of 255 characters of connections string

    I understand what you are saying and true it makes sence but i cant changes the field names and the user can choose to as many fields as he or she wants, The code i posted is just a very small sample in general use i expect 10 options minimum to be selected. I have found reference to a kind of...
  8. spence27

    Limit of 255 characters of connections string

    Sorry for the delay in getting back (personal stuff etc..) Below is an example of the sql string. The Select clause can have any number of elements from 1 upwards this is the sql generated that needs to be sent to an access database but there looks to be a limit of 255 characters. So I need to...
  9. spence27

    Limit of 255 characters of connections string

    Thanks i have re-posted to the given forum and clsoed this thread
  10. spence27

    Limit of 255 characters of connections string

    i have been seting up a front end to work of access using ado and i have hit a brick wall. My font end builds a SQL string using the limits and grouping useres select. Once this SQl string is pulled together i send it against the db for the results. In simple testing everything was fine however...
  11. spence27

    Limit of 255 characters of connections string

    i have been seting up a front end to work of access using ado and i have hit a brick wall. My font end builds a SQL string using the limits and grouping useres select. Once this SQl string is pulled together i send it against the db for the results. In simple testing everything was fine however...
  12. spence27

    Automaticlt running scrips when opening a documents

    Found the best answer and that is to put some code in the onStartup event of the document and open the document through brio but holding down the ctrl key
  13. spence27

    Automaticlt running scrips when opening a documents

    HI I have set up a brio document to retrieve a set of data and then export it and finally close down all when the document is opened but i would like to be able to stop this automatic process from happening in some cases when the report has to be run manually. I was think the best wa to do...
  14. spence27

    ADO & Results Sets In Excel

    Thanks for the reply but could you give me a little bit more infomation i.e. what is filtering (in this context) and how would i use it. I have been doing a little bit more leg work since i posted originaly and have found it is posible to create disconected recordset, which would give me the...
  15. spence27

    ADO & Result Sets in Excel

    Just a quick question to you most knowledgeable people I know who to create a result set from a data source, and 99% of the time things work as they should, but what I would like to do is hit the data source once and then create a result set which I can then create additional smaller results...
  16. spence27

    ADO & Results Sets In Excel

    Just a quick question to you most knowledgeable people I know who to create a result set from a data source, and 99% of the time things work as they should, but what I would like to do is hit the data source once and then create a result set which I can then create additional smaller results...
  17. spence27

    Does Excel have a user form collection

    Does Excel have a user form collection, and if so how would i loop through each user form Excel 2002 VBA XP SP2
  18. spence27

    Hyperlinking Form a Sub report To the main report

    I have a report designed that uses a subreport to generate a list on contents on the second page of the report. Everything on the report runs really well but the icing on the cake would be to add some hyperlinking from the contents to the specified section in the main report I'm using CR9 with...
  19. spence27

    Statement Expected Here -- Help

    Im a bit of a newbie to CR, but i'm using CR9 and trying in basic sytax to enter this formula "CALL DETAIL DATA FOR APPLICATION(s) " + arrayToString ({?APPLIACTION_NUMBER},", " ) + " ON TODAY." But i keep getting a error mesage saying "A Statement Expected Here". Can someone point out what i...
  20. spence27

    passing a form object

    i am just wonderibg if you can help a new coder out with the following problem. I need to create a reference to an existing form from a fuction in a module. i then want to pass this object reference into other functions to do this and that. e.g. function makeobj(existingFormName) //create the...

Part and Inventory Search

Back
Top