473,756 Members | 2,378 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Filter report based on values of calculated value on report

296 Recognized Expert Contributor
I have a report (JobVacanciesOn ly) that has a subreport (JobVacanciesOn lySR) that are based on two separate queries.
MY - JobVacancyJobs
Expand|Select|Wrap|Line Numbers
  1. SELECT Job.Code, Job.Title, Job.Grade, Grade.Minimum, Grade.Midpoint, Grade.Maximum, Job.EEOCategoryCode, EEOCategory.Desc, Job.EEOSubCategoryCode, EEOSubCategory.Desc
  2. FROM Grade RIGHT JOIN (EEOSubCategory RIGHT JOIN (EEOCategory RIGHT JOIN Job ON EEOCategory.Code = Job.EEOCategoryCode) ON EEOSubCategory.Code = Job.EEOSubCategoryCode) ON Grade.Code = Job.Grade
  3. ORDER BY Job.Title, Job.Code;
MY - JobVacancies
Expand|Select|Wrap|Line Numbers
  1. SELECT JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions, Department.Desc, Division.Desc
  2. FROM (JobVacancy LEFT JOIN Department ON JobVacancy.DepartmenCode = Department.Code) LEFT JOIN Division ON JobVacancy.DivisionCode = Division.Code
  3. GROUP BY JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions, Department.Desc, Division.Desc
  4. ORDER BY JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode;
