473,725 Members | 2,070 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 6912
puppydogbuddy
1,923 Recognized Expert Top Contributor
I am still reading and digesting your last post, but I would like to resolve the following issue:

<<<<. I'm still having problems with the DCount referencing [Job]![code]>>>>

Now, I am confused....I thought this query involved these 2 tables:
1. [My - JobVacancyOccup ants]
2. [JobVacancy]

When did table [Job] come into this query? I know you have it the main report query, but I don't believe you had it in the version of this query that you presented on friday.....so therefore I believe that [Job]![code] should be [JobVacancy]![JobCode]
Aug 13 '07 #81
mlcampeau
296 Recognized Expert Contributor
I am still reading and digesting your last post, but I would like to resolve the following issue:

<<<<. I'm still having problems with the DCount referencing [Job]![code]>>>>

Now, I am confused....I thought this query involved these 2 tables:
1. [My - JobVacancyOccup ants]
2. [JobVacancy]

When did table [Job] come into this query? I know you have it the main report query, but I don't believe you had it in the version of this query that you presented on friday.....so therefore I believe that [Job]![code] should be [JobVacancy]![JobCode]
Oh dear...I had to have a little chuckle after reading your post. It seems we are just both confusing each other now! I have always been referencing [Job]![code] (even if you check back to the posts from Aug. 9 it shows that.)
The query we're trying to make work right now indeed involves the table JobVacancy and another query MY - JobVacancyOccup ants. The reason I am wanting to reference [Job]![code] is because not all job codes are entered in the JobVacancy table and not all job codes are assigned to an employee, so it wouldn't be in the MY - JobVacancyOccup ants query results. Therefore, I am wanting to have all job codes from the job table displaying in the end result of this query, as well as all departments and divisions associated with that code (whether it be from the job vacancy table or MY - JobVacancyOccup ants), as well as the Number of positions, and number of occupants (Our DCount expression). Once I get that to work, then I can calculate NumberofPositio ns-NumOccupants to find out the number of vacancies. If you recall (I know, it's been a long time since we've actually talked about the whole point of this query) I have a calculated textbox on a report that I am wanting to base a filter upon but had no luck, so we were trying to add that calculation into my query so that I can filter out those job codes that had the NumberofVacanci es > 0.
Maybe I've been going about this all wrong, I don't know.
Aug 13 '07 #82
puppydogbuddy
1,923 Recognized Expert Top Contributor
At least one problem will be cleared up.....The reason Job!Code is not working for you now is because you did not include it on the selection list. In order to do so, you must include table [Job] in the query grid. So your query grid will now have 3 tables that are joined in some fashion.
Aug 13 '07 #83
puppydogbuddy
1,923 Recognized Expert Top Contributor
However, if you just want to reference it in the DCount portion without putting it on the selection list, then you don't need it on the selection list, but you must reference the [Job] table (not MyVacancyOccupa nts) as the source for [ID] in the Dcount. .
Aug 13 '07 #84
mlcampeau
296 Recognized Expert Contributor
However, if you just want to reference it in the DCount portion without putting it on the selection list, then you don't need it on the selection list, but you must reference the [Job] table (not MyVacancyOccupa nts) as the source for [ID] in the Dcount. .
That won't work because the Job table only has the following fields:
Code
EEOCategoryCode
EEOSubCategoryC ode
Grade
Title
and a couple other randoms that are associated with that particular code.

I just tried making a query referencing the JobVacancy table and the job table:
Expand|Select|Wrap|Line Numbers
  1. SELECT job.Code, JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions
  2. FROM job LEFT JOIN JobVacancy ON job.Code = JobVacancy.JobCode
  3. ORDER BY job.Code;
