How to update 'title in jQuery UI Dialog? [duplicate] - title

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
jQuery ui dialog change title after load-callback
I like to change the title from an UI Dialog after I have submitted a form in this UI Dialog. So in the callback-function after load I should suggest, but I've tried and googled without result.

The option method will change a dialog's properties after the dialog is created.
Therefore, you can write
$(whatever).dialog('option', 'title', 'New Title');

you can also use this, before open it
$("#YourContainer").data('title.dialog', ' I am the new title');

Related

can't get vba to show code for all buttons [duplicate]

This question already has an answer here:
How to view code for all subs in a module at the same time
(1 answer)
Closed 6 months ago.
Working in VBA in Access
In one of my databases "General" in the drop down shows the code for all buttons.
For some reason this database does not, and I have to manually select each button... ie RunFDE, RunQP1
Not sure how to fix it.
Want to see code for all buttons at the same time.
Figured it out.
Bottom left has Procedure View and Full Module View.
Full Module View is what I want.

Accessing Excel's Custom Footer dialog box w/VBA [duplicate]

This question already has an answer here:
Replace text on header and footer of Excel file
(1 answer)
Closed 5 years ago.
Is there a way to access Excel's built-in custom footer dialog box with VBA? I'd like to access the actual dialog box; I know how to directly modify the footer via ActiveSheet.PageSetup.
I can open the Page Setup box via Application.Dialogs(xlDialogPageSetup).Show but I'm not able to get to the Header/Footer tab, then Custom Footer.
Here's what I've tried:
Application.Dialogs(xlDialogPageSetup).Show
Application.SendKeys "h" 'Go to the Header/Footer tab
Application.SendKeys "{TAB}{TAB}{TAB}{ENTER}", True 'Go to Custom Footer
Thank you.
EDIT:
Thanks for your responses thus far, and my apologies for not being clearer.
As noted above, I understand how to use ActiveSheet.PageSetupto modify the Left/Center/Right footer fields; however, I'd like to directly access the Custom Footer dialog box so that non-technical colleagues can easily modify these fields, in a familiar manner, as opposed to having them look through the VBA and changing the existing text strings and/or codes.
You don't have to call any dialogbox. You can access header/footer directly:
ActiveSheet.PageSetup.CenterHeader = "&D &B&ITime:&I&B&T"
More at MSDN - Formatting and VBA Codes for Headers and Footers
To be more precise it would be
ActiveSheet.PageSetup.CenterFooter = "&D &B&ITime:&I&B&T"
for the footer.
There are three points you can access, LeftFooter, CenterFooter, and RightFooter. It will be the same for the header.
This question has already been asked and answered here.

How to use savefiledialog in vb.net -Please help me [duplicate]

This question already has an answer here:
How do I use savefiledialog in vb.net
(1 answer)
Closed 9 years ago.
I have a program called TextEditPro and I just started it, I'm running into a problem.
When I had the code for clicking Save As... I don't know how to use the savefiledialog so when you click Save As it will pop up!
Any help?
Thanks!
Look at the code in http://social.msdn.microsoft.com/forums/en-US/vblanguage/thread/ec63bda3-cb9f-438f-8d3d-43eb858299aa. I hope it helps. The code works.

How to programmatically copy/paste in windows phone? [duplicate]

This question already has an answer here:
Closed 10 years ago.
Possible Duplicate:
Can the new WP7 cut and paste functionality be used programatically?
Is there a way to programmatically copy/paste text in windows phone. I want the user to click on a button that should automatically copy some text to the clipboard. The text resides on a TextBlock control (which may be hidden). The only workaround that I have thought of is to pop a dialog with the text filled in in a TextBlock (which natively supports copy paste).
Thoughts?
To set text : Clipboard.SetText("foo-bar")
To check if clipboard contains text : Clipboard.ContainsText("foo-bar")
No method to to get text Clipboard.GetText() results in Security Exception

Show form without losing focus [duplicate]

This question already has answers here:
Show a Form without stealing focus?
(19 answers)
Closed 6 years ago.
I've created a small form that acts like the office notifications (fades in\out above the notification icon tray)
I'm having problems showing this form, I want to display it without the focus being taken from my main application (or any other form), I've managed to get the attached code doing roughly this, (using Me.Activate to take back focus) But this isn't great - focus switches for an instant plus I want to show the form from various areas in my application...
Dim frm2 As New frmNotification()
frm2.TopMost = True
frm2.Show()
Me.Activate()
Any Ideas?
A similar question has been answered here.
Show a Form without stealing focus?
The code is in c#, let me know if you need help in converting it to vb.net. Sorry for the delay.