Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: onechuck
  • Content: Threads
  • Order by date
  1. onechuck

    How to bind Calendar to SqlDataSource?

    Is there a way to bind a Calendar to a SqlDataSource? I like to create a calendar where if there is an event scheduled it will show up as highlighted on the calendar. Help is much appreciated.
  2. onechuck

    How to access method in a different master file?

    I have a method in the main.master file that I want to access from the subMain.master file. How do I do that?
  3. onechuck

    How to run a SQL statement?

    In VB.NET 2005 and I'm developing a website. First, is there a way to import a .sql file into the database using VB.NET? If that is not possible, is there a way to execute Create and Insert SQL statement? I right click on the Tables and choose New Query and then put in my Create query and try to...
  4. onechuck

    How to access multiple sitemap?

    I'm using Visual Web Developer Express Edition 2005. In my web.config I have this. <siteMap defaultProvider="XmlSiteMapProvider"> <providers> <add name="MenuSiteMap" type="System.Web.XmlSiteMapProvider" siteMapFile="web.sitemap" /> <add name="SubMenuSiteMap"...
  5. onechuck

    Error sending email

    This is the code I use to send my form via email: protected void sendMail(string strFrom, string strBody) { //create the mail message MailMessage mail = new MailMessage(); //set the addresses mail.From = new MailAddress(strFrom)...
  6. onechuck

    How to reference a .dll file?

    How do I reference a .dll file? I have it in my bin folder at the moment and it's not doing anything.
  7. onechuck

    How to load a textbox?

    I'm very new to C#. I have this code in VB: Protected Sub txtSummary_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtSummary.Load Dim strSummary As String strSummary = txtFstName.Text & " " & txtLstName.Text End Sub How do I do exactly like this in C#?
  8. onechuck

    How to convert a textbox.text to string?

    I have a couple of textboxes that I am trying to concatenate and I receive some error about that. Here's what I have. string strSummary; strSummary = txtFstName.Text + " " + txtLstName.Text; The error message is: Cannot convert from 'System.Web.UI.WebControls.TextBox' to 'string' Your help...
  9. onechuck

    How to link buttons to custom forms?

    I have created a custom form in Outlook. Is there a way to link the form to a button so it is easily access? Or is it possible to have a link or button show up in the "New" drop-down menu button?
  10. onechuck

    How to resize outlook form?

    I'm creating a custom Outlook 2003 form. How do I specify a different size for the Edit Compose Page and Edit Read Page? I have more text boxes on the reading page than on the composing page. So how do I adjust this size differences?
  11. onechuck

    How to resize frame base on form?

    I am trying to create a MS Outlook 2003 custome message form.I am using a frame but I couldn't figure out how to resize the frame both vertically and horizontally base on the size of the window. Under the Properties of the Frame, the Resize to Form seems to work only on Horizontal but not...
  12. onechuck

    How do I write validation expression?

    I'm designing an Outlook 2003 form. Will anyone point me to a page that will show me the syntax about different format expression used in Outlook? Thanks!
  13. onechuck

    Video tutorial on office support on vb.net 2005

    Does anyone know where I can find a video tutorial on the Office development support feature? I really like to see this feature in action before pursuing the Team System edition or not? Thanks!
  14. onechuck

    How to apply masterpage to existing page?

    Is there a simple way to apply the master page to a bunch of files at once? I was watching a video tutorial and it seemed that I have to manually delete the existing code and type in the new master page name. I was hoping for a simpler way than that. Your help is grateful. By the way, I'm using...
  15. onechuck

    How to resize the contentplaceholder?

    Is there a way to resize the contentplaceholder without using table and/or div? I'm coming from Macrmedia DreamWeaver and in DW's editable region, there is no specific size that is required.
  16. onechuck

    Outlook form not working properly

    I have created a form in Outlook 2003. I've published the form but when using the form fine. The problem I have is, perhaps during the design steps, when receiving the form the custome build fields and textboxes are not lost. Any idea why? Help is appreciated.
  17. onechuck

    Is there a way to tell current security policy?

    Is there a way tell which security policy is the one that is currently being used on a windows 2003 server? I use Security Configuration Wizard to create a couple of security policies but I have no way of showing which one is the current one that is being in use. Help is appreciated.
  18. onechuck

    Error 1309. Error reading from file D:\PA561401.CAB

    Okay, here's what I did. I did a complete installation the MS Office 2003 to this PC. Now when the user logs in and try to run any Office application, this installation error would popup. The error message goes something like this: Error 1309. Error reading from file D:\PA561401.CAB Why do I...
  19. onechuck

    How to kill wuauclt.exe process?

    Is there a way to kill or end the wuauclt.exe process? After the computer has been updated, this Restart Now popup kept coming up to have the user restart the computer and I do not want to restart at the moment. How do I kill this process so it does not popup again?
  20. onechuck

    What are some security concerns running WSUS?

    I like to setup a Windows Server Update Service on my windows 2003 backup server. Because this software requires running IIS, should I be using a dedicated server for this? What are some security concerns running WSUS with IIS?

Part and Inventory Search

Back
Top