There is a textbox on the main report that calculates the total number of vacancies for each job position
[code]TotalVacancies= IIf(((DSum("[NumberofPositio ns]","JobVacan cy", "[JobVacancy.JobC ode]=[code]"))-DCount("[MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] =[code]"))<0,0,((DSum( "[NumberofPositio ns]","JobVacan cy", "[JobVacancy.JobC ode]=[code]"))-DCount("[MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] =
Expand|Select|Wrap|Line Numbers
  1. ")))
and a textbox in the subreport that calculates the number of vacancies for that job position, in a specific department and division
[code]NumVacancies=II f([NumberofPositio ns]-(DCount(" [MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] = Reports![JobVacanciesOnl y]![code] AND [MY - ActiveEmpJob]![DivisionCode] = [MY - JobVacancies]![DivisionCode] "))<0,0,[NumberofPositio ns]-(DCount(" [MY - ActiveEmpJob]![ID]","MY - ActiveEmpJob"," [MY - ActiveEmpJob]![JobCode] = Reports![JobVacanciesOnl y]!
Expand|Select|Wrap|Line Numbers
  1.  AND [MY - ActiveEmpJob]![DivisionCode] = [MY - JobVacancies]![DivisionCode] ")))
What I want to do now, is filter my report so that when it opens, it only shows the records that have NumVacancies or TotalVacancies with a value greater than 0 (basically I want it to only display the records where there is a job vacancy). It would seem that the easiest method would be to filter this in a query, but after over a week of trying to get a query to calculate the vacancies for me, it seems that with my dataset, it is not possible to get the desired results - hence the 2 queries above. So......is there any way to filter this based on a calculated value textbox that is on the report?? My VBA is very very limited, so please don't oversimplify if that's what I need to be using. Thanks in advance!
Jul 27 '07
94 6921
mlcampeau
296 Recognized Expert Contributor
Longest thread.......no t even close!! IsNull may not do what you want ...if it doesn't, then use the IS Null criteria syntax.....

([MY - JobVacancyOccup ants]![DivisionCode] Is Null) OR ........blah blah.
Okay so I think I have the Is Null part working.
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR (([MY - JobVacancyOccup ants]![DivisionCode] Is Null) And [JobCode] = '" & [Job]![code] & "') OR ('" & [JobVacancy]![DivisionCode] & "' IS Null) AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
What happens now is probably better explained with an example.
This record comes up when I run the query:
Job Code; DepartmentCode; DivisionCode; OccDept; OccDiv; #Positions; #Occupants
30801A; ES; HR; ES; HR; 1; 2

Where DepartmentCode and DivisionCode are from the JobVacancy table while OccDept and OccDiv are from the EmplOrganizatio n table.
This is correct in the fact that there are 2 occupants with this job code, however, 1 of the occupants is indeed in Department ES, Division HR, while the other is in Department: OP, Division: Null. Soooo....In fact I should have two separate records showing like this:
30801A; ES; HR; ES; HR; 1; 1
30801A; Null; Null; Op; Null; Null; 1
(Nulls because the position with the department Op and Division Null are not in the JobVacancy table, and Division is Null because it's not entered in the system for that individual)
Now, maybe seeing that example you'll have a better idea of what I'm trying to accomplish (I hope. It's so hard to explain...) If you have any ideas on how I can get the desired results, I'm listening!
Aug 3 '07 #51
puppydogbuddy
1,923 Recognized Expert Top Contributor
Okay so I think I have the Is Null part working.
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR (([MY - JobVacancyOccup ants]![DivisionCode] Is Null) And [JobCode] = '" & [Job]![code] & "') OR ('" & [JobVacancy]![DivisionCode] & "' IS Null) AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
What happens now is probably better explained with an example.
This record comes up when I run the query:
Job Code; DepartmentCode; DivisionCode; OccDept; OccDiv; #Positions; #Occupants
30801A; ES; HR; ES; HR; 1; 2

Where DepartmentCode and DivisionCode are from the JobVacancy table while OccDept and OccDiv are from the EmplOrganizatio n table.
This is correct in the fact that there are 2 occupants with this job code, however, 1 of the occupants is indeed in Department ES, Division HR, while the other is in Department: OP, Division: Null. Soooo....In fact I should have two separate records showing like this:
30801A; ES; HR; ES; HR; 1; 1
30801A; Null; Null; Op; Null; Null; 1
(Nulls because the position with the department Op and Division Null are not in the JobVacancy table, and Division is Null because it's not entered in the system for that individual)
Now, maybe seeing that example you'll have a better idea of what I'm trying to accomplish (I hope. It's so hard to explain...) If you have any ideas on how I can get the desired results, I'm listening!
Instead of Is null, try the Null To Zero function and see if that helps and let me know....I have other ideas if that does not work.
Aug 3 '07 #52
mlcampeau
296 Recognized Expert Contributor
Instead of Is null, try the Null To Zero function and see if that helps and let me know....I have other ideas if that does not work.
This is my full sql:
[code=sql]SELECT Job.Code, JobVacancy.Depa rtmenCode, JobVacancy.Divi sionCode, JobVacancy.Numb erofPositions, Department.Desc , Division.Desc,
DCount("[ID]","[MY - JobVacancyOccup ants]","( [MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz([MY - JobVacancyOccup ants]![DivisionCode]) And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz('" & [JobVacancy]![DepartmenCode] & "') AND [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "')") AS NumOccupants, (DLookUp("[DepartmentCode]","MY - JobVacancyOccup ants","[JobCode]='" & [Job]![code] & "'")) AS OccDept, DLookUp("[DivisionCode]","MY - JobVacancyOccup ants","[JobCode]='" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS OccDiv
  2. FROM Job LEFT JOIN ((JobVacancy LEFT JOIN Department ON JobVacancy.DepartmenCode = Department.Code) LEFT JOIN Division ON JobVacancy.DivisionCode = Division.Code) ON Job.Code = JobVacancy.JobCode
  3. ORDER BY Job.Code, IIf([JobVacancy].[DepartmenCode] Is Null,"z-Unassigned",[JobVacancy].[DepartmenCode]), IIf([JobVacancy].[DivisionCode] Is Null,"z-Unassigned",[JobVacancy].[DivisionCode]);
where
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","( [MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz([MY - JobVacancyOccup ants]![DivisionCode]) And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz('" & [JobVacancy]![DepartmenCode] & "') AND [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "')") AS NumOccupants
is the piece of code that I've been focusing on. (who knows, maybe the answer lies in the DLookups?) As you can see, I tried the Null to Zero function and I have the same results as the Is Null in regards to my example in the previous post. What I did not realize with the Is Null until a few moments ago is that when I had a case where an employee had a particular job but the job was not in the job vacancy table, the NumOccupants was coming up as 0, but the Nz gives the correct count in those cases. With the above code, it seems that the trouble is lying where individuals do not have a department and/or division assigned to them.
Aug 3 '07 #53
mlcampeau
296 Recognized Expert Contributor
This is my full sql:
[code=sql]SELECT Job.Code, JobVacancy.Depa rtmenCode, JobVacancy.Divi sionCode, JobVacancy.Numb erofPositions, Department.Desc , Division.Desc,
DCount("[ID]","[MY - JobVacancyOccup ants]","( [MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz([MY - JobVacancyOccup ants]![DivisionCode]) And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz('" & [JobVacancy]![DepartmenCode] & "') AND [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "')") AS NumOccupants, (DLookUp("[DepartmentCode]","MY - JobVacancyOccup ants","[JobCode]='" & [Job]![code] & "'")) AS OccDept, DLookUp("[DivisionCode]","MY - JobVacancyOccup ants","[JobCode]='" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS OccDiv
  2. FROM Job LEFT JOIN ((JobVacancy LEFT JOIN Department ON JobVacancy.DepartmenCode = Department.Code) LEFT JOIN Division ON JobVacancy.DivisionCode = Division.Code) ON Job.Code = JobVacancy.JobCode
  3. ORDER BY Job.Code, IIf([JobVacancy].[DepartmenCode] Is Null,"z-Unassigned",[JobVacancy].[DepartmenCode]), IIf([JobVacancy].[DivisionCode] Is Null,"z-Unassigned",[JobVacancy].[DivisionCode]);
where
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","( [MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz([MY - JobVacancyOccup ants]![DivisionCode]) And [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]![code] & "') OR (Nz('" & [JobVacancy]![DepartmenCode] & "') AND [MY - JobVacancyOccup ants]![JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "')") AS NumOccupants
is the piece of code that I've been focusing on. (who knows, maybe the answer lies in the DLookups?) As you can see, I tried the Null to Zero function and I have the same results as the Is Null in regards to my example in the previous post. What I did not realize with the Is Null until a few moments ago is that when I had a case where an employee had a particular job but the job was not in the job vacancy table, the NumOccupants was coming up as 0, but the Nz gives the correct count in those cases. With the above code, it seems that the trouble is lying where individuals do not have a department and/or division assigned to them.
I just noticed a flaw with the Nz(). Again, I'll illustrate it as an example. This is what I want:
JobCode; DepartmentCode; DivisionCode; OccDept;OccDiv; #Pos;#Occ
30400A; TIMB; CRR; TIMB; CRR; 1; 1
30400A; TIMB; NVIR; TIMB; NVIR; 1; 1
30400A; TIMB; WIR; TIMB; WIR; 1; 1
but when I changed the code to Nz() instead of Is Null, I got this:
30400A; TIMB; CRR; TIMB; NVIR; 1; 3
30400A; TIMB; NVIR; TIMB; NVIR; 1; 3
30400A; TIMB; WIR; TIMB; NVIR; 1; 3
So it is counting all 3 occupants each time rather than matching the divisions and counting that way.
Aug 3 '07 #54
mlcampeau
296 Recognized Expert Contributor
Just incorporate your filter condition in the Where argument of the OpenReport command like the following:

Dim strWhere As String
strWhere = "[NumVacancies] > 0 or [TotalVacancies] > 0"
DoCmd.OpenRepor t "YourReportName ", acViewPreview, , strWhere
Well, I have a little bit of good news from all of this. Regarding the query MY - JobVacancyJobs (the one the main report is based off of. aka-the one that works), I took out the calculated textbox TotalVacancies from my main report and replaced it with the TotalVacancies control from the query. I then put this code in:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Report_Open(Cancel As Integer)
  2. Dim strWhere As String
  3. strWhere = "[TotalVacancies] > 0"
  4. DoCmd.OpenReport "JobVacanciesOnly", acViewPreview, , strWhere
  5. End Sub
And it filters the report!! I would still like to get the second query working properly because in cases where a JobCode is associated with many departments and divisions, but only 1 of them have a vacancy, I only want that one to show up in the subreport, where right now, it's showing all the departments and divisions, but it is only showing the JobCodes that have vacancies! It does really slow down the opening of the report but it works!
Aug 3 '07 #55
puppydogbuddy
1,923 Recognized Expert Top Contributor
Here are a couple of things for you to think about: The easiest one to implement is #2, so you might want to try that first. Let me know what happens.

1. many errors are made with the improper use of "Ands" and "Ors". Make sure what you are wanting to do matches the syntax that you used. Map it out in simplistic terms what you want to do and then match it to the syntax used in the expression.

x+ y And (A or B) And (C or D)

X + Y And (A or B or C)

X + Y OR (A and B and C)
_______________ _______________ _______________ ___________
2. Try your second query using the Distinct key word.>>>>Select Distinct blah blah

_______________ _______________ _______________ _______________ _____
3. If nulls are not counted improperly on NumOccupants, keep in mind that you you could use the null to zero string function, which converts the null to text..usually spaces ("") , example Nz([XXXX],"")
Aug 3 '07 #56
mlcampeau
296 Recognized Expert Contributor
Here are a couple of things for you to think about: The easiest one to implement is #2, so you might want to try that first. Let me know what happens.

1. many errors are made with the improper use of "Ands" and "Ors". Make sure what you are wanting to do matches the syntax that you used. Map it out in simplistic terms what you want to do and then match it to the syntax used in the expression.

x+ y And (A or B) And (C or D)

X + Y And (A or B or C)

X + Y OR (A and B and C)
_______________ _______________ _______________ ___________
2. Try your second query using the Distinct key word.>>>>Select Distinct blah blah

_______________ _______________ _______________ _______________ _____
3. If nulls are not counted improperly on NumOccupants, keep in mind that you you could use the null to zero string function, which converts the null to text..usually spaces ("") , example Nz([XXXX],"")
I tried using Distinct and that doesn't change anything.
I'm not sure if I'm understanding your #3 correctly. I tried this:
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR ((Nz([MY - JobVacancyOccup ants]![DivisionCode]," ")) And [JobCode] = '" & [Job]![code] & "') OR ((Nz('" & [JobVacancy]![DivisionCode] & "', " ")) AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
but it doesn't like the quotation marks in the Nz() function
Aug 3 '07 #57
puppydogbuddy
1,923 Recognized Expert Top Contributor
I tried using Distinct and that doesn't change anything.
I'm not sure if I'm understanding your #3 correctly. I tried this:
[code]DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR ((Nz([MY - JobVacancyOccup ants]![DivisionCode]," ")) And [JobCode] = '" & [Job]![code] & "') OR ((Nz('" & [JobVacancy]![DivisionCode] & "', " ")) AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
but it doesn't like the quotation marks in the Nz() function
Wrong syntax...ths should be pretty close:
[code]
DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR ((Nz([MY - JobVacancyOccup ants]![DivisionCode],"")) And [JobCode] = '" & [Job]![code] & "') OR '" & ((Nz([JobVacancy]![DivisionCode],"") & "') AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
  2.  
Aug 3 '07 #58
mlcampeau
296 Recognized Expert Contributor
Wrong syntax...ths should be pretty close:
[code]
DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR ((Nz([MY - JobVacancyOccup ants]![DivisionCode],"")) And [JobCode] = '" & [Job]![code] & "') OR '" & ((Nz([JobVacancy]![DivisionCode],"") & "') AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
  2.  
That gives me a syntax error (missing operator) and then it highlights AS.
Aug 3 '07 #59
puppydogbuddy
1,923 Recognized Expert Top Contributor
That gives me a syntax error (missing operator) and then it highlights AS.
Try this:
[code]
DCount("[ID]","[MY - JobVacancyOccup ants]","([MY - JobVacancyOccup ants]![DivisionCode]='" & [JobVacancy]![DivisionCode] & "' And [JobCode] = '" & [Job]![code] & "') OR ((Nz([MY - JobVacancyOccup ants]![DivisionCode],"") & "') And [JobCode] = '" & [Job]![code] & "') OR '" & ((Nz([JobVacancy]![DivisionCode],"") & "') AND [JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "'") AS NumOccupants
Aug 3 '07 #60

Sign in to post your reply or Sign up for a free account.

Similar topics

0
6475
by: CSDunn | last post by:
Hello, I have a problem with field filtering between an Access 2000 Project form (the application is called CELDT), and the report that shows the results of the filter. Both the form and the report are based on the same View addressed in the Record Source of both as 'dbo.CLMain_vw'. The View resides in a SQL Server 2000 database. There are two different problems I am having with filtering: The first involves filtering in the form by date...
3
6614
by: Richard | last post by:
Hi, I have a form based on a table. When I filter the form I want to run a report based on the same table with the same filter as the form. No problem until I want to filter a combo box where the text value is on a different table. The me.filter is then a text instead of the id-number from the lookup table. This causes the report to prompt for the parameter. How do I get by this problem? Do I need to create a temporary table? I rather...
7
6286
by: damjanu | last post by:
Hi All; I need little help. I have a datasheet form. I allow user to do 'filter by selection'. My form contains a column with values. As user changes selections, I want to calculate totals. I can do this the first time the form loads.
1
17670
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
3
2740
by: ahaque38 | last post by:
Hello. Using A2K SP3, I am having the following problem with a report using "Sorting and Grouping". I have recently added a grouping in the reports for "Category2<>'CONTRACTS'". I have reports at the plan (overall totals), department and division levels which have sorting and grouping implemented with this new
2
4405
by: Seth Delaney | last post by:
I have a form with multiple unbound text boxes which serves as a "search form". I can enter my search parameters in the various boxes as needed and click okay. My records are then filtered to produce the results I want in a separate form (filter by form). No problem, except I want to save the sql to a query, not a form. When I debug.print the various sql, I get something like this example: (( LIKE "cam*")) which obviously is not enough...
1
2488
by: shobhit_shanker | last post by:
Here are the relevant "givens" to my problem... Form: frmLaunchRpt - Text Box: txtAsOfDate - Check Box: chkLogEval - Command Button: cmdLaunchRpt Report: rptEvaluation - Text Box: txtGreen (Percent of items on schedule) - Text Box: txtYellow (Percent of items slightly off schedule)
3
4741
by: kelley.l.turner | last post by:
Hi all, I am very new to MS Access so please bear with me! I have created a simple calculated field in my data entry form, yet when I view my data table or try to generate a report based on this calculated field, no value is posted. How/where do I get my calculated values to also show up in the tables and reports? Thanks, Kelley
2
5545
by: jcf378 | last post by:
hi all. I have a form which contains a calculated control ("days") that outputs the # of days between two dates (DateDiff command between the fields and ). However, when I click "Filter by Form" in order to search for records based on this form, I would like to be able to enter a value in this "days" control so that I can filter records on the form based on this calculated interval (i.e., i want to search for records specifically where...
0
9431
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
10014
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9819
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
9689
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7226
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6514
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
5119
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3780
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3326
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.