form
16 TopicsBlocking requests sent by non-business emails from Microsoft Booking
Basically what I'm trying to accomplish is to block requests sent by emails with generic domains such as gmail.com or yahoo.com while still allowing business emails such as @your-company.com. Is there a way to do that?47Views0likes1CommentSharePoint - Event Registration
Good morning everyone. I'm just starting with SharePoint at work. I was excited first Disappointed then realized that I was just ignorant 🙂 Now, I'm trying to use the Event Webpart and allow participant to register. I found a similar question answered by RobElliott here but I think it's already too advanced for me right now. I understand that the event links to a form, that this form once submitted will interact with a list and from the result of this interaction, will send a positive/negative message to the participant. Could someone guide me on how exactly to do that ?2.2KViews0likes0CommentsWebinar registration form for people in your org: why firstname, lastname, email mandatory?
Hello dear community, I don't get why First name, Last name and Email are mandatory fields when creating a webinar for people in my org. From my unerstanding we already have the info and forcing them to double-encode their contact info is a waste of time. I would just want them to opt-in the webinar and maybe provide a glimpse on their expectation, but no dumb double encoding. Or at least we should have the information pre-filled... Or maybe am I missing something? Thanks!631Views0likes1CommentNew Item Form View
While I was trying to edit the columns and information on a list, I must have clicked on something, but now I am not getting the same format whenever I try to "add a new item" on the list. It opens on sharepoint vice a pop-up window. Does anybody know how to revert back to the original form format? Below are screenshots of how it used to look (top) and how it is now (bottom). I tried advanced settings and switching from new and classic view already and it stills look like the bottom picture. Thank you!!2.4KViews0likes3CommentsOutlook template with date
Hi everyone, I'm trying to set up an Outlook template that includes an automatic date (prior date from today) within the text. For example instead of saying ''Please find attached the report from last Saturday'' It would calculate automatically what was the last saturday from today's date ''Please find attached the report from Saturday [x]'' I found that in your template you can 1. Insert/ Date and time/ Update automatically 2. Right click on your date/ Toggle Field Codes That way it displays the {DATE} field. It gives you the option to change the formatting beyond the limited choices in the dialog box. But I can't figure the formula from there... Any Idea how ? and what would be the formula ? Any Alternative ?3.6KViews0likes0CommentsNew Webinar Management Experience not yet available in Public Preview
Hi All In this Tech Community post, it was indicated that the new Teams Webinar management experience will be available on public preview from the beginning of August. It's already end of September, and I still don't have it in my tenants. I have a need for the new features for a project. I am already subscribed to the public preview for a very long time. Please advise how I can get the new features on public preview in my tenant(s)? I currently run Teams Version 1.5.00.25719 on Windows 10 64 bit and last updated on September 19, 2022.Instantiating a class inherited from Forms
I created a user input GUI PS script based on the example in the MS doc https://docs.microsoft.com/en-us/powershell/scripting/samples/creating-a-custom-input-box?view=powershell-7.2, which worked fine. I then created a class that inherits from Forms, based on the same setup / config in a module. My issue is that when I instantiate my custom user input class what is displayed appears to be the base Forms class without any of the components I configured. If I include the $forms.showDialog inside the class constructor, my class displays correctly. My goals is to end up with a set of modularized PS scripts where a primary PS script instantiates the user input class, and runs the required logic from the primary, calling other classes / scripts as needed. I greatly appreciate any guidance that points me in the right direction. User input class, created in moduel (psm1) using namespace System.Windows.Forms using namespace System.Drawing [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") Class InputWindow:Form{ #InputWindow() { $form = [Form]::new() $form.Size = [Size]::new(400, 415) $form.MaximizeBox = $false $form.StartPosition = "CenterScreen" $form.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::FixedSingle # prevents screen sizing $form.Topmost = $true $form.text = "Profile Removal" #Label $toolStrpLabel = [System.Windows.Forms.ToolStripStatusLabel]::new() $toolStrpLabel.Size = [Size]::new(10,12) $toolStrpLabel.text ="Current Status" #StatusStrip $statusStrip = [System.Windows.Forms.StatusStrip]::new() $statusStrip.Size = [System.Drawing.size]::new(10, 12) $statusStrip.Dock = [System.Windows.Forms.DockStyle]::Bottom $statusStrip.SizingGrip = $false $statusStrip.Text = "Test" $statusStrip.Items.AddRange($toolStrpLabel) $form.Controls.Add($statusStrip) #Buttons $cancelButton = [System.Windows.Forms.Button]::new() $cancelButton.Margin = 5 $cancelButton.Anchor = 'right,bottom' $cancelButton.Location = [System.Drawing.Point]::new(190, 300 ) $cancelButton.Size = [System.Drawing.Size]::new(75,23) $cancelButton.Text = '&Cancel' $cancelButton.DialogResult = [System.Windows.Forms.DialogResult]::Cancel $form.CancelButton = $cancelButton $form.AcceptButton = $cancelButton #Sets the default active button $form.Controls.Add($cancelButton) $okButton = [System.Windows.Forms.Button]::new() $okButton.Margin = 5 $okButton.Anchor = 'right, bottom' $okButton.Location = [System.Drawing.Point]::new(275,300) $okButton.Size = [System.Drawing.Size]::new(75,23) $okButton.Text = '&OK' $okButton.DialogResult = [System.Windows.Forms.DialogResult]::OK $form.Controls.Add($okButton) #Message Banner $msgBanner = [System.Windows.Forms.Label]::new() $msgBanner.Location = [System.Drawing.Point]::new(10,20) $msgBanner.Size = [System.Drawing.Size]::new(300,20) $msgBanner.Text = 'Enter your MID information below:' $form.Controls.Add($msgBanner) #MID Label $midLabel = [System.Windows.Forms.Label]::new() $midLabel.Location = [System.Drawing.Point]::new(50,50) $midLabel.Size = [System.Drawing.Size]::new(35,15) $midLabel.Text = 'MID:' $form.Controls.Add($midLabel) #MID input box $midBox = [System.Windows.Forms.TextBox]::new() $midBox.Location = [System.Drawing.Point]::new(85,46) $midBox.Size = [System.Drawing.Size]::new(70,20) $midBox.Enabled = $true $midBox.TextAlign = "Left" $form.Controls.Add($midBox) #Password label $pswdLabel = [System.Windows.Forms.Label]::new() $pswdLabel.Location = [System.Drawing.Point]::new(190,50) $pswdLabel.Size = [System.Drawing.Size]::new(72,15) $pswdLabel.Text = 'Password:' $form.Controls.Add($pswdLabel) #Password input box $pswdBox = [System.Windows.Forms.TextBox]::new() $pswdBox.Location = [System.Drawing.Point]::new(260,46) $pswdBox.Size = [System.Drawing.Size]::new(70,20) $pswdBox.Enabled = $true $pswdBox.TextAlign = "Left" $form.Controls.Add($pswdBox) $form.Add_Shown({$midBox.Select()}) } # END of Constructor # } #END of Class InputWindow Function Get-InputWindow () { [InputWindow]::new() } Export-ModuleMember -Function Get-InputWindow1.4KViews0likes1CommentACCESS Form does not show all records when Subform is present
Hi All! I'm suffering a strange quirk with my Access forms/subforms. Whenever I set up a form / subform combo the form does not show all the records it should be showing. I have 3 tables. Table_1 holds the company data. When I select one ORGANIZATION (I have 7 right now) from the yellow dropdown ACCESS should populate the CONTACTS I have in said ORG and show them as a continuous subform (CONTACTOS). I get the list should nor be longer than whatever fits above the next subform (maybe 20+ at the moment?). But it's only showing 2 (out of a possible 33). The lower subform shows all Interactions (call, visit, email, etc.) I had with that person (presently 1) that I selected in the CONTACTOS subform.. Notice there are 33 records in CONCTACTOS, but ACCESS is only showing 2. If I scroll down I can see all 33 just not at the same time. If I remove the last subform or push the window up or down or pull the first form's background up or down the number of records shown grows or shrinks. Any ideas as to why it happens and how I can fix it? I'm sure I'm missing some parameter somewhere in properties but I haven't found it yet. Can I force ACCESS to show a certain number of records? Please help! Miguel2.6KViews0likes1Comment