Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
T

TheDudeJuan

@TheDudeJuan
About
Posts
9
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Passing any object type to a function
    T TheDudeJuan

    The parameter in the ConvertList function accepts List but when you call the function you parse a ref of listChildEntity...

    Dollartegn 8D

    C# help question regex

  • Select word in richtextbox control
    T TheDudeJuan

    Split the string by " " (space) and select the second value

    Dollartegn 8D

    C# question

  • Conversion from string "18/8/2009" to type Date is not valid...
    T TheDudeJuan

    you could split the string ( string.Split() ) and then take the second index of a string array, then you have the number of the month, maybe you could work with that?

    Here we rest... So why not make the best of it? :D

    .NET (Core and Framework) beta-testing help testing question

  • reading text file as a database
    T TheDudeJuan

    there is no need for loop with the ReadAllLines method.. It returns a string array containing all the lines of a file ;)

    Here we rest... So why not make the best of it? :D

    C# question database help

  • reading text file as a database
    T TheDudeJuan

    another idea would be using the File.ReadAllLines method :P this is easily found on google

    Here we rest... So why not make the best of it? :D

    C# question database help

  • Photo effects(Watercolor,comic, oilpainting)
    T TheDudeJuan

    There is a free .NET framework you can use for imaging and many other things called AForge.NET Here's a link ;) http://code.google.com/p/aforge/[^]

    Here we rest... So why not make the best of it? :D

    C# csharp help

  • Get int value of DWORD parameter
    T TheDudeJuan

    Hi, I use the windows apis a lot and often I have to to give a parameter with the DWORD type. From my understanding the equivalent in c# is int... So when I have a parameter like "DWM_TNP_RECTDESTINATION" it's int value is 0x1. But I only know that since I found an example where they used the code. But now I have another parameter (DWMWA_EXTENDED_FRAME_BOUNDS) from the dwmapi.dll and I don't know how to get the int value since I can't find an example where it is used :S Isn't there an easier way to get the value instead of finding someone who knows? :P

    $? :D

    C# tutorial csharp question

  • I can disable Minimize, maximize box in windows using API but restore box.
    T TheDudeJuan

    if you don't want to allow the form to be resized you can set the MaximumSize and MinimumSize properties of the form so it will keep the current size. if you already set the size of your form you can do this:

    yourForm.MaximumSize = yourForm.Size;
    yourForm.MinimumSize = yourForm.Size;

    then it can't be resized even if the restore button isn't disabled ;)

    Here we rest... So why not make the best of it? :D

    C# json

  • I can disable Minimize, maximize box in windows using API but restore box.
    T TheDudeJuan

    can't you just change the FormBorderStyle to SizeableToolWindow or FixedToolWindow? :)

    Here we rest... So why not make the best of it? :D

    C# json
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups