Search results for query: *

  1. Y

    problem with ajax toolkit slideshow extender

    Here is my code for the ShowImage.ashx Imports System.Web Imports System.Web.Services Imports System Imports System.Configuration Imports System.IO Imports System.Data Imports System.Data.SqlClient Public Class ShowImage Implements System.Web.IHttpHandler Sub ProcessRequest(ByVal...
  2. Y

    problem with ajax toolkit slideshow extender

    I am using the slideshowextender control to display images from database. I am using image handler to retrieve images from database. My problem is when i am using for loop to populate the slide for the slideshowextender images wont display but if i do a manual add to array it works. Below is the...
  3. Y

    Question Missing Paper clip icon in gmail

    Solution: Missing Paper clip icon in gmail I finally found the solution for this problem by adding content disposition. Dim disposition As System.Net.Mime.ContentDisposition = Attach.ContentDisposition disposition.DispositionType = "attachment" disposition.FileName =...
  4. Y

    Question Missing Paper clip icon in gmail

    Hi, I dont know if someone had encountered this problem. I used the code below to send email with a google account. I can send the email with attachment but a minor problem for recipient using gmail. I notice that the paper clip image or icon on the right side of the the gmail inbox list is...
  5. Y

    Question Adding a visible drag handle for splitcontainer in windows form

    Thanks jmcilhinney, I finally been able to add the image to the splitcontainer with the code below. My problem now is how to center the image in the splitterRectangle area. The images appears in the left of the SplitterRectangle. Any suggestions? Thanks a lot. Yuan Dim mImage As Image =...
  6. Y

    Question Adding a visible drag handle for splitcontainer in windows form

    Thanks jmcilhinney, I have been trying to execute it but I still can't figure a way to add the image on the SplitterRectangle using the DrawImage. I found this code that made use of the SplitterRectangle but my problem is showing the image. Would you be able to give more explanation or sample...
  7. Y

    Question Adding a visible drag handle for splitcontainer in windows form

    Hi Can anyone help on how to place a visible image in the splitcontainer so it would be obvious for users to see that the area is movable. Like the split container in SplitContainer Class (System.Windows.Forms) which has the gray with '...' Thanks a lot. Yuan
  8. Y

    Calling a function from a form to another form

    Hi Can someone help me how to call a function from a different form. Like the button click event. i have this scenario. I have a main form and a child form in the main form there is a navigation panel on the left side controlling the child form. What i want is if clicking the add record in my...
Back
Top