and then did the same with the MY - JobVacancyOccup ants and job table:
Expand|Select|Wrap|Line Numbers
  1. SELECT Job.Code, [MY - JobVacancyOccupants].JobCode, [MY - JobVacancyOccupants].ID, [MY - JobVacancyOccupants].DepartmentCode, [MY - JobVacancyOccupants].DivisionCode, [MY - JobVacancyOccupants].StatusCode
  2. FROM [MY - JobVacancyOccupants] RIGHT JOIN Job ON [MY - JobVacancyOccupants].JobCode = Job.Code
  3. WHERE (((Job.Code) Is Not Null));
and then tried making a query based off of that, since those two queries produce records that include every job code in the job table:
[code=sql]SELECT MY_JobVacancyOc cupants2.Code, MY_JobVacAndJob Table.Departmen Code, MY_JobVacAndJob Table.DivisionC ode, MY_JobVacancyOc cupants2.Depart mentCode, MY_JobVacancyOc cupants2.Divisi onCode, MY_JobVacAndJob Table.NumberofP ositions, DCount("[ID]","[MY_JobVacancyOc cupants2]","[code] ='" & [MY_JobVacAndJob Table]!
Expand|Select|Wrap|Line Numbers
  1.  & "' AND [MY_JobVacancyOccupants2]![DivisionCode]='" & [MY_JobVacAndJobTable]![DivisionCode] & "'") AS NumOccupants
  2. FROM MY_JobVacancyOccupants2 INNER JOIN MY_JobVacAndJobTable ON (MY_JobVacancyOccupants2.DivisionCode = MY_JobVacAndJobTable.DivisionCode) AND (MY_JobVacancyOccupants2.DepartmentCode = MY_JobVacAndJobTable.DepartmenCode) AND (MY_JobVacancyOccupants2.Code = MY_JobVacAndJobTable.Code);
The problem is joining those two queries. I have the option of right join, left join, or inner join. The problem is that I don't want any of the information in either of those two queries excluded. The inner join leaves out those records that don't match. The left join leaves out records from MY_JobVacAndJob Table and a right join leaves out records from MY_JobVacancyOc cupants2. Is there any way to include all the records?
Aug 13 '07 #85
puppydogbuddy
1,923 Recognized Expert Top Contributor
That won't work because the Job table only has the following fields:
Code
EEOCategoryCode
EEOSubCategoryC ode
Grade
Title
and a couple other randoms that are associated with that particular code.

I just tried making a query referencing the JobVacancy table and the job table:
Expand|Select|Wrap|Line Numbers
  1. SELECT job.Code, JobVacancy.JobCode, JobVacancy.DepartmenCode, JobVacancy.DivisionCode, JobVacancy.NumberofPositions
  2. FROM job LEFT JOIN JobVacancy ON job.Code = JobVacancy.JobCode
  3. ORDER BY job.Code;
and then did the same with the MY - JobVacancyOccup ants and job table:
Expand|Select|Wrap|Line Numbers
  1. SELECT Job.Code, [MY - JobVacancyOccupants].JobCode, [MY - JobVacancyOccupants].ID, [MY - JobVacancyOccupants].DepartmentCode, [MY - JobVacancyOccupants].DivisionCode, [MY - JobVacancyOccupants].StatusCode
  2. FROM [MY - JobVacancyOccupants] RIGHT JOIN Job ON [MY - JobVacancyOccupants].JobCode = Job.Code
  3. WHERE (((Job.Code) Is Not Null));
and then tried making a query based off of that, since those two queries produce records that include every job code in the job table:
[code=sql]SELECT MY_JobVacancyOc cupants2.Code, MY_JobVacAndJob Table.Departmen Code, MY_JobVacAndJob Table.DivisionC ode, MY_JobVacancyOc cupants2.Depart mentCode, MY_JobVacancyOc cupants2.Divisi onCode, MY_JobVacAndJob Table.NumberofP ositions, DCount("[ID]","[MY_JobVacancyOc cupants2]","[code] ='" & [MY_JobVacAndJob Table]!
Expand|Select|Wrap|Line Numbers
  1.  & "' AND [MY_JobVacancyOccupants2]![DivisionCode]='" & [MY_JobVacAndJobTable]![DivisionCode] & "'") AS NumOccupants
  2. FROM MY_JobVacancyOccupants2 INNER JOIN MY_JobVacAndJobTable ON (MY_JobVacancyOccupants2.DivisionCode = MY_JobVacAndJobTable.DivisionCode) AND (MY_JobVacancyOccupants2.DepartmentCode = MY_JobVacAndJobTable.DepartmenCode) AND (MY_JobVacancyOccupants2.Code = MY_JobVacAndJobTable.Code);
