How come if I select a date on the Calendar control on the startup form of the attached mdb, the date selected is not shown right away on the Cdata text box on the same form but I have to click on the Cdata text box to make it show it, since the Calendar control is the text box Control Source?
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Calendar Control as a Text Box Control Source (2000)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Calendar Control as a Text Box Control Source (2000)
- This topic has 94 replies, 4 voices, and was last updated 20 years, 11 months ago.
AuthorTopicWSgrovelli
AskWoody LoungerMay 4, 2004 at 9:39 pm #404507Viewing 1 reply threadAuthorReplies-
WSHansV
AskWoody LoungerMay 4, 2004 at 9:55 pm #823375You don’t have to click in CData specifically; it will be updated as soon as you leave the calendar control. Clicking around in the calendar control is much like typing in a text box: it won’t update other controls. Only when you leave the text box in which you typed, or the calendar in which you clicked on dates, will other controls referring to it be updated.
-
WSgrovelli
AskWoody LoungerMay 5, 2004 at 6:46 am #823602But then…
How come once I click on a date on the acxCalBegin control in the frmContracts form in the attached mdb(please open it with the shift key depressed), the date in the txtBeginningDate text box on the same form is automatically shown without the need to leave the calendar control? -
WSHansV
AskWoody LoungerMay 5, 2004 at 6:51 am #823604The After Update event of both calendar controls on the form in this database explicitly set the focus to the corresponding text box. As noted before, controls referring to the calendar control will be updated when the calendar loses focus. The effect here is that the text box is updated as soon as you click on a date, but you have to reactivate the calendar to be able to click another date.
-
WSHansV
AskWoody LoungerMay 5, 2004 at 6:51 am #823605The After Update event of both calendar controls on the form in this database explicitly set the focus to the corresponding text box. As noted before, controls referring to the calendar control will be updated when the calendar loses focus. The effect here is that the text box is updated as soon as you click on a date, but you have to reactivate the calendar to be able to click another date.
-
WSHansV
AskWoody LoungerMay 5, 2004 at 7:01 am #823610If you want the text box to update immediately, do it like this:
– Clear the Control Source of the text box (yes, I mean it!)
– Create an On Click event procedure for the calendar (the On Click event is not listed in the Properties window, but it does exist):Private Sub CGior_Click()
Me.CData = Me.CGior.Value
End Sub -
WSgrovelli
AskWoody LoungerMay 5, 2004 at 8:05 am #823626Ciao Hans, thank you, perfect as usual.
How would you go about calculating the difference between the value of the Lettur field in the MG1Dezx subform for the date selected in the calendar control and the same value for the day before and putting the result in the Energia text box in the same subform? -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 7, 2004 at 5:51 am #823650Let’s suppose that, on the startup form, I select the May 17, 2003 date on the calendar, then a value(9659.33) is displayed on the LETTUR textbox in the subform.
How can I display, in the Energia text box in the same subform, the value which is the difference between 9659.33 and the value for the day before(9655.39)? So, generalizing, how would you go about calculating the difference between the value of the Lettur field in the MG1Dezx subform for the date selected in the calendar control and the same value for the day before and putting the result in the Energia text box in the same subform? -
WSHansV
AskWoody LoungerMay 5, 2004 at 10:45 am #823670Hi Giorgio,
Set the Control Source of Energia to
=[Lettur]-DLookUp("Lettur","G1Dez","Giorno=#" & Format([Giorno]-1,"mm/dd/yyyy") & "#")
This will display a blank on the first date (1/1/2003) since there are no data for the previous day, and it will display #Error if you select a date outside the available range (for example in 2002 or 2004)
-
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody LoungerMay 7, 2004 at 7:41 am #824469Edited by HansV to correct typo: Giorno instead of CGiorno.
If you use the method from post 369675, the value of Giorno in the subform will be filled in automatically with the date from CData. But you don’t have a text box bound to Giorno in the subform, so you don’t see it.
-
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSFrancois
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSFrancois
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 12, 2004 at 4:45 pm #826404Let me take this opportunity…(he he he he)
…to ask you how I can get rid of the error messages that appear on startup in the PMEDIA, REND and COEFF text boxes in any of the subforms.(please see attachment)
I know this is due to the lack of any record corresponding to the date selected on the calendar because the calendar is set to show today’s date when the form opens. -
WSFrancois
AskWoody LoungerMay 12, 2004 at 5:08 pm #826414If you change the control source of the energia textbox from :
=IIf(IsNull([lettur]),””,([Lettur]-DLookUp(“Lettur”,”G1Dez”,”Giorno=#” & Format([Giorno]-1,”mm/dd/yyyy”) & “#”))*DLookUp(“K_CONT”,”DezG1K”))
to :
=IIf(IsNull([lettur]),,([Lettur]-DLookUp(“Lettur”,”G1Dez”,”Giorno=#” & Format([Giorno]-1,”mm/dd/yyyy”) & “#”))*DLookUp(“K_CONT”,”DezG1K”))
you get Energia ? in the textboxes.
Is it that what you want ?
This time I change the semicolons in commas -
WSgrovelli
AskWoody Lounger -
WSFrancois
AskWoody LoungerMay 12, 2004 at 5:57 pm #826431To do this, you have to replace the multi IIF statements from the textbox control source by a function you write yourself.
In the attached file, I have done it for Potenza Media in the subform G1Dez.
I replace the controlsource by =PotenzaMedia() and in the code of the form I add a PotenzaMedia() function.
In this function I add a condition to check the len of Enregia and if this len is 0 then I set PotenzaMedia Function to “”.
Do the same for the other 2 textboxes in the form and for the 3 textboxes in the 2 other forms.
If you need help post again, but look at my code and try it yourself first. -
WSgrovelli
AskWoody LoungerMay 15, 2004 at 12:45 pm #827683Thank you so much Francois,
I’ve used your idea by creating those functions in a module (Module1, please see attachment) and they all work well except for the function you see below which I set as control source for either of the three subforms’ OREF text box.Function Fermi(table As String, gio, marc, lett)
Dim a
a = 24 – DLookup(“ora_let”, “& table &”, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
Fermi = a – marc
If Fermi < 0 Then MsgBox "Attenzione! Ore di marcia non possono essere superiori alle ore di lettura."
End FunctionWhich gives me the error message, "The Microsoft Jet database engine cannot find the input table or query '=fermi(g1dez)'. Make sure it exists and that its name is spelled correctly."
What's wrong? -
WSpatt
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSpatt
AskWoody LoungerMay 15, 2004 at 9:39 pm #827942When you define a source of your function, the first argument is a string value, therefore I would suggest you change it to:
=fermo(“g3dez”,[giorno],[ore_marc],[ora_let])
Notice the table name in quotes.
Also you will need to change a line in your function to delete the quotes around the table name, so change the line from:
a = 24 – DLookup(“ora_let”, “& table &”, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
to:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
-
WSgrovelli
AskWoody LoungerMay 15, 2004 at 9:51 pm #827946Thanks Pat,
I’ve done everything you said and now when I open the mdb file(please see attachment) I get the message: “Run-time error ‘3075’:
Syntax error in date in query expression ‘Giorno=#’.”
And the VBA code stops at this line in the FERMO function:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett -
WSpatt
AskWoody LoungerMay 15, 2004 at 10:13 pm #827954I think you will find that the 3 other arguments are Null when you first call this function, I have made it work by:
Function Fermo(table As String, gio, marc, lett)
Dim a
If IsNull(gio) Or IsNull(marc) Or IsNull(lett) Then
Fermo = 0
Else
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
Fermo = a – marc
If Fermo < 0 Then MsgBox "Attenzione! Ore di marcia non possono essere superiori alle ore di lettura."
End If
End Function -
WSgrovelli
AskWoody LoungerMay 15, 2004 at 10:35 pm #827964Thanks again Pat,
Problem is if you select a date on the calendar(say, e.g., October 10, 2003) which corresponds to a record in either subform record source, I still get the message: “Run-time error ‘3075’:
Syntax error in date in query expression ‘Giorno=#’.”
And the VBA code stops at this line in the FERMO function:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett -
WSpatt
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 18, 2004 at 2:46 pm #828903Still using the same concept I’ve created yet another function(TipiFermo in the Module1 module, please see attachment) for the CODF combo box in the subform but this time I cannot call it from the CODF combobox’s control source box in the property sheet because it’s already pointing to the CODF field in the FERMI table so I’ve tried calling the function from the After Update event of the CODF combo box but it doesn’t work. What that function should do is to alert the user that if the value of the OREF text box is greater than zero, the user should pick a value in the CODF combo box drop-down list.
-
WSHansV
AskWoody LoungerMay 18, 2004 at 8:54 pm #829090The controls in the previous posts were calculated controls; the CODF combo box is different, it is bound to a field. Since you want to impose a condition based on two fields, I think you should add code to the Before Update event of the subform, and set Cancel = True if oref > 0 and codf is null:
Private Sub Form_BeforeUpdate(Cancel As Integer)
…
‘ existing code
…
If Me.OREF > 0 And IsNull(Me.CODF) Then
MsgBox “Attenzione. Please select an item from the dropdown list.”, vbExclamation
Me.CODF.SetFocus
Cancel = True
End If
End Sub -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 19, 2004 at 12:17 pm #829308Hans,
The ENERGIA text box in the subform of the attached mdb uses the Dlookup function to find the previous-day value for the LETTUR text box so I thought of using the same function to set the default value for the LETTUR text box on the same subform(see attachment) but as soon as I select a date on the calendar I get a type mismatch error. -
WSHansV
AskWoody LoungerMay 19, 2004 at 1:03 pm #829340There is some kind of circular calculation going on if you are on a new record, probably because PMedia etc. are based on Energia, Energia is based on Lettur, and Lettur doesn’t have a value yet. I think it’s getting too complicated to solve easily.
I will lock this thread now, for it has drifted away from the original question and has become very long. Please feel free to start a new thread.
-
WSHansV
AskWoody LoungerMay 19, 2004 at 1:03 pm #829341There is some kind of circular calculation going on if you are on a new record, probably because PMedia etc. are based on Energia, Energia is based on Lettur, and Lettur doesn’t have a value yet. I think it’s getting too complicated to solve easily.
I will lock this thread now, for it has drifted away from the original question and has become very long. Please feel free to start a new thread.
-
WSgrovelli
AskWoody LoungerMay 19, 2004 at 12:17 pm #829309Hans,
The ENERGIA text box in the subform of the attached mdb uses the Dlookup function to find the previous-day value for the LETTUR text box so I thought of using the same function to set the default value for the LETTUR text box on the same subform(see attachment) but as soon as I select a date on the calendar I get a type mismatch error. -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody LoungerMay 18, 2004 at 8:54 pm #829091The controls in the previous posts were calculated controls; the CODF combo box is different, it is bound to a field. Since you want to impose a condition based on two fields, I think you should add code to the Before Update event of the subform, and set Cancel = True if oref > 0 and codf is null:
Private Sub Form_BeforeUpdate(Cancel As Integer)
…
‘ existing code
…
If Me.OREF > 0 And IsNull(Me.CODF) Then
MsgBox “Attenzione. Please select an item from the dropdown list.”, vbExclamation
Me.CODF.SetFocus
Cancel = True
End If
End Sub -
WSgrovelli
AskWoody LoungerMay 18, 2004 at 2:46 pm #828904Still using the same concept I’ve created yet another function(TipiFermo in the Module1 module, please see attachment) for the CODF combo box in the subform but this time I cannot call it from the CODF combobox’s control source box in the property sheet because it’s already pointing to the CODF field in the FERMI table so I’ve tried calling the function from the After Update event of the CODF combo box but it doesn’t work. What that function should do is to alert the user that if the value of the OREF text box is greater than zero, the user should pick a value in the CODF combo box drop-down list.
-
WSpatt
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 15, 2004 at 10:35 pm #827965Thanks again Pat,
Problem is if you select a date on the calendar(say, e.g., October 10, 2003) which corresponds to a record in either subform record source, I still get the message: “Run-time error ‘3075’:
Syntax error in date in query expression ‘Giorno=#’.”
And the VBA code stops at this line in the FERMO function:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett -
WSpatt
AskWoody LoungerMay 15, 2004 at 10:13 pm #827955I think you will find that the 3 other arguments are Null when you first call this function, I have made it work by:
Function Fermo(table As String, gio, marc, lett)
Dim a
If IsNull(gio) Or IsNull(marc) Or IsNull(lett) Then
Fermo = 0
Else
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
Fermo = a – marc
If Fermo < 0 Then MsgBox "Attenzione! Ore di marcia non possono essere superiori alle ore di lettura."
End If
End Function -
WSgrovelli
AskWoody LoungerMay 15, 2004 at 9:51 pm #827947Thanks Pat,
I’ve done everything you said and now when I open the mdb file(please see attachment) I get the message: “Run-time error ‘3075’:
Syntax error in date in query expression ‘Giorno=#’.”
And the VBA code stops at this line in the FERMO function:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett -
WSpatt
AskWoody LoungerMay 15, 2004 at 9:39 pm #827943When you define a source of your function, the first argument is a string value, therefore I would suggest you change it to:
=fermo(“g3dez”,[giorno],[ore_marc],[ora_let])
Notice the table name in quotes.
Also you will need to change a line in your function to delete the quotes around the table name, so change the line from:
a = 24 – DLookup(“ora_let”, “& table &”, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
to:
a = 24 – DLookup(“ora_let”, table, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
-
WSgrovelli
AskWoody Lounger -
WSpatt
AskWoody Lounger -
WSgrovelli
AskWoody LoungerMay 15, 2004 at 12:45 pm #827684Thank you so much Francois,
I’ve used your idea by creating those functions in a module (Module1, please see attachment) and they all work well except for the function you see below which I set as control source for either of the three subforms’ OREF text box.Function Fermi(table As String, gio, marc, lett)
Dim a
a = 24 – DLookup(“ora_let”, “& table &”, “Giorno=#” & Format(gio – 1, “mm/dd/yyyy”)) + lett
Fermi = a – marc
If Fermi < 0 Then MsgBox "Attenzione! Ore di marcia non possono essere superiori alle ore di lettura."
End FunctionWhich gives me the error message, "The Microsoft Jet database engine cannot find the input table or query '=fermi(g1dez)'. Make sure it exists and that its name is spelled correctly."
What's wrong? -
WSFrancois
AskWoody LoungerMay 12, 2004 at 5:57 pm #826432To do this, you have to replace the multi IIF statements from the textbox control source by a function you write yourself.
In the attached file, I have done it for Potenza Media in the subform G1Dez.
I replace the controlsource by =PotenzaMedia() and in the code of the form I add a PotenzaMedia() function.
In this function I add a condition to check the len of Enregia and if this len is 0 then I set PotenzaMedia Function to “”.
Do the same for the other 2 textboxes in the form and for the 3 textboxes in the 2 other forms.
If you need help post again, but look at my code and try it yourself first. -
WSgrovelli
AskWoody Lounger -
WSFrancois
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSFrancois
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody LoungerMay 7, 2004 at 7:41 am #824470Edited by HansV to correct typo: Giorno instead of CGiorno.
If you use the method from post 369675, the value of Giorno in the subform will be filled in automatically with the date from CData. But you don’t have a text box bound to Giorno in the subform, so you don’t see it.
-
WSHansV
AskWoody LoungerMay 5, 2004 at 10:45 am #823671Hi Giorgio,
Set the Control Source of Energia to
=[Lettur]-DLookUp("Lettur","G1Dez","Giorno=#" & Format([Giorno]-1,"mm/dd/yyyy") & "#")
This will display a blank on the first date (1/1/2003) since there are no data for the previous day, and it will display #Error if you select a date outside the available range (for example in 2002 or 2004)
-
WSgrovelli
AskWoody LoungerMay 7, 2004 at 5:51 am #823651Let’s suppose that, on the startup form, I select the May 17, 2003 date on the calendar, then a value(9659.33) is displayed on the LETTUR textbox in the subform.
How can I display, in the Energia text box in the same subform, the value which is the difference between 9659.33 and the value for the day before(9655.39)? So, generalizing, how would you go about calculating the difference between the value of the Lettur field in the MG1Dezx subform for the date selected in the calendar control and the same value for the day before and putting the result in the Energia text box in the same subform? -
WSHansV
AskWoody Lounger
-
-
-
WSgrovelli
AskWoody LoungerMay 5, 2004 at 8:05 am #823627Ciao Hans, thank you, perfect as usual.
How would you go about calculating the difference between the value of the Lettur field in the MG1Dezx subform for the date selected in the calendar control and the same value for the day before and putting the result in the Energia text box in the same subform? -
WSgrovelli
AskWoody LoungerMay 5, 2004 at 8:20 am #823630Actually Hans, on my pc only the option of setting the focus to the corresponding text box through the After Update event of the calendar control works; if I use
Private Sub CGior_Click()
Me.CData = Me.CGior.Value
End SubI get the attached error message when I select a day on the calendar.
-
WSHansV
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSgrovelli
AskWoody Lounger -
WSHansV
AskWoody Lounger
-
-
-
WSgrovelli
AskWoody LoungerMay 5, 2004 at 8:20 am #823631Actually Hans, on my pc only the option of setting the focus to the corresponding text box through the After Update event of the calendar control works; if I use
Private Sub CGior_Click()
Me.CData = Me.CGior.Value
End SubI get the attached error message when I select a day on the calendar.
-
WSHansV
AskWoody LoungerMay 5, 2004 at 7:01 am #823611If you want the text box to update immediately, do it like this:
– Clear the Control Source of the text box (yes, I mean it!)
– Create an On Click event procedure for the calendar (the On Click event is not listed in the Properties window, but it does exist):Private Sub CGior_Click()
Me.CData = Me.CGior.Value
End SubWSgrovelli
AskWoody LoungerMay 5, 2004 at 6:46 am #823603But then…
How come once I click on a date on the acxCalBegin control in the frmContracts form in the attached mdb(please open it with the shift key depressed), the date in the txtBeginningDate text box on the same form is automatically shown without the need to leave the calendar control?WSHansV
AskWoody LoungerMay 4, 2004 at 9:55 pm #823376You don’t have to click in CData specifically; it will be updated as soon as you leave the calendar control. Clicking around in the calendar control is much like typing in a text box: it won’t update other controls. Only when you leave the text box in which you typed, or the calendar in which you clicked on dates, will other controls referring to it be updated.
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Minecraft (Awaiting moderation)
by
Bogstasia
16 minutes ago -
AugLoop.All (TEST Augmentation Loop MSIT) (Awaiting moderation)
by
LarryK
1 hour, 14 minutes ago -
AugLoop.All (TEST Augmentation Loop MSIT) (Awaiting moderation)
by
LarryK
1 hour, 15 minutes ago -
Boot Sequence for Dell Optiplex 7070 Tower
by
Serge Carniol
1 hour, 3 minutes ago -
OTT Upgrade Windows 11 to 24H2 on Unsupported Hardware
by
bbearren
4 hours, 36 minutes ago -
Inetpub can be tricked
by
Susan Bradley
5 hours, 55 minutes ago -
How merge Outlook 2016 .pst file w/into newly created Outlook 2024 install .pst?
by
Tex265
2 hours, 41 minutes ago -
FBI 2024 Internet Crime Report
by
Alex5723
8 hours, 25 minutes ago -
Perplexity CEO says its browser will track everything users do online
by
Alex5723
5 hours, 50 minutes ago -
Login issues with Windows Hello
by
CWBillow
19 hours, 31 minutes ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
7 hours, 25 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
1 day, 7 hours ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
1 day, 7 hours ago -
Google AI is now hallucinating idioms
by
Alex5723
1 day, 7 hours ago -
april update
by
69800
9 hours, 52 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
1 day, 8 hours ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
1 day, 8 hours ago -
WuMgr not loading?
by
LHiggins
4 hours, 32 minutes ago -
Word crashes when accessing Help
by
CWBillow
12 hours, 53 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
1 day, 8 hours ago -
Blank Inetpub folder
by
Susan Bradley
1 day, 5 hours ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
1 day, 18 hours ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
1 day, 5 hours ago -
Wait command?
by
CWBillow
1 day, 12 hours ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
2 days, 1 hour ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
2 days, 8 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
2 days, 17 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
2 days, 18 hours ago -
How to use Skype after May?
by
Joann
1 day, 2 hours ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
2 days, 12 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.