Click here to Skip to main content
15,899,825 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: FlowLayoutPanel Controls Added / Ordering Issue Pin
Luc Pattyn27-Aug-09 7:52
sitebuilderLuc Pattyn27-Aug-09 7:52 
GeneralRe: FlowLayoutPanel Controls Added / Ordering Issue Pin
EliottA27-Aug-09 7:56
EliottA27-Aug-09 7:56 
GeneralRe: FlowLayoutPanel Controls Added / Ordering Issue Pin
Luc Pattyn27-Aug-09 8:17
sitebuilderLuc Pattyn27-Aug-09 8:17 
GeneralRe: FlowLayoutPanel Controls Added / Ordering Issue Pin
EliottA27-Aug-09 8:19
EliottA27-Aug-09 8:19 
QuestionDevice Context Problems Pin
o m n i27-Aug-09 6:01
o m n i27-Aug-09 6:01 
QuestionAccess the CByte function Pin
Steve-Co27-Aug-09 5:42
Steve-Co27-Aug-09 5:42 
AnswerRe: Access the CByte function Pin
o m n i27-Aug-09 5:56
o m n i27-Aug-09 5:56 
AnswerRe: Access the CByte function Pin
DaveyM6927-Aug-09 12:15
professionalDaveyM6927-Aug-09 12:15 
I don't think you can. I would imagine the function would be something like this in C# - or you can modify this to work as required:
C#
public static byte CByte(object expression)
{
    byte result = 0;
    if (expression is IConvertible)
    {
        try
        {
            result = Convert.ToByte(expression);
        }
        catch
        {
            // not interested in exceptions
        }
    }
    return result;
}


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

AnswerRe: Access the CByte function Pin
Dave Kreskowiak27-Aug-09 12:49
mveDave Kreskowiak27-Aug-09 12:49 
GeneralRe: Access the CByte function Pin
Dave Doknjas27-Aug-09 14:25
Dave Doknjas27-Aug-09 14:25 
Questionlinks in DataGridViewLinkColumn Pin
fabrice.leal27-Aug-09 0:41
fabrice.leal27-Aug-09 0:41 
AnswerRe: links in DataGridViewLinkColumn Pin
Henry Minute27-Aug-09 1:33
Henry Minute27-Aug-09 1:33 
QuestionElimination Draw System Pin
Member 437454227-Aug-09 0:33
Member 437454227-Aug-09 0:33 
AnswerRe: Elimination Draw System Pin
Henry Minute27-Aug-09 2:02
Henry Minute27-Aug-09 2:02 
GeneralRe: Elimination Draw System Pin
Member 437454227-Aug-09 13:02
Member 437454227-Aug-09 13:02 
Questionproblem with drawing and mdiforms Pin
Shaahinm26-Aug-09 23:09
Shaahinm26-Aug-09 23:09 
AnswerRe: problem with drawing and mdiforms Pin
Shaahinm26-Aug-09 23:55
Shaahinm26-Aug-09 23:55 
GeneralRe: problem with drawing and mdiforms Pin
Dave Kreskowiak27-Aug-09 3:42
mveDave Kreskowiak27-Aug-09 3:42 
Questionstopping system .threading.timer Pin
Ebube26-Aug-09 22:20
Ebube26-Aug-09 22:20 
AnswerRe: stopping system .threading.timer Pin
Johan Hakkesteegt26-Aug-09 22:53
Johan Hakkesteegt26-Aug-09 22:53 
QuestionCreate Graph using VBA with the data?? Pin
veon cheng26-Aug-09 21:16
veon cheng26-Aug-09 21:16 
AnswerRe: Create Graph using VBA with the data?? Pin
Dave Kreskowiak27-Aug-09 3:37
mveDave Kreskowiak27-Aug-09 3:37 
QuestionHow realtime application works? Pin
Gagan.2026-Aug-09 17:48
Gagan.2026-Aug-09 17:48 
AnswerRe: How realtime application works? Pin
Dave Kreskowiak27-Aug-09 3:36
mveDave Kreskowiak27-Aug-09 3:36 
QuestionNeed help detecting keypress outside of form vb2008 Pin
RyJaBy26-Aug-09 4:12
RyJaBy26-Aug-09 4:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.