Search Result

Collapse
8 results in 0.0043 seconds.
Keywords
Members
Tags
bug
  •  

  • karan173
    started a topic k&r chapter-1 question, creating a syntax checker
    in C

    k&r chapter-1 question, creating a syntax checker

    hey it is required to create a syntax checker which reports about common errors like unbalanced paranthesis etc. i hav created d following code, which complies finely and produces correct output for generally, but when i enter d source code as input, it produces wrong input, so csn u help me find d bugs:-
    Code:
    #include<stdio.h>
    #define IN 1
    #define OUT 0
    int main()
    {
        int c=0,prevc=0,prevprevc=0,sstate=OUT,dstate=OUT,cstate=OUT,count[256],boo=OUT,i=0,asciieq=0,line=0;
    ...
    See more | Go to post
    Last edited by Stewart Ross; Dec 30 '11, 02:31 PM. Reason: Corrected code tags - from <code> to [code]

  • spunwicked
    started a topic ChooseColorDlg() and Internet Explorer 9

    ChooseColorDlg() and Internet Explorer 9

    Hi,

    For many years the following code has worked perfectly for me to envoke a non persistent colour picker:

    Code:
    dlgHelper.ChooseColorDlg();
    However, in Internet Explorer 9, no dice. It simply doesn't load the colour picker anymore. I have scoured the web searching for anything that may shed some light on this but can't find a thing.

    Any help would be very appreciated.

    In the words...
    See more | Go to post

  • Adding a 2D array to the list. Found a bug and solution, need your explanation

    Working fine:

    Code:
            internal double[] AggregationMethod(List<double[]> listOf_D)
            {
                double[] maxD;
                double[] aggregatedD;
                List<double[]> tempList;
    
                maxD = new double[listOf_D[0].Length];
                
                tempList = new List<double[]>();
    
                for (int i = 0; i < maxD.Length;
    ...
    See more | Go to post

  • mota
    started a topic Issue while calling a method
    in Java

    Issue while calling a method

    Code:
    public class Sample 
    {
    	public int called()
    	{
    			System.out.println(".....I shouldn't be here.....");
    		return 0;
    		
    	}
    	
        public void caller()
    	{
    		System.out.println("It is supposed to be here -->(" + called() + ")<-- Why isn't it working?\n");
    	}
    }
    
    
    public class Test
    {
    	public static
    ...
    See more | Go to post

  • marciojersey
    started a topic Problem with form opacity
    in .NET

    Problem with form opacity

    Hi everyone. I'm having a problem with form opacity in my c# application. I have a window with a vrml viewer com control and whenever the window goes into layered mode, the vrml viewer is rendered onto whatever is behind my window instead of its container window. If my window is hovering over the desktop for example, when the window goes into layered mode, the vrml viewer will be rendered onto the desktop. When this happens, my window obscures the...
    See more | Go to post

  • Nicodemas
    started a topic execCommand Trouble

    execCommand Trouble

    (Let's get this out of the way -- I am not a JavaScript expert.)

    I am toying with a rich text editor of my own. It's just for experimentation .

    I have a DIV with contentEditable =true.

    I tried writing a script like the following:

    Code:
    var contentEditZone = document.getElementById('rte') // the DIV with contentEditable=true
    contentEditZone.execCommand("InsertImage", true);
    ...
    See more | Go to post

  • Vista reformat and reinstall causes .NET framework problems

    i had my PC format recently, and installed windows Vista home premium, the moment i turned on my PC i had this
    problem:

    Unhandled exception has occurred in your application, If you click Continue, the application will ignore this error and attempt to continue.
    if you click Quit, the application will close immediately.

    Argument 'Year' is not valid value.

    See the end of this message for details on...
    See more | Go to post

  • slapsh0t11
    started a topic CountWords Assn.
    in Java

    CountWords Assn.

    I would greatly appreciate it if any one of you kind souls could take some time to help me out with an interesting bug in my program. I have tried many times to find the source of the problem unsuccessfully and believe that a second set of eyes will do wonders. Thanks in advance for reading my post.

    *************** *************** ***

    So, after quite some work, I was able to get this program to run (I am a bit of a...
    See more | Go to post
Working...