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
A

Alex UEA

@Alex UEA
About
Posts
29
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • [Message Deleted]
    A Alex UEA

    would that be for off road use?

    C#

  • MouseDown Event? [modified]
    A Alex UEA

    could you indicate that each picture box has been selected by highlighting in some way when it is clicked (and released). Clicking it again would unselect it. Then when selection of all boxes is complete itterate through picture boxes and if highlighted/selected do whatever it is you want to do? I guess that involves a selection stage and then an action upon the selected stage rather than happening all in one as I think you wanted

    C# help question learning

  • License Key generation.
    A Alex UEA

    I'm sure activelock website has examples, look at those. it's a long, long time since I used vb6 and I'm in rush to go back there.

    Visual Basic help announcement

  • propertise inherited
    A Alex UEA

    If I understand you, which I doubt generate a VisibleChanged Event for your TextBox

    private void aTextBox_VisibleChanged(object sender, EventArgs e)
    {
    aLabel.Visible = aTextBox.Visible;
    }

    C# question

  • License Key generation.
    A Alex UEA

    I have a vague recollection of something called Activelock for VB6. Have google for for that

    Visual Basic help announcement

  • Control Hardware through Software
    A Alex UEA

    For USB based control and measurement of external devices I'm a big fan of the miniLAB 1008[^] 2 10 bit analog outputs 4 12 bit analog inputs or 8 11 bit single ended 28 dio Slight overkill for just turning one device on and off (for which you would need to use the miniLAB to switch a relay), but should you progress to analog contol and measurement or decide to control several devices it's pretty cheap and very easy to set up and use. No doubt there are loads of other similar bits of kit - I've just had a lot of success with these.

    C# tutorial csharp hardware data-structures regex

  • using a variable on two different forms
    A Alex UEA

    http://www.codeproject.com/KB/dotnet/passingvaluesbetweenforms.aspx[^]

    C# question tutorial

  • What Sci-Fi planet would you like to live on?
    A Alex UEA

    Spatterjay http://www.sfreviews.com/docs/Neal%20Asher_2002_THE%20SKINNER.htm[^]

    The Lounge com question

  • yesterday's time
    A Alex UEA

    How about

    //DateTime d1 = first date
    //DateTime d2 = second date
    if (DateTime.Compare(d1.Date, d2.Date) == 0)
    {
    Console.WriteLine("Same Date");
    }

    ah just noticed answer was already in thread but off bottom of my browser

    C# help question

  • Notepad Replacement
    A Alex UEA

    I've always favoured notetab http://www.notetab.com/ntl.php[^] Quoting from the help NoteTab automatically detects the format (DOS/UNIX/Mac/Unicode) of a text file when you open it. During the loading process, UNIX and Mac files are converted to the DOS/Windows format. Through the "Options | Documents | Save As" setting, you can determine what format should be used when the document is saved. If you choose "Original", the original format is restored. Alex

    The Lounge question

  • passing value from one form to another
    A Alex UEA

    form_month needs to know about form_main In form_month:- Public Class form_month Private m_FormMain As form_main Public Sub New(ByRef formMain As form_main) MyBase.New() m_FormMain = formMain 'setting a ref to the orig form form_main ' This call is required by the Windows Form Designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. End Sub In form_main:- Public Class form_main Dim m_form_month As New form_month(Me) in the code for the submit button to open form_month:- m_form_month.Show() in the code for the load event for form_month read the value of tbid:- Private Sub form_month_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim contentsOftbid As String contentsOftbid = m_FormMain.tbid.Text hope this helps Alex

    Visual Basic question csharp asp-net database

  • Button Shape
    A Alex UEA

    Here is how Gary Perkin made circular buttons.

    C# help

  • HOW TO TELL AMOUNT IN WORDS
    A Alex UEA

    deja vu[^] are you in the same class as this guy? PS nobody upset 'UltraCoder' by pointing out that the thread contains a solution of sorts

    Visual Basic tutorial csharp

  • Fill a pictureBox with linear gradient
    A Alex UEA

    elsombreron wrote:

    P.S. Out of curiousity, does anyone know how to create custom shaped buttons?e.g. instead of having the window close button as a square having a button that's a half-moon shape or something. Cheers.

    round buttons[^] Alex

    C# help csharp tutorial question

  • SysTray
    A Alex UEA

    Vasildb wrote:

    Heeeeeeeeeeeelp.

    I think that the 'e' must be sticking on your keyboard. I needed to do this recently myself and rather radically I did a search for it on Google. To save you spending valuable seconds doing the same, here is the url that I found. http://www.codeguru.com/csharp/.net/net_general/tipstricks/article.php/c6933/[^] regards Alex PS you should try Google sometime it's surprisingly useful!

    C# tutorial

  • Where to post demo project ?
    A Alex UEA

    http://www.codeproject.com/info/submit.asp[^] or maybe I'm missing your point

    C# csharp com question

  • Help me in save values in app.config and retrieve it .
    A Alex UEA

    How about using Settings? http://www.codeproject.com/csharp/UserSettings.asp[^]

    C# help csharp tutorial workspace

  • how to draw a graph?
    A Alex UEA

    As you are most probably already aware, but I wasn't certain so I thought I would just say, you can download version 4.3.5 from the SourceForge project site[^] which works with .NET 1.1.

    Visual Basic question data-structures tutorial

  • how to draw a graph?
    A Alex UEA

    It may well be that you want/need to do this from scratch, if, on the other hand, you don't want to reinvent the wheel http://www.codeproject.com/csharp/ZedGraph.asp

    Visual Basic question data-structures tutorial

  • Determine integer?
    A Alex UEA

    Dave Kreskowiak wrote:

    BTW: In your version, the function will only work for values with the limits of an Integer. Which is probably fine for most cases, but if there is no specification, you're making an assumption that it will work for ALL of his cases. That leads to hard to detect bugs and why I put the note in the code that I did.

    thank you for the pointer (of the non coding variety):)

    Visual Basic 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