The problem is joining those two queries. I have the option of right join, left join, or inner join. The problem is that I don't want any of the information in either of those two queries excluded. The inner join leaves out those records that don't match. The left join leaves out records from MY_JobVacAndJob Table and a right join leaves out records from MY_JobVacancyOc cupants2. Is there any way to include all the records?
Yes......use a union query. If you don't know how to do a union query, I will look at it tomorrow.
Aug 13 '07 #86
mlcampeau
296 Recognized Expert Contributor
Yes......use a union query. If you don't know how to do a union query, I will look at it tomorrow.
I've never used a union query before...it's getting to be the end of the day for me, but I will try to play around with it tomorrow, as well, to see what I can come up with.
Aug 13 '07 #87
mlcampeau
296 Recognized Expert Contributor
It's been a while but I'm revisiting this issue now. I have got my queries working. My main report query is the same as before and my subreport query is now:
[code=sql]SELECT Job.Code, JobVacancy.Depa rtmenCode, JobVacancy.Divi sionCode, JobVacancy.Numb erofPositions, Department.Desc , Division.Desc, IIf((DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]![code] & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'"))<0 Or (DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]![code] & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'")) Is Null,0,(DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'"))) AS TotalPositionsFilled, iif([JobVacancy.NumberofPositions]-[TotalPositionsFilled]<0,0, [JobVacancy.NumberofPositions]-[TotalPositionsFilled]) AS Vacancies
  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, JobVacancy.DepartmenCode, JobVacancy.DivisionCode;
As mentioned in a way earlier post, I have been able to filter the report to show me when the TotalVacancies on the main report is greater than 1. So a sample output would be:

Divisional Accountant: Total Positions 5, Total Occupants 4, Total Vacancies 1

And the subreport would break down the information into:

Department: BS Division TIMBS Total Positions 2, Total Occupants 2, Total Vacancies 0
Department: BS Division: FSS Total Positions 2, Total Occupants 1, Total Vacancies 1

Now, instead of showing both the TIMBS and FSS divisions, I would only want the FSS division to display since it's the only one with a vacancy.
Currently I have this code:
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
which works great for filtering out the main report. Now, as I said, I would like to filter out the subreport as well. In all my previous postings I was trying to filter based on a calculated textbox on the report. I was finally able to do the calculation in the query so now I have a control named Vacancies on the subreport. In the end, I want the subreport to only display records where Vacancies>1. As I said, I was able to filter the main report just fine, but am now not sure exactly how to incorporate the subreport information in this. Any help would be appreciated!! Thanks!
Sep 6 '07 #88
puppydogbuddy
1,923 Recognized Expert Top Contributor
It's been a while but I'm revisiting this issue now. I have got my queries working. My main report query is the same as before and my subreport query is now:
[code=sql]SELECT Job.Code, JobVacancy.Depa rtmenCode, JobVacancy.Divi sionCode, JobVacancy.Numb erofPositions, Department.Desc , Division.Desc, IIf((DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]![code] & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'"))<0 Or (DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]![code] & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'")) Is Null,0,(DSum("[FTE]","[MY_JobCodeFTE]","[JobCode] = '" & [Job]!
Expand|Select|Wrap|Line Numbers
  1.  & "' AND [DivisionCode]= '" & [JobVacancy].[DivisionCode] & "'"))) AS TotalPositionsFilled, iif([JobVacancy.NumberofPositions]-[TotalPositionsFilled]<0,0, [JobVacancy.NumberofPositions]-[TotalPositionsFilled]) AS Vacancies
  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, JobVacancy.DepartmenCode, JobVacancy.DivisionCode;
