Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

All about programming (Specially c, c++, VB, Java)

Hello guys. may tanong lang sana ako. merong binigay ang boss ko sakin na service address link. at nung pinuntahan ko yung link na sa browser ko. ito ang sabi nya. "You have created a service.

To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:

svcutil.exe https://test-services.com/Service.svc?wsdl

This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service."

tapos ang ginawa ko is. ginenerate ko na ang service na yan using scvutil.exe gaya ng sabi nya. at may nakuha akong 2 files na nagenerate nya, isang .cs file at isang output.config na file, ngayon ang tanong ko lang is. anong gagawin ko next? nagdedevelop ako ng android app with phonegap. at jscript ang gamit kong language. sana po may makatulong sakin. thanks :)
 
Hello guys. may tanong lang sana ako. merong binigay ang boss ko sakin na service address link. at nung pinuntahan ko yung link na sa browser ko. ito ang sabi nya. "You have created a service.

To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:

svcutil.exe https://test-services.com/Service.svc?wsdl

This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service."

tapos ang ginawa ko is. ginenerate ko na ang service na yan using scvutil.exe gaya ng sabi nya. at may nakuha akong 2 files na nagenerate nya, isang .cs file at isang output.config na file, ngayon ang tanong ko lang is. anong gagawin ko next? nagdedevelop ako ng android app with phonegap. at jscript ang gamit kong language. sana po may makatulong sakin. thanks :)

The service is most likely a COM object. I'm assuming the .cs file produced is a C# code that are just declarations of function prototypes, or interfaces, along with identifiers for the COM object. Kung puro function prototypes nga ang laman, yung mga functions na yun ang implemented sa remote COM object and sila yung kelangan mo i-invoke sa jscript code mo.

I've never done COM interop with jscript so I can't really help you with that part.

Try the example from this site, it might help.
http://blogs.msdn.com/b/sheetalkama...ing-functions-of-com-object-from-jscript.aspx
 
hello ! can you help me by including the pause and continue function on this program. it is a timer :))

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <windows.h>
#include<iostream>

using namespace std;

void stopwatch();

int main()
{
char cChar;
do
{
cout<<"\n\n\n\n\n\n\n\n\t\t\t A Simple Stopwatch Program\n";
cout<<"\n\t\t\t\t Menu:\n";
cout<<"\t\t\t Press 's' to start/reset stopwatch.\n";
cout<<"\t\t\t Press 'x' to exit.";
cout<<"\n\n\t\t\t Place input here: ";
cin>>cChar;

if (cChar == 's' || cChar == 'S')
stopwatch();

if (cChar == 'x' || cChar == 'X')
exit(1);

system("cls");
}
while (cChar != 's' || cChar !='S' || cChar != 'x' || cChar != 'X');

getch();
return 0;
}

void stopwatch()
{
int hh,mm,ss,ms,z;
char option;
hh=00;
mm=00;
ss=00;
ms=00;
z=1;


while(hh<=24 && z==1) //since there are 24 hours in a day
{ mm=0;
while(mm<=59 && z==1) //since there are 60 minutes in an hour
{ ss=0;
while(ss<=59 && z==1) //since there are 60 seconds in a minute
{ ms=0;
while(ms<=10 && z==1)
{
if(kbhit() != 1)
{
ms++;
Sleep(50);
system("cls");
cout<<"\n\n\n\n\n\n\n\n\n\t\t\t\t";
cout<<hh<<" : "<<mm<<" : "<<ss<<" : "<<ms;
cout<<"\n\t\t\t Choose from the option below: \n";
cout<<"\n\t\t\t [P] - Pause "<<endl;
cout<<"\n\t\t\t [C] - Continue "<<endl<<endl;
cout<<"\n\t\t\t Enter Your Choice: ";

}
else
z=0;
}
ss++;
}
mm++;
}
hh++;
}




cout<<"\n\n\t\t Press any key to return to the main menu.";
getch();
getch();
}

http://www.cplusplus.com/forum/beginner/317/
 
Mga sir panu mo i konek yung masql sa vb6.0 pa help naman po yun po kase ang gagamtin n database para daw sa new project namen sa school eh! sana po matulungan nyu ako.

mraming salamat po! :praise:
 
Mga sir, pano po mag loop ng background sa VB6.0? para po kasi sa game na ginagawa ko pra sa thesis. race po xa.meron po ba marunong dito?
beginner po aq eh.sna matulungan nyo aq.. kailangan n kailangan na. :pray:

:thanks: :thanks:
 
gusto ko ring matuto nyan programing ts, ask ko lang sana kung ano bang mga software ang kailangan para maka gawa ng programs ung kahit pang java lang sana
 
"string FirstName, LastName;" eto po yung hindi mabasa ng compiler ko. I'm using Borland C++ at nasa ibaba po yung program ko.
Code:
#include <iostream.h>
#include <conio.h>




main()
{
	[COLOR="Red"][B] string FirstName, LastName;[/B][/COLOR]

	 cout << "Enter first name: ";
	 cin >> FirstName;
	 cout << "Enter last name: ";
	 cin >> LastName;
	 cout << "\n\nFull Name: " << FirstName << " " << LastName;

	 cout << "\n\nPress any key to continue...";
	 getch();
	 return 0;
}

