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

Asaf Shay

@Asaf Shay
About
Posts
8
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • problem to enter to fullscreen mode when playing video using addEventListener
    A Asaf Shay

    i have two files , because i have the line document.getElementById(“aa”).addEventListener(‘play’, asaf, false); when i press play i enter to function asaf , but the video not showing in fullscreen mode, but if i remove the line i mention and i just call to asaf() instead then it’s work good . what is the problem with thw line that i mention ? here is the post on my blog so you can see also the files http://asafshay.wordpress.com/2014/06/22/problem-to-enter-to-fullscreen-mode-when-playing-video-using-addeventlistener/[^]

    JavaScript question php com help

  • problem with inheritance
    A Asaf Shay

    this question is from exam .so i don't want to make the code better or different . i only want to know what i ask .

    Java oop help question

  • problem with inheritance
    A Asaf Shay

    i don't know .i take this question from exam

    Java oop help question

  • problem with inheritance
    A Asaf Shay

    package exam804;
    class Base
    {
    public static void foo(Base bObj)
    {
    System.out.println("In Base.foo()");
    bObj.bar();
    }

    public void bar()
    {
    	System.out.println("In Base.bar()");
    }
    

    }

    class Derived extends Base
    {
    public static void foo(Base bObj)
    {
    System.out.println("In Derived.foo()");
    bObj.bar();
    }

    public void bar()
    {
    	System.out.println("In Derived.bar()");
    }
    

    }

    class OverrideTest
    {
    public static void main(String[] args)
    {
    Base bObj = new Derived();
    bObj.foo(bObj);
    }
    }

    why the output is "In Base.foo() In Derived.bar()" and not "In Derived.foo() In Derived.bar()" ?

    Java oop help question

  • problem to remove single marker in google maps api
    A Asaf Shay

    in my example it's show that I put only one marker but lets say I add much more markers and I only want to remove marker in my array in index 0.

    protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
    {
    if (CheckBox1.Checked == true)
    {
    GMap1.addGMarker(markers1[0]);
    }
    else
    {
    //i dont know what to write here

        }
    }
    
    C# database data-structures json help tutorial

  • i use google maps api and can't remove single marker
    A Asaf Shay

    in my example it's show that I put only one marker but lets say I add much more markers and I only want to remove marker in my array in index 0.

    protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
    {
    if (CheckBox1.Checked == true)
    {
    GMap1.addGMarker(markers1[0]);
    }
    else
    {
    //i dont know what to put here

        }
    }
    
    C# database data-structures json tutorial

  • how to right vector of pointers to binary file ?
    A Asaf Shay

    hi,tanks for the comments,my problem is i can write to file and read from it only if my program is running,if i close the program and open again and try to read from the file i get run time error "vector iterator not dereferencable"

    case 'd'://save to file
    {
    file = fopen("final_proj.bin","w+b");
    t = arr.begin();
    fwrite( (*t), sizeof(figure3d), 1, file);
    system("cls");
    cout << "saved to file successfully\n"<

    case 'e'://restore from file
    {
    file = fopen("final_proj.bin" , "r+b" );
    t = arr.begin();
    fread ((*t), sizeof(figure3d) , 1 , file);
    temp.push_back(*t);
    temp[0]->print();
    /*arr.push_back(*t);*/
    fclose(file);
    }

    C / C++ / MFC graphics tutorial question

  • how to right vector of pointers to binary file ?
    A Asaf Shay

    how to right vector of pointers to binary file ? every pointer have diffrent size ,and i need to save to file and restore from file

    C / C++ / MFC graphics tutorial 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