Search results for query: *

  1. G

    Question How to deactivate my account

    I got a email wishing me a happy birthday (Thank You). But this reminded me of this account on this site. I have not used this forum in years and don't require it anymore and would like to deactivate my account. How do I do this?
  2. G

    Minimize, Close, etc. form with no border

    I have created a form with no border, but by doing this it doesn't allow me to right click the program in the taskbar to minimize or close. How do I get a menu to come up when the user right clicks the application in the taskbar and give the them the options to minimize, restore, exit, etc..
  3. G

    ListView Sort by Number, why not?

    Let me explain what I am trying to do better. What I have is a tree view that displays directories when a user clicks on the folder the contents are displayed in the listview, a folder can have items numbered from 1-19 but a few folders down the files may start 77 to 116. I see all sorts of...
  4. G

    ListView Sort by Number, why not?

    If I have a list of files labled by number windows shows them in the right order. How come this doesn't work for ListView? ex. 1 to 19 List view goes like this: 1 10 11 12 13 14 15 16 17 18 19 2 3 4 5 6 7 8 9 I know it's because 10 to 19 begin with 1, but is there a way to change this...
  5. G

    Specified Module cannot be found?

    Actually this is all that needed to be done (from Xenocode): Are you depending on any assemblies along side the exe - as opposed to embedding them in the exe? If so, you will probably need to place a real mscoree.dll (from a .NET 20 install) along side your app's exe. Also, you should...
  6. G

    Specified Module cannot be found?

    I have tried to repair, didn't work. Tried a complete uninstall and reinstall and still get the same thing. Request: Query Information Path: C:\WINDOWS\system32\mscoree.dll Result: Not Found Other: Attributes: Error Also noticed this (not sure if was there before) Request: Query Information...
  7. G

    Specified Module cannot be found?

    I used a program called filemon.exe to monitor my program when it ran what it said was: Request: Query Information Path: C:\WINDOWS\system32\mscoree.dll Result: Not Found Other: Attributes: Error What is this dll? do i need to make a reference to it in my application? What do I reference...
  8. G

    Specified Module cannot be found?

    "System.IO.FileNotFoundException: The specified module could not be found." Does this mean the file cannot be found when they click on it? If so it is finding the file when it searches the directory and displays it in the ListView. And it finds it and runs it on some other machines.
  9. G

    Adding Flash Object

    My program will just run off a cd, I guess i need to check for the player and if it isn't installed then run the flash installer (let them know of course). Or is there a better way?
  10. G

    Resize Image to fit on paper for print

    Sweet, that makes sense now, thanks alot. I never took into account that if I resize an image to fit the width then there is still the possibility that the height could still be larger than the container. Thanks John much appreciated for the help and understanding of resizing images. G
  11. G

    Specified Module cannot be found?

    Back Again, Wish I had more than a week to write this program(sigh, got 2 days left) Here is my problem: I created an application (runs off of CD) that looks in a directory and displays it in a listview. Depending on what file is clicked an action is taken. I get the following error when...
  12. G

    Saving Flash?

    Thanks JohnH once again. There is just sooooooooooo.... much to .net that I need to figure out.
  13. G

    Resize Image to fit on paper for print

    My image is 993x730 the area I am trying to put it into is 800x1067 (print area on paper, portrait) If I get the scale factor using 800/993 = .8056394.... 993 * .8056394... = 800 How come that number does not work for the height? 730 * .8056394... = 588.116817... When I resize in my...
  14. G

    Saving Flash?

    Well with the help of users in this forum I was able to now view my flash file within my program. But know I can't figure out how to save it. When a user clicks on my flash file it opens up in a new form for them to view it. What I want to do now is allow them to click a save button to save it...
  15. G

    Adding Flash Object

    Quick question, will the user have to have the flash player installed on their system or does this control take care of that?
  16. G

    Adding Flash Object

    Thanks alot, I can put it on my form now. Now I just have to learn how to use it, LOL. Thanks Again.
  17. G

    Adding Flash Object

    That doesn't appear in mine, how can I get it? Edit: Sorry I was looking in the wrong spot, my bad
  18. G

    Adding Flash Object

    I Can't seem to find 'OLE Automation' library (stdole2.dll)' I am using Visual Basic 2005 Express Edition does that have anything to do with it?
  19. G

    Adding Flash Object

    In my solution explorer under references: AxShockwaveFlashObjects has a yeild sign on it. Any Ideas
  20. G

    Resize Image to fit on paper for print

    Thanks, I was trying to resize my image for printing so what I did was: 1. Get Print area width 2. Get image width 3. PrintAreaWidth / ImageWidth = ScaleFactor 4. RectangleWidth = ImageWidth * ScaleFactor 5. RectangleHeight = ImageHeight * ScaleFactor 6. Dim printArea As New Rectangle(x, y...
Back
Top