Bakit po kaya Hindi siya marecogize at hindi ko maparun ang program ko using that string?..HELP naman po sa mga masters in programming.:help::help:
:pray::pray:
 
:help:sir pwede po ba mkahingi ng algorithm ng CPU scheduling with gantt chart or kung pwde pati codes nrn :salute:

sample out put.


429310_2003381501306_1746688639_978382_418741190_n.jpg


FCFS plang po nagagawa ko ung SJF SRT round robin at priority ang hirap po eh pa help. send ko din po ung souce code para ma debug. or ma continue. thnx in advance.

t.s ung email mo po pala. para ma send ung mismong file:praise::help:
 
patulong po. a program that will convert a number to words without using modulus in turbo c .

FINAL PROJECT PO NAMIN!
kaya lang sana pero kung pwedeng gumamit ng modulus.

SALAMAT PO NG MARAMI! PLEASE PO! :pray:
 
hi sir. i need the pause and resume function i think that the one that i was looking for is not on that link..

pause and resume should be similar to stop and start functions in that link. You just need to modify it a little bit.
 
:help:sir pwede po ba mkahingi ng algorithm ng CPU scheduling with gantt chart or kung pwde pati codes nrn :salute:

sample out put.


429310_2003381501306_1746688639_978382_418741190_n.jpg


FCFS plang po nagagawa ko ung SJF SRT round robin at priority ang hirap po eh pa help. send ko din po ung souce code para ma debug. or ma continue. thnx in advance.

t.s ung email mo po pala. para ma send ung mismong file:praise::help:

sjf and priority should have almost the same algorithm, only difference in sjf you need two queues one for the outgoing processes while the other for incoming processes (they need to be separate because you always need to examine each process in the 2nd queue while you just dispatch everything in the 1st). for round robin you'll need at least 3 queues. you can random insert each incoming process to any of the queues. you put those 3 queues in a loop while dequeueing the front items(process) for each queue.
 
sjf and priority should have almost the same algorithm, only difference in sjf you need two queues one for the outgoing processes while the other for incoming processes (they need to be separate because you always need to examine each process in the 2nd queue while you just dispatch everything in the 1st). for round robin you'll need at least 3 queues. you can random insert each incoming process to any of the queues. you put those 3 queues in a loop while dequeueing the front items(process) for each queue.


:thumbsup:thnx sa idea sir..:praise::clap:
 
patulong po. a program that will convert a number to words without using modulus in turbo c .

FINAL PROJECT PO NAMIN!
kaya lang sana pero kung pwedeng gumamit ng modulus.

SALAMAT PO NG MARAMI! PLEASE PO! :pray:

hanggang 999 lang ang kaya kapag hindi gagamit ng modulo...
 
pause and resume should be similar to stop and start functions in that link. You just need to modify it a little bit.

i dont know how to modify it. can u help me doing that given the codes that i posted before ? :) thanks !
 
may sample po kau ng program na payroll,,pwedeng mag add,edit,delete? tas may sss,philhealt at witholding tax,kapag single ang status lalabas if ilan ang with holding tax nya..???
 
sir pano po ba inetwork ang system ng vb6 sa 3 or more pc?
ang gamit ko po adodc kaso po may nakita akong error nung sa 2pc ko ninetwork


saka may isa pa akong ask sir pwd po ba sa adodc ung application path?meron po ba kayong alam na tutorial para sa application path about sa "adodc"

:thanks: in advance
 
Magandang araw mga IT experts!

Possible po kaya na makacreate ng application na kung saan, pag may inenter akong link, eh may makukuha siyang certain parts ng link na yun, sabay maisasave sa isang text file? Halimbawa.


Ang link na icoconvert ko ay ito:

http://205.196.120.91/n0un1snun9rg/37pampj252ahhf3/Persona_4_The_Animation_11_720p.mkv

then, ang output niya ay ganito:

http://rss2search.com/protect/ignore2.php?match=205.196.120.91/&site=http://205.196.120.91/n0un1snun9rg/37pampj252ahhf3/Persona_4_The_Animation_11_720p.mkv

=====================================
Obviously, for downloading purposes ito sa mediafire na may problem sa Hotspot VPN. Naisip ko na gumawa ng sarili kong application na makakagawa ng ganyan, kea magkandapagod akong magcopy-paste. :excited::excited:

Parang simple lang yung program, pero sa coding ako mahina, kasi hindi naman ako IT stude/expert.

======================================

http://rss2search.com/protect/ignore2.php?match=205.196.120.91/&site=http://205.196.120.91/n0un1snun9rg/37pampj252ahhf3/Persona_4_The_Animation_11_720p.mkv

Yung red sa link na ito yung kukunin mula sa original link na naka darkgreen. Possible po kaya? Anong magandang reference para makagawa po ako ng ganitong program? Fast learner naman po ako. hehe.

thank you sa mga sasagot! Sana po may magreply..:pray::pray:
 
Back
Top Bottom