Search:

Type: Posts; User: x-ice

Page 1 of 13 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    1
    Views
    1,018

    Re: Using Like in C# question

    String.Contains should work just fine.

    http://www.dotnetperls.com/contains
  2. Re: Exchange webService - Service.GetRoomLists() returns zero

    Maybe there are no rooms?
  3. Replies
    1
    Views
    1,297

    Re: How to develop building management system?

    Perhaps start with your database design. This will make you think about your system more in depth as you will need to in order to produce a good database design.
    ...
  4. Replies
    6
    Views
    1,540

    Re: Convert Visual Basic Type into C#

    http://lmgtfy.com/?q=c%23+using+structs

    :p
  5. Replies
    7
    Views
    1,500

    Re: enum's numerical value

    The main reason i always set it to zero as above is for the sake of readability
  6. Replies
    7
    Views
    1,500

    Re: enum's numerical value

    If you would like your enum values to start at n>0 you have to specify the value of your first element as it defaults to 0
  7. Replies
    7
    Views
    1,500

    Re: enum's numerical value

    It is worth noting that it is good practise to initialise your first enum value to 0.


    public enum Test2
    {
    Zero = 0,
    One,
    Two
    }
  8. Replies
    2
    Views
    1,667

    Re: image quality needs improvement

    I hope this helps.

    http://stackoverflow.com/questions/4852180/net-cf-bitmap-class-quality-is-poor
  9. Replies
    4
    Views
    2,299

    Re: Position of a click on a picturebox

    Most events will have 'EventArgs' that contains information regarding the event. As you can see below the MouseClick event for a picture box has 'MouseEventArgs' which contains the coordinates of...
  10. Replies
    5
    Views
    1,572

    Re: C# syntax compared to C++

    Nobody has mentioned the similarities between C# and Java.

    http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Java
  11. Replies
    12
    Views
    2,836

    Re: looping throgh foreach loop for collection.

    From your questions it seems like you may need to brush up on your basics.

    http://www.csharp-station.com/Tutorial.aspx
  12. Replies
    12
    Views
    2,836

    Re: looping throgh foreach loop for collection.

    http://lmgtfy.com/?q=c%23+implementing+ienumerable
  13. Thread: excel questions

    by x-ice
    Replies
    2
    Views
    1,064

    Re: excel questions

    With regards to closing Excel try this.

    http://www.dotnetperls.com/kill
  14. Replies
    2
    Views
    1,086

    Re: An overview of Generics

    Is this helpful?

    http://www.c-sharpcorner.com/uploadfile/Ashush/generics-in-C-Sharp-part-i/
  15. Thread: Trackbar

    by x-ice
    Replies
    4
    Views
    1,327

    Re: Trackbar

    You can set a minimum value.

    http://www.dotnetperls.com/trackbar
  16. Replies
    6
    Views
    4,860

    Re: C#.NET .resx files

    What is your question?
  17. Re: Detecting when button is pressed in usercontrol

    If this isn't possible because of the fact that the buttons are in a user control you may need to use delegates.

    http://www.csharp-station.com/Tutorial/CSharp/lesson14...
  18. Re: Detecting when button is pressed in usercontrol

    You would need to add an event handler to each button that when fired will call a method on form1

    E.g. Button1.Click += new EventHandler(Form1_Button1_Click);

    Something like that. I hope this...
  19. Replies
    3
    Views
    1,175

    Re: How to manage timer ?

    http://www.csharp-station.com/Tutorial/CSharp
  20. Replies
    4
    Views
    1,524

    Re: requiring code for c#

    1) Create a combo box and populate it as such:

    a) Get a list of employees from your database and create an Employee object for each setting it's properties as required

    b) Use this list of...
  21. Replies
    4
    Views
    1,524

    Re: requiring code for c#

    Give you code? No chance. You won't learn if I write code for you.

    Try starting here: http://dotnetaid.com/2011/08/23/datagridview-data-binding-in-c-net-winform/
  22. Replies
    4
    Views
    2,845

    Re: what is the meaning of (Guid) in c#

    http://en.wikipedia.org/wiki/Globally_unique_identifier
  23. Thread: office soft

    by x-ice
    Replies
    1
    Views
    4,249

    Re: office soft

    Visual Studio
  24. Replies
    4
    Views
    3,573

    Re: "Resource Sharing" Architecture

    I think a combination of version control and continuous integration will allow you to achieve what you're after.

    Here are some recommendations:

    Version control: http://tortoisesvn.net/...
  25. Replies
    3
    Views
    949

    Re: Recognize pattern

    You should do some background reading before you begin. This is a complex topic.

    http://en.wikipedia.org/wiki/Computer_vision

    With regards to your checkbox problem please post some code so we...
  26. Replies
    4
    Views
    689

    VS 2010 Re: Help needed in math operations (simple)

    Change your OR's to AND's
  27. Replies
    2
    Views
    857

    Re: Mandatory Text Box validation

    Welcome to the wonderful world of Regular Expressions: http://www.mikesdotnetting.com/Article/46/CSharp-Regular-Expressions-Cheat-Sheet
  28. Replies
    2
    Views
    937

    Re: Faulted state stops processing?

    This might be relevant

    http://msdn.microsoft.com/en-us/library/aa355056.aspx
  29. Replies
    6
    Views
    1,378

    Re: [RESOLVED] Exception handling

    As you can see in the inheritance hierarchy section on this page IOException has many exception based on it. You can probably catch these instead.
    ...
  30. Re: need advice on how to safely store db password for c# connection string

    http://en.wikipedia.org/wiki/Triple_DES

    http://www.codeproject.com/Articles/7580/Making-TripleDES-Simple-in-Visual-Basic-NET

    It should be easy enough to convert this VB.net code to C#
  31. Replies
    2
    Views
    803

    Re: tips on beginner for C#

    Think of a little project that you can work on. One that you know will push you.
  32. Replies
    14
    Views
    1,611

    Re: Optimizing many string concat operations

    This is an excellent profiling tool: http://www.jetbrains.com/profiler/
  33. Replies
    2
    Views
    1,020

    Re: spice-up winforms in vs2010

    https://devexpress.com/
  34. Re: Send email with ASP.net application or MS SQL Server ?

    I'd use System.Net.Mail instead of SQL Server to send emails
  35. Re: Data bind DropDownList inside a repeater contol

    You haven't posted much information here so I may be misunderstanding your problem.


    An example of the ItemDataBound event for a repeater:...
  36. Replies
    4
    Views
    3,077

    Re: How to program my own keyboard wedge.

    What do you mean by 'a keyboard wedge'? I can't picture it, can you describe it?
  37. Replies
    14
    Views
    1,264

    Re: [RESOLVED] Newb and VB

    I'll make one last point that will support my arguement. Option Explicit set to ON makes sure that all variables are explicitly declared. This is ON by default, but the whole idea that you CAN turn...
  38. Replies
    14
    Views
    1,264

    Re: [RESOLVED] Newb and VB

    Any good software engineer will know that productivity shouldn't be measured be the amount of code someone can type in a given time period.

    Also in the UK c# developers earn on average £5000 a...
  39. Replies
    14
    Views
    1,264

    Re: Newb and VB

    My advice to you is learn C# instead of VB.net
  40. Replies
    5
    Views
    16,316

    Re: How to insert a new line in a listbox

    lstDisplay.Items.Add(new ListItem("Hello World!"));

    Haven't compiled it but it should work :)
    ...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width