473,785 Members | 2,863 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

waring message

In my report called rptStockFlow i have the products
underlined with red if balance is not equal to in - out:
Const conNormal = 400
Const conHeavy = 900 ' exra bold

Private Sub Detail_Format(C ancel As Integer, FormatCount As

Integer)
If Me![balance] <> Me!In - Me!Out Then
Me!balance.Font Weight = conHeavy
Me!balance.Fore Color = 32768
Else
Me!balance.Font Weight = conNormal
Me!balance.Fore Color = 0
End If
If Me![balance] <> Me!OnStore Then
Me!OnStore.Font Weight = conHeavy
Me!OnStore.Fore Color = 255
Else
Me!OnStore.Font Weight = conNormal
Me!OnStore.Fore Color = 0
End If
End Sub
is it possible in the Onopen event of the report to create
some code that sends a warning message on the screen,that something is
wrong with the balance of the goods ?

Nov 13 '05 #1
1 1510
po****@abv.bg wrote:
In my report called rptStockFlow i have the products
underlined with red if balance is not equal to in - out:
Const conNormal = 400
Const conHeavy = 900 ' exra bold

Private Sub Detail_Format(C ancel As Integer, FormatCount As

Integer)
If Me![balance] <> Me!In - Me!Out Then
Me!balance.Font Weight = conHeavy
Me!balance.Fore Color = 32768
Else
Me!balance.Font Weight = conNormal
Me!balance.Fore Color = 0
End If
If Me![balance] <> Me!OnStore Then
Me!OnStore.Font Weight = conHeavy
Me!OnStore.Fore Color = 255
Else
Me!OnStore.Font Weight = conNormal
Me!OnStore.Fore Color = 0
End If
End Sub
is it possible in the Onopen event of the report to create
some code that sends a warning message on the screen,that something is
wrong with the balance of the goods ?


What you might want to do is run a quick query in the onopen event on
the recordsource. I'm not sure if newer versions of access, when
opening a report, allow an argument to be passed to it like a form does
(OpenArgs). In 97, it doesn't. So you may want to store the filter to
the report in a variable. For example, lets say the form is called
CallRpt. It has the command
Docmd.OpenRepor t "SomeRpt",, ,"ID = 123"
You can store the "ID = 123" to a text box, invisible, on CallRpt named
FilterStr.
Let's say the report recordsource is
Select * From Accounts

You could then do something like this in the OnOpen event
Dim rst As DAO.Recordset
Dim strSQL As STring

'create SQL statement and get the filter from the form CallRpt
strSQL = Me.Recordsource & "Where " & Form!CallRpt!Fi lterStr & _
" And Balance <> (In-Out)"

Set rst = Currentdb.openr ecordset(strSQL ,dbopensnapshot )
If rst.recourcount > 0 then
msgbox "Look out, something is wrong here"
endif
rst.close
set rst = Nothing

Note, if you have a filter (Where clause) or OrderBy clause in the
Recordsource (the OrderBy is never needed in a report but this may be a
general query), you'll need to adjust for that. Ex:
Select * From Accounts Where Year = 2005 Order By AccName
You'll want to add the additional filter and remove the OrderBy so it
looks like
Select * From Accounts Where Year = 2005 and ID = 123 And
Balance <> (In-Out)

Nov 13 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1550
by: summer911 | last post by:
Hi I tried the code below ( xmlParseFile) on my xml file ( see below ) but this gives me a warning message!(OS :redhat9.0) The warning message is :I/O waring :failed to load external extity "" What am I doing wrong ? (GIVE ME A HAND!) bool vfpColorSet::LoadFile(const char* file) {
8
16348
by: Brian Keating EI9FXB | last post by:
Would I be correct in saying that the only way to get a user message into a Windows form would be to use P/Invoke with Message? Of is there some part of the .NET API that I am totally un aware of? Thanks for any help Brian
8
10016
by: Rod | last post by:
I have been working with ASP.NET 1.1 for quite a while now. For some reason, opening some ASP.NET applications we wrote is producing the following error message: "The Web server reported the following error when attempting to create or open the Web project located at the following URL: 'http://localhost/WebApplication1'. 'HTTP/1.1 500 Internal Server Error'."
2
3290
by: Microsoft News | last post by:
What I have is a message box that pops up. It is another browser window. The code is a general function that you pass message, title and a key to. The box works great except, that if you are on a page, get the message box, then click ok on the message box go to another page and then back to the first page. The message box pops up again. It is almost like the history or cache still has information about the state and that it knows that...
0
1975
by: ronscottlangham | last post by:
I am working on a custom WCF EndpoingBehavior that will modify the messages coming in and out of my Service. I am having an error related to the modification of the message in the IEndpointBehavior.AfterReceiveRequest(ref Message request,...) method. In the method that creates a new message, I have something similar to ... /// xmlReader defined with new modified content.... /// 'message' is the original message...
2
12175
by: =?Utf-8?B?QWRl?= | last post by:
HI All, I am encountering the following error when I try to send an email through a SMTP server. I believe the problem lies with the authentication part when the network crednetials are used, error is thrown at the .send point. Error is: The following error occured Sending an email: System.ApplicationException: An error occurred sending an email To helen@HerMail.com From ade@MyMail.com Cc Subject A test with Finlistener #1. The body...
3
3838
by: Steven Allport | last post by:
I am working on processing eml email message using the email module (python 2.5), on files exported from an Outlook PST file, to extract the composite parts of the email. In most instances this works fine, the message is read in using message_from_file, is_multipart returns True and I can process each component and extract message attachments. I am however running into problem with email messages that contain emails forwarded as...
0
2701
by: Philluminati | last post by:
I have a Perl SOAP Server which returns this SOAP Message when invoked: <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:xsi="http:// www.w3.org/2001/XMLSchema-instance" xmlns:soapenc="http:// schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/ XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/ encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/...
2
6500
by: bernd | last post by:
Hi netties, posted this in a different group already, which seems to be inappropriate. I create a message queue with msgget(), sent a 5-byte message to it with msgsnd() and try to receive the queue's content with msgrcv(). Everything seems to work fine, apart from the fact that I get back only the last byte back from the original message (after sending the message ipcs -qA shows clearly that there are 5 Bytes waiting in the
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10152
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8974
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2880
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.