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
C

Caio Kinzel Filho

@Caio Kinzel Filho
About
Posts
45
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Getting Count(*) ,SQL Server query for below requirement..
    C Caio Kinzel Filho

    you need to use HAVING... something like: select sum(val)/count(ps) assessment from sample group by village HAVING sum(val)/count(ps) > 60 let me know if it helps

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Database database sql-server sysadmin tutorial

  • SQL select based on Boolean values
    C Caio Kinzel Filho

    I guess you will not be able to escape from a select statement...maybe you could try to use a stored procedure for that, or try to optimize the select, but not without a select I think

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Algorithms database

  • OutOfRangeException
    C Caio Kinzel Filho

    seems like your grdEditRow.Cells doesn't have a cell with index = 2

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    C# database help tutorial question

  • Problems Calling A Function
    C Caio Kinzel Filho

    The link doesn't work for me...send it to my email and I will take a look...caiokf@gmail.com Regards

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Visual Basic debugging help tutorial question

  • Dropdownlist items keep duplicating [modified]
    C Caio Kinzel Filho

    can you test if your dropdownlist has items before adding new items? otherwise skip adding... other than that, if AutoPostback of the dropdownlist is set to false, it wont refresh the page

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET help question

  • Problems Calling A Function
    C Caio Kinzel Filho

    There is no way the CInt(ClickedLabel.Name.Substring(0, 4))).Name could have changed between your calls, and have no valid data in your call using getCurrentDayOkWeek ??

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Visual Basic debugging help tutorial question

  • Problems Calling A Function
    C Caio Kinzel Filho

    I did this:

    MsgBox(getlabel(DayOfWeek.Sunday, 1))
    MsgBox(getlabel(getCurrentDayOfWeek("su"), 1))
    

    with your function and (for shortness..):

        Function getlabel(ByVal day As DayOfWeek, ByVal calendarRow As Integer) As String
            Select Case day  'Get a label name
                Case DayOfWeek.Sunday
                    Select Case calendarRow
                        Case 1
                            Return "Sunday"
                    End Select
                Case DayOfWeek.Monday
                    Select Case calendarRow
                        Case 1
                            Return "Monday"
                    End Select
                Case DayOfWeek.Tuesday
                    Select Case calendarRow
                        Case 1
                            Return "Tuesday"
                    End Select
            End Select
        End Function
    

    And it works...other than that...i think you will have to post your entire code...

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Visual Basic debugging help tutorial question

  • Problems Calling A Function
    C Caio Kinzel Filho

    can you post your getCurrentDayOfWeek function? I tryied here and works fine...

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Visual Basic debugging help tutorial question

  • Problems Calling A Function
    C Caio Kinzel Filho

    Is your return type of getCurrentDayOfWeek(), DayOfWeek? In which point did you try getCurrentDayOfWeek(dayShortName) in the debugger?

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Visual Basic debugging help tutorial question

  • look for project specification to test my c# knowledge
    C Caio Kinzel Filho

    you dont need to bid, just look for projects in c#, get their specs and try for your own, no commitments

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    C# csharp com learning

  • How to access global.asax values in class file
    C Caio Kinzel Filho

    Application variables can be accessed in separate .cs files using: HttpContext.Current.Application[key]

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET csharp help tutorial

  • Freelance project
    C Caio Kinzel Filho

    or www.getafreelancer.com

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    Work Issues career

  • How to access global.asax values in class file
    C Caio Kinzel Filho

    Why not to use application variables? like: Application[key] = value;

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET csharp help tutorial

  • look for project specification to test my c# knowledge
    C Caio Kinzel Filho

    take a look at sites like www.getafreelancer.com and www. rentacoder.com

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    C# csharp com learning

  • Using Div and Span tags instead of a table layout
    C Caio Kinzel Filho

    I'm no expert with layout design, but why dont you put two divs with float left and float right?

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET css

  • Asp.net
    C Caio Kinzel Filho

    Its in C#, but you could easily realize how to do it in vb.

    MailMessage yourEmail = new MailMessage(FROM_EMAIL_ADDRESS, TO_EMAIL_ADDRESS);
    yourEmail.Subject = "Your Email Subject";
    SmtpClient smtpServer = new SmtpClient(SMTP_SERVER);
    smtpServer.Credentials = new NetworkCredential(SMTP_USER, SMTP_PASSWORD);
    smtpServer.Send(yourEmail);
    

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET question csharp asp-net

  • Assigning Generic Type during runtime
    C Caio Kinzel Filho

    If the types are not totally random, you could use some kind of factory method to instantiate it...if totally random, I think the easiest way is to use reflection, or something like this article

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    C# design help question

  • C Code Parser
    C Caio Kinzel Filho

    Hi, take a look at Irony .NET. you can find references here in CP. It's well worth to take a look, I think it does what you want.

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    C# help question

  • USING HTML WEB TEMPLATE IN ASP .NET?
    C Caio Kinzel Filho

    Are you familiar with asp.net master pages?

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET csharp html question

  • javascript call on asp.net
    C Caio Kinzel Filho

    Hi, why don't you use an update panel and do it from server side?

    Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com

    ASP.NET csharp javascript asp-net database help
  • Login

  • Don't have an account? Register

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