CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: remojr76

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    998

    problem with printf in loop

    I am having trouble with the printf in this function:


    void print_orig_array(char string_array[MAX_PEOPLE][NAME_SIZE], int ages[MAX_PEOPLE], int length)
    {
    int counter;
    printf("Original...
  2. Replies
    4
    Views
    2,153

    Re: Compiler error with cout object

    Thanks.

    Sorry I posted that way because I thought I was logically explaining my issue, but I see your point!

    Quit a difference with the array, instead of an out of bounds exception, I got an...
  3. Replies
    4
    Views
    2,153

    Compiler error with cout object

    Hello, I am asp.net C# developer. I decided to tackle C++, so I started today. This is probably something simple I am sure but I cannot figure out what the problem is. I would appreciate if someone...
  4. Replies
    4
    Views
    6,959

    Re: Help using SQL in C#

    Personally, I think you should go for the gusto! The best method is to use the EF(Entity Framework) code first approach.
    you create you POCO(Plain O'le CLR Objects) classes. You can use...
  5. Replies
    7
    Views
    1,757

    Re: How to Make Custom Applications

    Why would you? One of the tenants of OOP is code re-use. There is no need to re-invent the wheel. Now if you want to make a better wheel.....you can extend the original wheel.
  6. Replies
    1
    Views
    1,372

    Re: How to pass object values to method call

    I'll help point you in the right direction:

    1st when you say:

    You are not understanding the concept of creating methods that accept parameters and method return types.


    public long Add()...
  7. Replies
    3
    Views
    685

    Re: Updating the current window on demand

    Set your control to visibility collapsed:


    mycontrol.Visibility = Visibility.Collapsed;


    then use a story board. after it completes use an event handler and set the visibility to visible:
  8. Re: C#/Java - Execute an onclick through C# code (WebBrowser obj)

    two questions:

    1.is this within an ASP.NET page?
    2.are you looking to do this client or server side?
  9. Thread: main method

    by remojr76
    Replies
    5
    Views
    1,010

    Re: main method

    your question is a little vague. And the answer would be enormous. What exactly are you trying to accomplish?
  10. Replies
    6
    Views
    1,743

    Re: class extension

    could you supply the code that's giving you trouble and the result.
  11. Thread: Formatting

    by remojr76
    Replies
    3
    Views
    1,044

    Re: Formatting

    You can use the String.format() method to format your output. It will take as many arguments as "objects" you want to print.

    Here is an example:



    double num = 2.2387654230928;
    ...
  12. Replies
    1
    Views
    1,135

    Call method(s) within the same class

    I am new to java. I am trying to create 3 methods within a class and then call them in that same class. I am not creating or calling correctly. Please help. Here's my code:



    import java.util.*;...
  13. Replies
    2
    Views
    1,683

    beginner question about casting

    I am trying to make a program that converts a decimal into hexadecimal. It works in the sense that it returns the correct int's but how do I cast my int's that are between 10-15 to A-F as a string....
  14. Replies
    0
    Views
    9,637

    Modal popup won't stay open

    I have a modal popup with a keypad, but when you click the first key it also closes the panel. How can I keep it open until the close button is clicked?



    thanks in advance!
  15. Replies
    1
    Views
    572

    Re: Rounding Problem

    I have the answer to this one.


    TextBox1.Text = output4ToString(".00");
  16. Replies
    1
    Views
    572

    [RESOLVED] Rounding Problem

    Visual Web Developer 2010

    In some cases my TaxTxtBox displays a number that has no remainder. When my TotPriceTxtBox has a value with no remainder it still displays to the 100th place "34.00". ...
  17. Replies
    4
    Views
    1,126

    Data format constraint

    I am working on a Point of sale module for a web application. I need help ensuring my data stays in a money format ie 0.00



    Here's my code:


    01
    Double res =...
  18. Problem with added table in App data Db ASPNETDB.MDF

    I am new to C#, ASP.NET, SQL, and LINQ. I am a complete novice trying to find a way to finish my first Web app. I added a table to the ASPNETDB.MDF. I named it User_Signup. I added the fields:...
  19. Replies
    1
    Views
    1,213

    Re: CSS hover effect question

    I came up with an easier fix. If anyone wants it here is an answer to the question I posed.


    If you put hover on anchor tags, like a and a:hover styles, then you may want for some anchor tags...
  20. Replies
    1
    Views
    1,213

    [RESOLVED] CSS hover effect question

    Is it possible to exclude just a single link for a CSS hover effect?
  21. Replies
    3
    Views
    1,611

    Re: ASP.NET Security question

    I figured out a much easier solution to my problem. So I am marking this one resolved.
  22. Replies
    3
    Views
    1,611

    Re: ASP.NET Security question

    Well I also added an additional modal popup extender and set the target control ID equal to the login status control ID. when in logout view the login link will open the modal popup to login, but...
  23. Replies
    3
    Views
    1,611

    Re: ASP.NET Security question

    I almost forgot. Would I tie in a login status control the same way?
  24. Replies
    3
    Views
    1,611

    [RESOLVED] ASP.NET Security question

    I have a master page where I have a login button in the header. That button opens up a modal panel, using an ajax control, modal popup extender. I put my login control in that modal popup. When I...
  25. Replies
    5
    Views
    2,612

    Re: DataGridView in ASP.NET

    You could do what your describing using a code first method using an entity framework object. Watch this video and see if it helps.
    ...
Results 1 to 25 of 41
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured