do it still not playing
Trioum
do it still not playing
Trioum
I insert flash player activex on the MFC application and write the code my_flash.put_Movie("C:\file.flv"); my_flash.put_Playing(true) but file is not playing . also I want to display the controls of flash player activex . how can I do this
Trioum
It is already set , if I installed vcredist_x86.exe then exe run , if uninstall then exe do not run . i am using Use Standard Windows Libraries in release mode
Trioum
Where I found this setting
Trioum
I build application using visual studio 2005 in release mode without MFC. but I need to install vc2005 run time to run the application . is there any settings in visual studio so that without installing vc2005 run time I can run my application .
Trioum
how it is possible to find out the running exe handle and name from the prcess tab of task manager programmatically
Trioum
1 is return value
Trioum
GetNetworkParams failed in windows server 2003
Trioum
I tried but only able to get MAC address. not understand to get IP address and not able to find active network .
Trioum
On my computer I have various network connection wi-fi , ethernet , USB . Now I want to know the mac address and IP address of the connection and the Active network i.e. which is enabled
Trioum
I want to create Menu,Menu item , POP up menu and table like gui using MIDP 2.0 . How it is possible
Trioum
I Want to change foreground color, background color ,and font of text of JTable cell. How can I achieve that .
Trioum
what is the equivalent package on swing in j2me
Trioum
check it again it is producing wrong result
Trioum
there is difference i getting when writing using c and java following lines shows the difference when I use the c code struct _Foo { int one; int two; char buffer[50]; } ; struct _Foo foo; memset(&foo,'0/',sizeof(_Foo)); foo.one = 2; foo.two = 3; strcpy(foo.buffer,"my name is trioum"); FILE *fp; fp = fopen("cfile.txt","wb"); if(fp) { fwrite(&foo,sizeof(struct _Foo),1,fp); fclose(fp); } result in the file I get my name is trioum ////////////////////////////////// but when I write the same code in java public static class _Foo implements Serializable { public int one; public int two; public String buffer = new String(new char[50]); } ObjectOutputStream outputStream = null; try { outputStream = new ObjectOutputStream(new FileOutputStream("javafile.txt")); _Foo Foo = new _Foo(); Foo.one = 2; Foo.two = 3; Foo.buffer = "my name is trioum"; outputStream.writeObject(Foo); } catch (FileNotFoundException ex) { ex.printStackTrace(); } catch (IOException ex) { ex.printStackTrace(); } I get the result in javafile.txt ¬í sr Main$_FooDpÕGT¯_ I oneI twoL buffert Ljava/lang/String;xp t my name is trioum But I want the result as seen in cfile.txt by c code How can I solve the problem
Trioum
wont compile
Trioum
can you send me the piece of code for writing class content to the file
Trioum
i want to write this object field values in file
Trioum
still not able to write in the file
Trioum
Actually I have I programme which write in file with some fixed header in files . which is in form of structure like struct _somename { int somenuml; int somenum2; int somenum3; char databuffer1[100]; // very long struct }; // initialize struct struct _somename mystruct; mystruct.somename = 1; //------ // ans finaly open some file and write to file fwrite(&mystruct,1,sizeof(struct _somename)); Now I want to convert same c programme in java due to some technical reason
Trioum