Search results for query: *

  • Users: Evan1993
  • Content: Threads
  • Order by date
  1. E

    Need a little help with Xml Serialization

    I have a Dictionary which I am Serializing with some code I found. (Converted to vb.net) It works great, but the output is like <item> <key></key> <value></value> </item> etc. I'm trying to make it so that it uses attributes instead like this: <item key="" value=""/> I tried using...
  2. E

    custom VBproj MSBuild project

    I'm trying to create a custom MSBuild project to compile some modules written in VB and one written in C++ into one assembly. I found an example of compiling C# and VB files to one assembly here, which I'm attempting to base mine off of. Currently VS locks up when I try to open my project, and...
  3. E

    Implement IDictionary or Inherit DictionaryBase?

    If I use a normal dictionary(like the code below), it works great. Dim Example As New Dictionary(Of String, MyObject) For Each pair As KeyValuePair(Of String, MyObject) In Example 'Do stuff. Next However I want to add a few properties and subs, so I want to...
  4. E

    Collection Item Changed Index

    Is there any way to get the index of the changed item? I couldn't find any examples.
  5. E

    Package Load Failure

    I get a package load failure when I debug any program at it finds and exception. Package 'Visual Studio Explorers and Designers' has failed to load properly 9 GUID = {8D8529D3-625D-4496-8354-3DAD630ECC1B} ). etc etc. Any ideas why this would suddenly start happening and how to fix it?
  6. E

    Help with property grid and collections

    I have a collection of custom objects: The object is like such: Public Class CustomObject Implements ICloneable Public ChangeID As String Public Value As Integer <...clone function..> End Class I want the data grid to look like this: | Some text here | Value of...
  7. E

    dataGridView draw header?

    Is there any way to draw your own background for the header like you can for the rows? Also, is there anyway you can have a column that can have cells that are check boxs or test not just one or the other?
  8. E

    Show thread in Task Manager

    I want my thread to appear in the task manager as another process; like Google chrome does. Couldn't find anything searching. Thanks in advanced.
  9. E

    Fast Ini Parser?

    I am trying to find a fast .ini parser, I don't want to use the Win API functions because they are far to slow, adding up to about a minute of loading time. (I would prefer to use a different file format, but for it to be compatible I need to use .ini's :( ) Thanks in advanced.
  10. E

    Can't find any way to remove graphics after drawing them.

    My program is supposed to draw a red rectangle around itself, wich it does fine. However each time it redraws it leaves behind red marks. I have tryed Invalidating the desktop (the whole screen), wich only made it worse. (Becuase it made my program redraw, wich left even more marks) Any...
  11. E

    Get window size via Windows Messaging?

    Is there any way to retrieve a windows size with via SendNotifyMessage(or others..) ? I could not find any that would return the window size, only change it.
  12. E

    Question whats the Globalization Equivalent of GetUserDefaultLangID?

    I can't find the equivalent of GetUserDefaultLangID.. if any knows it then please tell me. :)
  13. E

    Trouble with GetLocaleInfo

    Public Const LOCALE_SABBREVCTRYNAME& = &H7 ' abbreviated country name Public Const LOCALE_SENGCOUNTRY& = &H1002 ' English name of country Public Const LOCALE_SYSTEM_DEFAULT& = &H400 Public Const LOCALE_USER_DEFAULT& = &H800 Public Const LOCALE_NOUSEROVERRIDE& =...
Back
Top