Search results for query: *

  1. P

    Question Resize a Bitmap Type

    MattP - the link works, but when the code was compiled it failed to work... :confused: Vic - thanks, i will try this and post a reply. Cheers, Papa
  2. P

    Question Resize a Bitmap Type

    Using this forum, i was able to interigate a file and then alter a mouse cursor to become a bitmap based on the file information. As part of the bitmap type, is it possible to resize the bitmap to ensure that they are always exactly the same. Currently, the application will get the bitmap, but...
  3. P

    Drag and Drop (multi select)

    <BUMP> in some applications you can select multiple rows from a grid and drag them over to another grid. How do i do that in vb.net? its almost as though i want to store the row ids and then use that list as part of the drag and drop - is that a good way to do it?
  4. P

    Datagrid and Dataset

    Currently, when a row is selected in a datagrid the row item number is used to access the dataset and insert that row into another dataset. When i try to use the datagrid row information i get an error because i can not insert one datagrids data into another datagrid if the other datagrid has a...
  5. P

    Mouse Drag - Use Image

    Worked a treate - this can now be closed.
  6. P

    Drag and Drop (multi select)

    Hi, How to I use drag and drop with multiselected rows in a datagridview? I can get the selected rows by using the dgFileList.SelectedRows but i need to pass that information to my destination. How do i do that?
  7. P

    Datagrid and Dataset

    Hi, When i sort a screen representation of my data (using the "click on column and it will order it" functionality built into the datagrid) my form displays the newly sorted data in the datagrid. My datagrid is associated to a dataset. The dataset underlying the data grid is not sorted the...
  8. P

    Application Memory Use

    I am trying to ensure that the footprint of my application is as small as it can possibly be. Is there a way to assess my application to see if there is more efficiency that can be built in? I have noticed that my app memory use seems to flucturate a lot. Sometimes at start up it can be as...
  9. P

    Aac -> mp3

    Is it possible to play AAC files in vb.net? What method could be used to get the songs imported from iTunes to play in a VB.net application?
  10. P

    Mouse Drag - Use Image

    Hi, Thanks for this. Unfortunately it doesn't work in its current form. I have tried to fix the code and this is what i came up with: Dim bmp Dim cur As Cursor bmp = CType(Image.FromFile("C:\Users\Papa\Documents\test-image.bmp"), Bitmap) cur =...
  11. P

    Resolved ClassicXP/win98 style GUI on Vista, why?

    Star!!! JohnH, Thanks for that - simple when you know how. Cheers, Papa_K [Closed]
  12. P

    Resolved ClassicXP/win98 style GUI on Vista, why?

    the new projects i create do not have this issue. The are correctly presented on the screen. I truely suspect there is a legacy import. I'll post the imports when i get home and see if they help anyone. I cant for the life of me remember if this was originally created in vs 2005 express or vs...
  13. P

    Resolved ClassicXP/win98 style GUI on Vista, why?

    Oddly, my application has "picked up" the old style button design. In Vista the buttons have a slight shadow / 3d effect, however, my application appears not be using the default style and instead applying the older XP, Win98 typ appearance. Can anyone think what it is that the applicaiton has...
  14. P

    10000 Data Items

    Couldnt agree more I couldnt agree more. Currently the push of data into the stack is very quick. It can manipulate data into the stack extremely quickly, but, i need to interigate that data and pull data attributes off of it - song title, artist, etc. I pop each file location off, read the...
  15. P

    Mouse Drag - Use Image

    Hi, I want a user to be able to drag and drop a file. I want the drag and drop to interigate that file and extract an image from it. I then want the mouse cursor to then be that image (or at least include it as it's dragged) thus informing the user of the image they are dragging. Is this...
  16. P

    10000 Data Items

    got this sorted in the end. my code goes through gets the MP3 files from the folders structures and pushes them into a stack, this stack dumps them out to a list which i then trawl through and get the MP3 details from and stores it into a data set. at the end of the processing the data is then...
  17. P

    DataSet / DataGrid Display Issues

    I finally got this sorted - if required i can post the code. basically i needed to create a table and add the dataset into the table, then associate that table with the datagrid. simple when you know how - took me two whole days to work out though!!
  18. P

    DataSet / DataGrid Display Issues

    hmmmmm hmmm, something seems a little off. Do i have to declare in the datagrid the dataset columns or will it just pick up the data? do i need to "import" anything to my application?
  19. P

    DataSet / DataGrid Display Issues

    I am having (what I suspect is a school boy error) regarding datagrids and datasets. I have a dataset control on the form (ds1) and a datagrid (dg1). In ds1 there is a table called tbl1 and within that table there are columns col1 and col2. I load data into ds1 which I know is present as I...
  20. P

    10000 Data Items

    Sounds good. I think that the posting of the dataset should be quite easy using the built in functionality in .Net / VB. I might still have the problem of initially harvesting the data. Basically I have 5000 or so songs on my machine. My code goes and gets the destination address of the...
Back
Top