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
L

Leyu

@Leyu
About
Posts
74
Topics
31
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Error
    L Leyu

    You need to specify the type of strSuggestion in this case I assume is string like foreach (string strSuggestion in functionReturnValue) { dblSimilarity = WordSimilarity(strWord, strSuggestion); i = intSuggestionCount; while (dblSimilarity > dblSimilarityArray(i)) { if (i < intSuggestionCount) { strSuggestionArray(i + 1) = strSuggestionArray(i); dblSimilarityArray(i + 1) = dblSimilarityArray(i); }

    ASP.NET help

  • sorting of a string column
    L Leyu

    Convert the data type of the column on the fly using convert or cast then reorder the converted column using ORDER BY. Make sure the converted type is integer!

    C# database algorithms help code-review

  • To generate a pop up from windows service..
    L Leyu

    You can't! Write to event log...

    C# help

  • How to extend Math class
    L Leyu

    Use a utility class like this public static class AdvancedMath { //Only if you want to call the method from here //Or rewrite the signature of the methods/properties you want public static decimal Abs(decimal value) { return Math.Abs(value); } //add any additional methods/properties you may have public static double MySpecialMethod(double value) { //do your special processing and return the result } }

    C# tutorial question

  • generate array
    L Leyu

    DataTable dt = yourdataset.Tables[0]; List ids = new List(); foreach(DataRow row in dt.Rows) { ids.Add(((int)row[0])); } //Now you have the list of ids from the table.

    ASP.NET data-structures

  • Data Transfer from .Net to VB6 application
    L Leyu

    If the VB 6 app reads data stored in excel format then save the data from the web form with an excel format. Then the VB6 app can show the data given the file. If I see ur problem correctly

    C# csharp help asp-net hardware

  • restrict WindowsForm's size
    L Leyu

    Play with the FormBorderStyle property.

    C# question

  • Difference between String and string?
    L Leyu

    String is .NET CTS type where as string is built in C# datatype which virtually means String just like Int32 struct and int, Bottom line both are the same

    C# question

  • help...how to highlight buttons in c#?
    L Leyu

    I guess what you want to do is nextButton.Focus(); //this will highlight(input focus) the nextButton

    C# tutorial csharp help question

  • How to restart the program after a function?
    L Leyu

    System.Windows.Forms.Application.Restart();

    C# question debugging tutorial

  • C# connection to Lotus Approach
    L Leyu

    google for "NotesSQL301.exe" and use linked servers to get it working !

    C# csharp question

  • help..any one helpp..!
    L Leyu

    http://msdn2.microsoft.com/en-us/library/ms384775(VS.71).aspx U'll find lots of good stuff in it

    C# graphics help

  • how do i get datetimepicker for my asp.net2
    L Leyu

    Windows --> Web? Are you Kidding !!!!

    ASP.NET csharp question asp-net visual-studio tutorial

  • Excel to database table
    L Leyu

    Create the table with the required columns, and then use sql server import data to import your data from excel to the table you created.

    ASP.NET database tutorial

  • Project With Source Code
    L Leyu

    Are u sure that it is *.vsi file the one i have is a zip file. I think you can also find the link in the Wrox web site they have a full book dedicated to this project. google for it "Web Site programming problem design solution"

    ASP.NET com help

  • Project With Source Code
    L Leyu

    You can see the "beerhouse" project in www.asp.net

    ASP.NET com help

  • Highlight an item in a listview
    L Leyu

    int index = //your index listView1.SelectedIndex = index;

    C#

  • a few important questions about forms ?
    L Leyu

    Mehmet Fatih Akbulut wrote:

    first, i accidentally changed the ShowInTaskBar property of my form to False and when i noticed that i changed it back to True. but my form is still not seen in TaskBar. it occupies everywhere in monitor ;( how do i make it looks normal ? (same as it did look in the past)

    Go the Form's InitializeComponents() method and search for the this.ShowInTaskBar = ??? line. Delete the line and recomile again. U r done.

    Mehmet Fatih Akbulut wrote:

    i mean i have a few texboxes on form and have a taborder from top to bottom. but i want the cursor be in a specific textbox i want when i start my form

    In the designer mode go the View menu and select TabOrder then you can see the tab order of the controls and containers. click on the containers and controls in you preference(Note that only controls supporting the TabStop property and the ones having it set to true can have focus)

    Mehmet Fatih Akbulut wrote:

    lastly, formwindowstate is maximized and i disable maximizebox (false). but if one double clicks on bluebar at the top, form gets the sizes when it was created. i want to disable double clicking on the bluebar at the top of my form ( so it should never be resized.)

    Here I see two options 1 you override the WM_NC??? messages and see what you come up with. 2 Calculate the area on the screen that is used when the form is maximized and set the MinimumSize property to that value. you should also take a look at the system menu commands. For more information there is a nice FAQ at www.windowsforms.com -- modified at 14:14 Thursday 18th May, 2006

    C# question

  • voice modem and speaker in C#
    L Leyu

    Have you seen the TAPI articles here on code project.

    C# help csharp

  • UI Design Samples
    L Leyu

    Are there any good UI design web sites that i can look in to ? especially concerned with business application UI design ? Thanks!

    C# design business question
  • Login

  • Don't have an account? Register

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