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. rudolfelizabeth

    How do you disable rectangle of a webbrowsers in ms access the transparent feature doesn't work

    Hi, Tried to disable the webbrowser background rectangle in ms access with the following code to see only a loaded gif file Me.WebBrowser31.BorderStyle = 0 This code should make the webbrowsers triangle not visible but is doesn't work in ms access
  2. rudolfelizabeth

    Webrowser code not working

    Hi I have on a form with a video list name list(1) and a webbrowser video page on the same page access 2016 when I insert the code "=C:\users\owner\Desktop\mainfolder\access\Meditation" on the webbrower page I can see all the vidoes and click on them and play them When I use the code in the...
  3. rudolfelizabeth

    day function in ms access doesn't return the day name and there isn't a function date name

    Day([[DrawDate]) should return the date name in a query criteria field instead it returns the date number how do you get the date name instead of the number, and can anyone inform why do you need the date number in real life situation, I don't understand the programmers at ms. here's my code...
  4. rudolfelizabeth

    datepart d function oops

    Hi, The code below should produce all the days of the year in the database the user ask for in a query aliasmyday: (DatePart("d",[Saledate]) criteria Like ("*" & [Search_My_daynumber]) for example if the user input 01 it should brings all the data of all the years on the first day of each...
  5. rudolfelizabeth

    Query doesn't Group by year

    Hi, I have a number database with a query with three columns to group by year Right_hits: Right(Format([Drawnumber],"0000"),2), TotalHits: Count(*) , DrawDate criteria groupby Year(2016) The query runs without giving no info of the year 2016 I have data in the database of the year 2016.
  6. rudolfelizabeth

    Days of the year

    According to microsoft this should return the days of the current year(366 or 365) I entered it in a query no results Aliasdays: Format(Now(),"y")
  7. rudolfelizabeth

    Runningsum using two values

    I have a report In the page Header I have a value text41 = Beginbal In the detail section I have in the running sum source code Quantity*Price + text41 Runsum over all It doesn't include the value of the text41 When I run the report and idea to fix this
  8. rudolfelizabeth

    Help with syntax error

    access 2003 I am trying to get a sum between two dates input by the user, for the positive amounts in the price field . I get a syntax error below the code Positivesum: DSum("quantity*transactions!price","transactions"," and format([Transdate],'yyyymmdd') between format([Begindate],'yyyymmdd')...
  9. rudolfelizabeth

    Report cannot handle option group by in query based on two tables

    Ms access 2003 I built a query based on two tables separately the query works fine Then I built a report based on the same query the report has to use info from these two tables. when I ran the report it showed the message cannot handle multi level group by clause in query Is their any...
  10. rudolfelizabeth

    Total on main from

    I have a query in a main from members with the follow code in the query , Total: (select sum(amount) from transactions2 where [Transactions2]![Number] = Forms![Members]![Number]) without the where clause it gives you a sum of amount for all the clients in the transaction2 table. with the...
  11. rudolfelizabeth

    How do you nz0 a text box in a report that has a null value

    I have a report textbox, text33 the sourcecode is =[Beginbal] from a query How do you nz 0 the beginbal value when the report is opened and beginbal is null Private Subreport_open(cancel as interger) Iff Beginbal = null , nz ([beginbal],0) Endif End sub do you have to define the value...
  12. rudolfelizabeth

    Dsum a complete NightMare

    The Dsum function doesnot work at all run for client 100 Id Number Transdate Amount AliasBalruntot Runtot 2 100 28-03-2009 50.00 125.00 75.00 14 100 29-03-2009 300.00 425.00 125.00 3 100 31-03-2009 -15.00 410.00 425.00 5 100 28-04-2009 -25.00 385.00 410.00 8 100 31-08-2009 50.00 445.00 395.00 9...
  13. rudolfelizabeth

    Oops Dsum unindentifed function error

    I have some dsum code in a ms access database that work 2003. Then I created another database copy the same code in that database it didn't work. I pressed f11 a to see the (missing obejects) but everything is ok . Is this a common error in ms access. Is there a solution to this
  14. rudolfelizabeth

    Dsum Oops Below simplified query instead of debit I used amount field

    Id Linenumber Number Transdate Action Amount Balance Reference AliasBalBeginbaltotal3 AliasBalcarryforwardruntotal 2 0 100 31-03-2009 Deposit 50.00 0.00 No 657 75 110 3 0 100 31-03-2009 Withdrawal -15.00 0.00 Paymant electricity 75 110 5 0 100 28-04-2009 Deposit 25.00 0.00 75 135 8 0 100...
  15. rudolfelizabeth

    Dsum transactions with the same date

    How do you solve the following problem in a transaction query. If you have three transactions for the same customner on the same date. AliasBalcarryforwardruntotal2: DSum("Nz (Debit-credit,0)","transactions2","clientnumber=" & [clientnumber] & " and [Transdate]<=#" &...
  16. rudolfelizabeth

    Clear form from sreen

    Is there a cls in microsoft access. How do refer to the largest value for example in field number.
  17. rudolfelizabeth

    autonumber oops

    I have a database with records with a number field representing the clientnumber. I have a autonumber field representing the Id I have deleted the id autonumber and then inserted a new field to reset the id number to one I have a client with the number one as clientnumber indexed why is...
  18. rudolfelizabeth

    Dsum Id sequence problem in query

    How do you correct the following problem if you dsum your get the sum of values in sorted in order of the id , not date sort order ,what if the user forget some information of the previous year and he input it later with the correct year date this id nummer will be higher if run the dsum you...
  19. rudolfelizabeth

    clear parsed section

    After you parse a portion of an information of a field delemited by (,) on a form to another field on the form, what is the criteria to clear, the parsed section of the information on from,
  20. rudolfelizabeth

    Dsum

    The statement below must provide the value for the beginbalance(the Previous Balance for the report.) the user asked for when he enters the startdate, the value must be all the records of the account for the user input, <= the startdate.(it doesnot produce any result with the criteria part, when...

Part and Inventory Search

Back
Top