Search results for query: *

  1. Brainbug

    Distribute small programs without the .net framework

    Thank you very much, the first really helpful hint. I will check this out! This seems very promising! Brainbug PS: By the way - I am not interested whether the framwork is already installed or not, I just want to make sure that my application installs & runs within minimal time and with...
  2. Brainbug

    Distribute small programs without the .net framework

    Unused References Visual Studio 2006 is able to remove the unused references from that list above, remaining System system.dll 4208KB System.Data system.data.dll 2812KB System.Drawing system.drawing.dll 684KB System.Windows.Forms...
  3. Brainbug

    Distribute small programs without the .net framework

    So what now? It is said that there ARE possibilities to avoid the framework: Now you say that's not possible - although you mention the possibility to "dissect the individual libraries". Whether it's a "stupid hack" or not, thats for every developer to decide: I can think of situations where...
  4. Brainbug

    Distribute small programs without the .net framework

    Consider that some businesses dont use an XP version. In fact I didnt know that .net 1.1 comes with XP SP2 - thanks for that information, but for example: in the special case I mentioned above, Windows 2000 is in use. So I still need a solution for those users. Brainbug
  5. Brainbug

    Distribute small programs without the .net framework

    Hi, thanks for those answers. I am aware of the possibility to include the framework in my installation. But thats the point: WITHOUT that framework the setup would be some kB, INCLUDING the framework it's more than 20 MB - and it DOES matter, because sometimes users dont want to have to...
  6. Brainbug

    Freamework1.1 SDK

    Which language? ...so you wanna use the framework. Which programming language do you want to code in? Are you using Visual Studio? Since you are posting this in a VB.net-forum you might use this with the framework: http://www.microsoft.com/germany/msdn/vstudio/express/vb/default.mspx Have fun...
  7. Brainbug

    Distribute small programs without the .net framework

    Hi, is it possible for, say, really small projects which use barely any fency controls, to distribute (and run) WITHOUT any use of the .net framework? - Maybe there is a way to put the used controls and whatever in a single dll-file or something which allows the program to run without...
  8. Brainbug

    Transparent Label

    Consider this... In addition to what Kulrom wrote: notice that (by setting a PictureBox as parent for a label) the coordinate system for the label changes! A label, formerly located at [100, 100] on the Form, added to the children of a PictureBox (which is also located at [100,100]) will be...
  9. Brainbug

    Text inside a progressbar

    finally found it... I'm using .net 2006 and there it says "choose items" and then you have to browse for the dll; now I managed it to use your control. Thank you very much for your support. Brainbug
  10. Brainbug

    Text inside a progressbar

    Thanks so far! Is it possible to get self-made controls in the toolbox, to pick and drapg&drop them to a form, when needed? How did you get your UserControl in there? Brainbug
  11. Brainbug

    Transparent Labels

    Solved... The problem seems to be solved here: http://www.vbdotnetforums.com/showthread.php?t=7959 Brainbug
  12. Brainbug

    Text inside a progressbar

    Yes, please! I need a demo how to manage that new control and how to put it into a new project. By the way: why DOES the "transparent"-Backcolor NOT work with the Label and the ProgressBar (as I stated here: http://www.vbdotnetforums.com/showpost.php?p=22131&postcount=4) Brainbug
  13. Brainbug

    Transparent Labels

    Thank you very much, as soon as I have some time on my hands I will look into it and post a more detailed reply! Brainbug
  14. Brainbug

    Transparent Labels

    What to choose... As I would like to keep my application light weight I'd actually prefer to get along without third-party controls if possible. So I would like to try one of the other ideas of yours, jmcilhinney. The problem is: I have no idea how to handle the painting once I have overridden...
  15. Brainbug

    Transparent Labels

    Not as simple! Hi Guys, thanks for the quick replys. Of course I tried all that. If it was so simple I would not have posted this: look at this screenshot The label (BckColor = Color.Transparent) is above the progress bar, and it IS transparent allright, but only to the gray background of...
  16. Brainbug

    Transparent Labels

    Hi, I want to put a transparent label on top of a progress bar (white font, so it will be white on blue when the progress goes on). Even with the progress bar as parent of the label, the gray label-background is still shown. Any suggestions about that one? Thank you, Brainbug
  17. Brainbug

    Transparent Label

    Transparency Addon Hi, I want to put a transparent label on top of a progress bar (white font, so it will be white on blue when the progress goes on). Even with the progress bar as parent of the label, the gray background is still shown. Any suggestions about that one? Thank you...
Back
Top