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
M

Migounette

@Migounette
About
Posts
65
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Using Gzip in HttpRequests
    M Migounette

    Do not forget to modify the content type of the http header in order to correctly handle it on the server side or client side.

    C# csharp sysadmin help

  • Connecting to RFID Reader
    M Migounette

    Sorry, I thought it was a local device. Try to use the : [^] or Wireshark in order to see if the traffic comes in on both side.

    C# csharp question

  • Connecting to RFID Reader
    M Migounette

    More information is need but, accessing a com port on Windows 7 needs to have specific security privilegde. Check your C# application to see if you do not catch a UnauthorizedAccessException My two cents

    C# csharp question

  • C#, Powershell, and Exchange
    M Migounette

    My two cents: Certainly a privilieged account with exchange permission problem.

    C# csharp html com sysadmin windows-admin

  • Need help,compile the sqlite3.dll
    M Migounette

    Give us more details, it seems to be a problem with an external compilation and not a C# problem.

    Mobile help sqlite

  • New to Mobile Dev --- Suggestions on Development Platforms [modified]
    M Migounette

    I do not agree on the conclusion :) In fact with MonoTouch ([^]) you have a gateway for iPhone / Symbian / Windows. The problem will be compatibility and support of XAML / XNA planned for Windows 7 based phones. My two cents

    Mobile question csharp java ios mobile

  • Reg to Unicode and MBCS problem in socket programing
    M Migounette

    Are you using TCP ? If yes, put the flag TCP_NODELAY. It's a classic error issue, in fact many people are confused by TCP. It's a simple example but with the TCP_NODELAY flag you should be able to receive your 5 bytes at once. [^]

    C / C++ / MFC c++ help sysadmin

  • ownerdrawn treenodes
    M Migounette

    Maybe this code should help you to understand... : protected override void OnDrawNode(DrawTreeNodeEventArgs e) .... if ((e.Node != null) && (e.Node is MyTreeNode)) { MyTreeNode myTreeNode = e.Node as MyTreeNode; Rectangle bounds = e.Bounds; if (myTreeNode.CHECKBOX == true) { ControlPaint.DrawCheckBox(e.Graphics, bounds.Left, bounds.Top, 16, 16, ButtonState.Checked); bounds = Rectangle.Inflate(bounds, 16, 0); } // Draw the background and node text for a selected node. if ((e.State & TreeNodeStates.Selected) != 0) { // Draw the background of the selected node. The NodeBounds // method makes the highlight rectangle large enough to // include the text of a node tag, if one is present. e.Graphics.FillRectangle(Brushes.BlueViolet, bounds); // Retrieve the node font. If the node font has not been set, // use the TreeView font. Font nodeFont = e.Node.NodeFont; if (nodeFont == null) nodeFont = this.Font; // Draw the node text. e.Graphics.DrawString(e.Node.Text, nodeFont, Brushes.White, Rectangle.Inflate(bounds, 2, 0)); } // Use the default background and node text. else { e.DrawDefault = true; } // If a node tag is present, draw its string representation // to the right of the label text. //e.Graphics.DrawString(e.Node.Tag.ToString(), this.Font, // Brushes.Yellow, e.Bounds.Right + 2, e.Bounds.Top); // If the node has focus, draw the focus rectangle large, making // it large enough to include the text of the node tag, if present. if ((e.State & TreeNodeStates.Focused) != 0) { using (Pen focusPen = new Pen(Color.Black)) { focusPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; Rectangle focusBounds = bounds; focusBounds.Size = new Size(focusBounds.Width - 1, focusBounds.Height - 1); e.Graphics.Dr

    C# graphics help question

  • how to IF?!
    M Migounette

    I prefer this for String type: bool isBad = ((String.IsNullOrEmpty(text1) == true) || (String.IsNullOrEmpty(text2))) My 2 cents

    C# question tutorial

  • Serialization problem
    M Migounette

    Not sure about the error Members of what ? Try this: public int number { get; set; } or I was looking at SOAP (never played with), but maybe with the extension of the attribute for soap envelop may work. http://msdn.microsoft.com/en-us/library/system.xml.serialization.soapignoreattribute.aspx[^] Good luck :)

    C# graphics json help tutorial announcement

  • Dont understand arrays
    M Migounette

    Look at this msdn article: [^]

    C#

  • Serialization problem
    M Migounette

    Try this.... // Version 1.0 [Serializable] public class SerialObj { public System.Drawing.Color color; } // Version 2.0 [Serializable] public class SerialObj { public System.Drawing.Color color; [OptionalField(VersionAdded = 2)] public int number; } // Version 3.0 [Serializable] public class SerialObj { public System.Drawing.Color color; [OptionalField(VersionAdded=2)] public int number; [OptionalField(VersionAdded=3)] public int solution; }

    C# graphics json help tutorial announcement

  • DS virtual capture device
    M Migounette

    Virtual webcam can be found on the web. For instance : ManyCam Virtual Webcam But I don't know if I capture your question.

    C# csharp visual-studio com

  • window ce 6.0
    M Migounette

    http://www.codeproject.com/script/Forums/Search.aspx?fid=0&kw=windows+mobile[^]

    C# c++ visual-studio tools help tutorial

  • how to trap masktextbox control if empty or not filled by user
    M Migounette

    Change it to the static method: String.IsNullOrEmpty(maskedTextBox2tel.text) == true

    C# help tutorial

  • COM error in faxing component
    M Migounette

    The difference maybe in UAC control which may prevent to load the DLL or to access a specific resource. Look at this policy explainations for more details: http://www.15seconds.com/Issue/040121.htm[^] Because, remotely it will be difficult to find any potential security reasons. Depending on the installation and the way you have installed your software. :suss: Good luck. Keep us updated.

    C# help com sysadmin workspace

  • Random Number Question
    M Migounette

    For instance: Random RandomClass = new Random(); // The Next method should be called with two arguments: the minimum value and the maximum value. int RandomNumber = RandomClass.Next(maxNumber+1, maxNumber+2);

    C# tutorial game-dev help question lounge

  • COM error in faxing component
    M Migounette

    It should be easy to fix it: It means that your module is not registered, so you have certainly copied the library to your target system without registring it. * regsvr32 xxxx.dll if you have an error use a tool to check if a missing dependency is not missing (dependency [^] Keep update us.

    C# help com sysadmin workspace

  • Entity Framework ComboBox issue !!
    M Migounette

    Not sure I fully understood your needs. But try to override the ToString() method in order to select what's you want to display.

    C# help winforms design sales learning

  • IP Address
    M Migounette

    Several options: Stun / UPnP / Telenet acces to your box....

    C#
  • Login

  • Don't have an account? Register

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