As mentioned in a way earlier post, I have been able to filter the report to show me when the TotalVacancies on the main report is greater than 1. So a sample output would be:

Divisional Accountant: Total Positions 5, Total Occupants 4, Total Vacancies 1

And the subreport would break down the information into:

Department: BS Division TIMBS Total Positions 2, Total Occupants 2, Total Vacancies 0
Department: BS Division: FSS Total Positions 2, Total Occupants 1, Total Vacancies 1

Now, instead of showing both the TIMBS and FSS divisions, I would only want the FSS division to display since it's the only one with a vacancy.
Currently I have this code:
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
which works great for filtering out the main report. Now, as I said, I would like to filter out the subreport as well. In all my previous postings I was trying to filter based on a calculated textbox on the report. I was finally able to do the calculation in the query so now I have a control named Vacancies on the subreport. In the end, I want the subreport to only display records where Vacancies>1. As I said, I was able to filter the main report just fine, but am now not sure exactly how to incorporate the subreport information in this. Any help would be appreciated!! Thanks!
Hi MLCampeau,

I wondered what happened! In regards to your unresolved problem with the subreport filter:
1. Since you are using 2 completly different queries for your main report and subreport, I would first try using a filter statement in the open or activate event of the subreport as follows and see what happens:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Report_Open          'this is the subreport's open event
  2.  
  3. Dim strFilter As String
  4.  
  5. strFilter =  "DivisionCode = FSS"      
  6. Me.Filter =  strFilter
  7. Me.FilterOn = True
  8.  
  9. End Sub
_______________ _______________ _____________

Alternatively, if you want to try calling the subreport filter from the main report, you could try this:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Report_Open(Cancel As Integer)     'the main report
  2. Dim strWhere As String
  3.  
  4. strWhere = "[TotalVacancies]>0"
  5. Me!JobVacanciesOnlySR.Report.Filter = "DivisionCode = FSS"
  6. Me!JobVacanciesOnlySR.Report.FilterOn = True 
  7.  
  8. DoCmd.OpenReport "JobVacanciesOnly", acViewPreview, , strWhere
  9. End Sub
Sep 7 '07 #89
mlcampeau
296 Recognized Expert Contributor
Expand|Select|Wrap|Line Numbers
  1. Private Sub Report_Open(Cancel As Integer)     'the main report
  2. Dim strWhere As String
  3.  
  4. strWhere = "[TotalVacancies]>0"
  5. Me!JobVacanciesOnlySR.Report.Filter = "DivisionCode = FSS"
  6. Me!JobVacanciesOnlySR.Report.FilterOn = True 
  7.  
  8. DoCmd.OpenReport "JobVacanciesOnly", acViewPreview, , strWhere
  9. End Sub
With the above code, I get Run-time error 2455; You entered an expression that has an invalid reference to the property Form/Report. I ran the debug and I got the error at this line:
Me!JobVacancies OnlySR.Report.F ilter = "DivisionCo de = FSS"
Is the syntax incorrect??

Expand|Select|Wrap|Line Numbers
  1. Private Sub Report_Open          'this is the subreport's open event
  2.  
  3. Dim strFilter As String
  4.  
  5. strFilter =  "DivisionCode = FSS"      
  6. Me.Filter =  strFilter
  7. Me.FilterOn = True
  8.  
  9. End Sub
With that code, the report runs, but does not filter. I should just clarify that I don't want my filter to show DivisionCode=FS S. It was just in the example that I provided that that's how it should've filtered. I want the filter to be Vacancies>0. I tried replacing it and it doesn't make a difference with the problems that came up.
Sep 7 '07 #90

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

Similar topics

0
6474
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
6285
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
17668
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
2739
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
4402
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
5544
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
9401
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...
0
9257
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
9176
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,...
1
6702
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
6011
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
4519
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...
0
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2635
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
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.