Search results for query: *

  1. K

    problem with window.showdialog

    Hi I have Page1.aspx, which is used to open a dialog page2.aspx...which contains controls..when i clcik a button on the dialog window i.e page2, it opens another instance of page2...is there a way to avoid it? i dont want to use window.open...because when page2 dialog closes...it does not return...
  2. K

    Error while deleting a file

    Here is my code My Code.... I get the error while deleting the file..... Imports System.Drawing Imports System.IO Public Class Image3 Inherits System.Windows.Forms.Form Dim listView1 As ListView = New ListView Dim imageList1 As ImageList = New ImageList Const IMAGE_DIRECTORY As String =...
  3. K

    Error while deleting a file

    ya it is using the file and thats why i am clearing the imagelist and the listview and still i face this problem. U said u faced this problem so how did u go about solving it?
  4. K

    Error while deleting a file

    :( Still facing the problem...i really cant figure what st*p*d process is using the file....its so strange and frustrating any help would be much appreciated
  5. K

    Error while deleting a file

    Hi I am displaying a list of images from a local directory using, listview and imagelist. When the user selects an image(image1) and clicks a button i perform a rotation on that image and then save the rotated image(image1r) in the directory. Now i want to delete the original image (i.e image1)...
  6. K

    selecting Images

    Hi I need help.... I am displaying a list of (thumbnail) images from a directory, something like a thumbnail gallery... i used a datalist control to do it... Now what i want to do is ...is to be able to select the images in order to do some functions on that image.... any ideas on how to do it?
  7. K

    List of Images

    Hi I am looking for a way to display thumnail views of images.....from what i have learnt we dont have a control in web applications to display a list of images.... any ideas on how i can go about it? any help would be highly appreciated
  8. K

    Status bar

    No I can't, cause i need other language fields to be displayed on it... anyways i guess i will create my own control....
  9. K

    Status bar

    well i am working ona project and the interface is not in english....so we need a status bar...that has some static labels and next to them showing the status. So how do i go about it? should i create my own control?
  10. K

    Status bar

    How can i add a status bar to my .aspx page? looks like u can use status bar only with windows applications in the .NET framework.
  11. K

    Page templates

    Hi This is really urgent.... i went thru http://www.fawcette.com/vsm/2001_12/magazine/columns/aspnet/page2.aspx that explains how to go about doing the page template..... but when i run the aspx page it shows nothing at all..... any ideas why? i need to create page templates...it would really...
  12. K

    Insert statement doesnt work...

    Hi I have a table in MS Access....that contains fields ID (number) Name (Text) Date_Issue (Date) Date_Return (date) Flag (Yes/No) Now in my windows from i have a combobox, testbox, listbox and datepicker. I want to insert values from these controls to my table.... I m using the following...
  13. K

    Populate Listbox on clicking a value in combobox

    I dont have a problem with populating the listbox.... my main problem is to display only selected values from the database depending on what was selected in the combo box. for example if in my table i have two columns Book Name, Publication I populate the combo box with all the publications...
  14. K

    Populate Listbox on clicking a value in combobox

    Hi everyone.... I am populating my combo box with data from access database... what i want to do is...upon clicking a value in the combo box it should display data related to the value selected in a listbox ...how do i do it.... here is the code i am using.... Private Sub...
Back
Top