Generic questions about Visual Studio 2005

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Victor S.

    Generic questions about Visual Studio 2005

    1. What is System.Windows. Forms.VisualSty les.TextMetrics CharacterSet
    good for?

    2. Are the Indic scripts supported?
    Are all supported scripts fully supported? (for printing and fine
    measuring)
    Is the printing done by GDI++ without using Unicribe?

    3. Is the Text.Encoder/Decoder provided by the OS or by the Framework?

    4. Is dragdrop managed?
    If yes, is it possible to drag only the selected text in controls
    that allow users to input text?

    5. Could you reference a link about
    GetDelegateForF unctionPointer/GetFunctionPoin terForDelegate?
    Is it possible to load a dll defined at runtime and call it's functions?
    If yes, how to declare the functions?

    6. Can copy a buffer (byte array) to a string or structure?

    7. Are the fixed len strings and arrays supported?
    If yes, does the structures use a simple fixed len declaration?

    8. Is Union defined for the CLR?

    9. Is the TabPage selection area in the TabControl treated as the
    TabControl or a TabPage?
    (I mean: for events related to DragDrop, ...)

    10. Is the TextBox and ComboBox's TextBox part fixed? No more on focus
    select all?

    11. Could you reference a link about
    ObfuscateAssemb lyAttribute/ObfuscationAttr ibute ...?
    Does the MSIL compiler keep the original symbols in the exe and dll?
    If yes I suggest you to change it to reduce the effects of reverse
    engineering.
    Keep the exported symbols only and change the others to a serial name.
    (please note that not all Public symbols are exported.)

    12. Is it possible to create a SINGLE project using classes written in
    different languages (VB,C#,C)?
    If yes, is it possible to mix languages in the same class?

    13. Is it possible to use inline asm in VB and C#?

    14. Why doesn't Microsoft.Visua lBasic.Conversi on.Bin exist?

    15. Will the Visual Studio .NET help look like the MSDN Library?
    (I mean: with clear explanations and some small code samles all
    toghether in the same page)

    16. When will Visual Studio 2005 be released?
    Do I need to buy a new OS to use it?

    TIA

    VS

  • Jay B. Harlow [MVP - Outlook]

    #2
    Re: Generic questions about Visual Studio 2005

    Victor,
    You may get quicker & more specific answers if you ask "down the hall" in
    one of the Whidbey (Visual Studio 2005) newsgroups:



    Page down on the intro on how to configure Outlook Express or your other
    favorite newsgroup to use them.
    [color=blue]
    > 3. Is the Text.Encoder/Decoder provided by the OS or by the Framework?[/color]
    The framework, as they are in the System.Text namespace.

    However I believe they use P/Invoke to call into the OS. Which happens to be
    an implementation detail, as I'm sure you are aware implementation details
    can change.
    [color=blue]
    > 4. Is dragdrop managed?[/color]
    Yes since VS 2002, look at the DragDrop methods of
    System.Windows. Forms.Control.
    [color=blue]
    > 6. Can copy a buffer (byte array) to a string or structure?[/color]
    Yes since VS 2002, look at the System.Text.Enc oding class on how to convert
    a byte array to & from a String.
    [color=blue]
    > 7. Are the fixed len strings and arrays supported?[/color]
    Arrays by definition are fixed length. Strings by definition are not.

    Again I would ask the VS 2005 specific questions in the VS 2005 newsgroups.

    Also it might help if you made 16 posts with better explainations of what
    you are asking.

    Hope this helps
    Jay

    "Victor S." <NoSpam@NoSpam. Net> wrote in message
    news:e8gcHZeiEH A.2544@TK2MSFTN GP10.phx.gbl...[color=blue]
    > 1. What is System.Windows. Forms.VisualSty les.TextMetrics CharacterSet
    > good for?
    >
    > 2. Are the Indic scripts supported?
    > Are all supported scripts fully supported? (for printing and fine
    > measuring)
    > Is the printing done by GDI++ without using Unicribe?
    >
    > 3. Is the Text.Encoder/Decoder provided by the OS or by the Framework?
    >
    > 4. Is dragdrop managed?
    > If yes, is it possible to drag only the selected text in controls
    > that allow users to input text?
    >
    > 5. Could you reference a link about
    > GetDelegateForF unctionPointer/GetFunctionPoin terForDelegate?
    > Is it possible to load a dll defined at runtime and call it's[/color]
    functions?[color=blue]
    > If yes, how to declare the functions?
    >
    > 6. Can copy a buffer (byte array) to a string or structure?
    >
    > 7. Are the fixed len strings and arrays supported?
    > If yes, does the structures use a simple fixed len declaration?
    >
    > 8. Is Union defined for the CLR?
    >
    > 9. Is the TabPage selection area in the TabControl treated as the
    > TabControl or a TabPage?
    > (I mean: for events related to DragDrop, ...)
    >
    > 10. Is the TextBox and ComboBox's TextBox part fixed? No more on focus
    > select all?
    >
    > 11. Could you reference a link about
    > ObfuscateAssemb lyAttribute/ObfuscationAttr ibute ...?
    > Does the MSIL compiler keep the original symbols in the exe and dll?
    > If yes I suggest you to change it to reduce the effects of reverse
    > engineering.
    > Keep the exported symbols only and change the others to a serial name.
    > (please note that not all Public symbols are exported.)
    >
    > 12. Is it possible to create a SINGLE project using classes written in
    > different languages (VB,C#,C)?
    > If yes, is it possible to mix languages in the same class?
    >
    > 13. Is it possible to use inline asm in VB and C#?
    >
    > 14. Why doesn't Microsoft.Visua lBasic.Conversi on.Bin exist?
    >
    > 15. Will the Visual Studio .NET help look like the MSDN Library?
    > (I mean: with clear explanations and some small code samles all
    > toghether in the same page)
    >
    > 16. When will Visual Studio 2005 be released?
    > Do I need to buy a new OS to use it?
    >
    > TIA
    >
    > VS
    >[/color]


    Comment

    • Valery B.

      #3
      Re: Generic questions about Visual Studio 2005

      Jay B. Harlow [MVP - Outlook] wrote:[color=blue]
      > Victor,
      > You may get quicker & more specific answers if you ask "down the hall" in
      > one of the Whidbey (Visual Studio 2005) newsgroups:
      >
      > http://communities.microsoft.com/new...idbey&slcid=us
      >
      > Page down on the intro on how to configure Outlook Express or your other
      > favorite newsgroup to use them.
      >[color=green]
      >>4. Is dragdrop managed?[/color]
      >
      > Yes since VS 2002, look at the DragDrop methods of
      > System.Windows. Forms.Control.
      >[/color]

      Those questions are not intended to be answered by high school students,
      even if their QI is above 100.
      The only exception is the last question, 16.

      I give you an advice, don't connect to sites that requires your computer
      to become vunerable.

      Definition of site that requires vunerable access:
      A site that requires making it a trustable site, enabling cookies, java
      and other scripts.

      When you connect to this kind of site, soon or later your computer will
      be hacked.


      I hope that you understand this, if you don't understand ask your
      teacher about that.


      Thanks for your reply anyway

      VS

      Comment

      • Cor Ligthert

        #4
        Re: Generic questions about Visual Studio 2005

        > I give you an advice, don't connect to sites that requires your computer[color=blue]
        > to become vunerable.
        >
        > Definition of site that requires vunerable access:
        > A site that requires making it a trustable site, enabling cookies, java
        > and other scripts.
        >
        > When you connect to this kind of site, soon or later your computer will
        > be hacked.[/color]

        To be sure is better to unplug your computer.

        Just my thought,

        Cor


        Comment

        • Herfried K. Wagner [MVP]

          #5
          Re: Generic questions about Visual Studio 2005

          * "Valery B." <NoSpam@NoSpam. Net> scripsit:[color=blue]
          > Definition of site that requires vunerable access:
          > A site that requires making it a trustable site, enabling cookies,
          > java and other scripts.
          >
          >
          > When you connect to this kind of site, soon or later your computer
          > will be hacked.[/color]

          I have never been hacked and I will never be hacked, but I allow
          cookies and scripting. It's just about what websites you are visiting.

          --
          M S Herfried K. Wagner
          M V P <URL:http://dotnet.mvps.org/>
          V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

          Comment

          • Cor Ligthert

            #6
            Re: Generic questions about Visual Studio 2005

            > >[color=blue][color=green]
            > > When you connect to this kind of site, soon or later your computer
            > > will be hacked.[/color]
            >
            > I have never been hacked and I will never be hacked, but I allow
            > cookies and scripting. It's just about what websites you are visiting.
            >[/color]
            Herfried,

            We know you are a honest boy, not needed to show that here

            :-)))

            Cor


            Comment

            • Valery B.

              #7
              Re: Generic questions about Visual Studio 2005



              Herfried K. Wagner [MVP] wrote:[color=blue]
              > * "Valery B." <NoSpam@NoSpam. Net> scripsit:
              >[color=green]
              >>Definition of site that requires vunerable access:
              >>A site that requires making it a trustable site, enabling cookies,
              >>java and other scripts.
              >>
              >>
              >>When you connect to this kind of site, soon or later your computer
              >>will be hacked.[/color]
              >
              >
              > I have never been hacked and I will never be hacked, but I allow
              > cookies and scripting. It's just about what websites you are visiting.
              >[/color]
              I sincerily whish you good luck

              VS

              Comment

              • Herfried K. Wagner [MVP]

                #8
                Re: Generic questions about Visual Studio 2005

                * "Valery B." <NoSpam@NoSpam. Net> scripsit:[color=blue][color=green][color=darkred]
                >>> Definition of site that requires vunerable access:
                >>> A site that requires making it a trustable site, enabling cookies,
                >>> java and other scripts.
                >>>
                >>>
                >>> When you connect to this kind of site, soon or later your computer
                >>> will be hacked.[/color]
                >> I have never been hacked and I will never be hacked, but I allow
                >> cookies and scripting. It's just about what websites you are visiting.[/color]
                >
                > I sincerily whish you good luck[/color]

                Thank you, but I think you will need it urgently!

                --
                M S Herfried K. Wagner
                M V P <URL:http://dotnet.mvps.org/>
                V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

                Comment

                Working...