PostId
int64
13
11.8M
PostCreationDate
stringlengths
19
19
OwnerUserId
int64
3
1.57M
OwnerCreationDate
stringlengths
10
19
ReputationAtPostCreation
int64
-33
210k
OwnerUndeletedAnswerCountAtPostTime
int64
0
5.77k
Title
stringlengths
10
250
BodyMarkdown
stringlengths
12
30k
Tag1
stringlengths
1
25
Tag2
stringlengths
1
25
Tag3
stringlengths
1
25
Tag4
stringlengths
1
25
Tag5
stringlengths
1
25
PostClosedDate
stringlengths
19
19
OpenStatus
stringclasses
5 values
unified_texts
stringlengths
47
30.1k
OpenStatus_id
int64
0
4
6,949,691
08/04/2011 23:11:24
827,300
07/03/2011 22:03:02
1
0
Need to build a non copyrighted Vairants.pas file:- whats in it
I have Delphi 4 and need to run MySQL database that need the support of Variants.pas I just need to know what is in the file so i can make a vairants.pas File up method name and how the method is set up to keep standards the same and then I will place it on torry pages for others. If obvius its heavaly copy writted by our manufature I've up dated everything else freeandnil............... Can some one help please Email :- lexdeanair at hotmail.com Thanks in advance.
delphi
delphi-7
null
null
null
08/05/2011 19:59:41
not a real question
Need to build a non copyrighted Vairants.pas file:- whats in it === I have Delphi 4 and need to run MySQL database that need the support of Variants.pas I just need to know what is in the file so i can make a vairants.pas File up method name and how the method is set up to keep standards the same and then I will place it on torry pages for others. If obvius its heavaly copy writted by our manufature I've up dated everything else freeandnil............... Can some one help please Email :- lexdeanair at hotmail.com Thanks in advance.
1
1,774,053
11/21/2009 00:27:38
212,188
11/16/2009 16:17:23
18
6
Change IIS 5 virtual directory in Post-Build Event in Visual Studio
I'm running into an issue where I need to be able to change the target directory path that my IIS 5.0 virtual directory is pointing to from within a Post-Build block in Visual Studio 2008. If you're not familiar with Post-Build events they basically just take batch commands. So if you know of a batch command for IIS 5.0 in XP Pro that can change the target directory that a virtual directory is pointing to that would really help. Thanks in advance!
iis
xp
post-build-event
batch
null
null
open
Change IIS 5 virtual directory in Post-Build Event in Visual Studio === I'm running into an issue where I need to be able to change the target directory path that my IIS 5.0 virtual directory is pointing to from within a Post-Build block in Visual Studio 2008. If you're not familiar with Post-Build events they basically just take batch commands. So if you know of a batch command for IIS 5.0 in XP Pro that can change the target directory that a virtual directory is pointing to that would really help. Thanks in advance!
0
8,388,782
12/05/2011 16:51:09
649,737
03/08/2011 11:47:33
120
0
Basic C++ function, can I make it work?
So, I'm reading Schildt's book 3rd edition about C++ and I'm doing all examples, but I have some PHP background and when I tried some stuff it occurs that it can not be compiled this way.I saw the Schildt's solution, so I'll give what I've tried to do and how it's done in the book, what I need to know, is there any way to make it work adjusting my function? Here's what I'm trying class card { char author[40]; //char book[30]; int count; public: void store(char *auth,int ct); void show(); }; void card::store(char *auth,int ct){ &author = *auth; count = ct; } int main(){ card ob1, ob2; ob1.store('Tolkin',10); ob2.store('Pratchet',3); ob1.show(); ob2.show(); return 0; } And here's the Schildt's solution: class card { char author[40]; int count; public: void store(char *auth,int ct); void show(); }; void card::store(char *auth,int ct){ strcpy(author, auth); count = ct; } Thanks, Leron
c++
null
null
null
null
12/05/2011 17:06:47
not a real question
Basic C++ function, can I make it work? === So, I'm reading Schildt's book 3rd edition about C++ and I'm doing all examples, but I have some PHP background and when I tried some stuff it occurs that it can not be compiled this way.I saw the Schildt's solution, so I'll give what I've tried to do and how it's done in the book, what I need to know, is there any way to make it work adjusting my function? Here's what I'm trying class card { char author[40]; //char book[30]; int count; public: void store(char *auth,int ct); void show(); }; void card::store(char *auth,int ct){ &author = *auth; count = ct; } int main(){ card ob1, ob2; ob1.store('Tolkin',10); ob2.store('Pratchet',3); ob1.show(); ob2.show(); return 0; } And here's the Schildt's solution: class card { char author[40]; int count; public: void store(char *auth,int ct); void show(); }; void card::store(char *auth,int ct){ strcpy(author, auth); count = ct; } Thanks, Leron
1
5,949,118
05/10/2011 11:13:40
691,352
04/04/2011 15:13:26
3
1
Toggle between varibals (changeing afther being clicked once)
I'm trying to toggle between the content stored in a variables. In start position all content is shown. When click on (lets say) option1 the content of option2 should hide and the content for option1 should still be shown. When then clicked on option2 , option1 should be kept shown and content for option2 should re-appear. After that both should act like a "normal" toggle for there own content. So the var option1 and 2 are the content for the a tags 1 & 2. <ul class="thera-nav"> <li><a href="#">option1</a></li> <li><a href="#">option2</a></li> <ul> var option1 = $('div[class^="cn-list-row"]').filter("[class*='sporttherapie']"); var option2 = $('div[class^="cn-list-row"]').filter("[class*='massagetherapie']"); $('.thera-nav a').click(function() { e.preventDefault(); //show this? and hide others only first time? }); Below I found an answer who is in the right direction, but I can't get right it for this case. <http://stackoverflow.com/questions/1328314/hide-all-but-this-via-not-in-jquery-selector>? Someone got a clue how to get it right?
jquery
variables
toggle
null
null
null
open
Toggle between varibals (changeing afther being clicked once) === I'm trying to toggle between the content stored in a variables. In start position all content is shown. When click on (lets say) option1 the content of option2 should hide and the content for option1 should still be shown. When then clicked on option2 , option1 should be kept shown and content for option2 should re-appear. After that both should act like a "normal" toggle for there own content. So the var option1 and 2 are the content for the a tags 1 & 2. <ul class="thera-nav"> <li><a href="#">option1</a></li> <li><a href="#">option2</a></li> <ul> var option1 = $('div[class^="cn-list-row"]').filter("[class*='sporttherapie']"); var option2 = $('div[class^="cn-list-row"]').filter("[class*='massagetherapie']"); $('.thera-nav a').click(function() { e.preventDefault(); //show this? and hide others only first time? }); Below I found an answer who is in the right direction, but I can't get right it for this case. <http://stackoverflow.com/questions/1328314/hide-all-but-this-via-not-in-jquery-selector>? Someone got a clue how to get it right?
0
6,314,345
06/11/2011 05:46:21
733,917
05/02/2011 04:15:58
5
0
how to create a search engine in php?
I'm about to create a very very big project. How do I create a search engine with the following features:- 1)I give it a URL and it will get all the available links in that page 2)It should read the robots.txt file to make sure what to index and what to not index 3)I want it to get any pages add to any site in the database without recrawling it 4)It reads the xml sitemaps 5)How to work with keywords and if possible, please : how do i structure my database?
php
search-engine
null
null
null
06/11/2011 08:34:47
not a real question
how to create a search engine in php? === I'm about to create a very very big project. How do I create a search engine with the following features:- 1)I give it a URL and it will get all the available links in that page 2)It should read the robots.txt file to make sure what to index and what to not index 3)I want it to get any pages add to any site in the database without recrawling it 4)It reads the xml sitemaps 5)How to work with keywords and if possible, please : how do i structure my database?
1
7,084,738
08/16/2011 20:40:20
897,480
08/16/2011 20:40:20
1
0
How can I reference variables from another included file in PHP?
So I'm working on a PHP app and trying to make everything moduler. I have an index.php file that includes other php files. The first file included is settings.php which has my postgres credentials defined so they can be accessed elsewhere. The second file is connect.php that has a function you can pass sql to and it will return $result. The third file has functions that call the sql function and receive $result and parse it. In the third file, I can read the results of the $result however if I try if($result) it breaks and isset/empty have no effect. Anyone have any ideas on a way to make this work, or is my structure just terrible? Thanks so much! Mike
php
variables
include
null
null
null
open
How can I reference variables from another included file in PHP? === So I'm working on a PHP app and trying to make everything moduler. I have an index.php file that includes other php files. The first file included is settings.php which has my postgres credentials defined so they can be accessed elsewhere. The second file is connect.php that has a function you can pass sql to and it will return $result. The third file has functions that call the sql function and receive $result and parse it. In the third file, I can read the results of the $result however if I try if($result) it breaks and isset/empty have no effect. Anyone have any ideas on a way to make this work, or is my structure just terrible? Thanks so much! Mike
0
9,775,462
03/19/2012 18:07:12
735,897
05/03/2011 09:55:46
26
2
Child interfering with mouse wheel event propagation
I have a fairly complex front end on an WPF App and to make things simpler as they are reused heavily, I've broken it into Uaer controls <ScrollViewer> <TreeVeiw> <TreeVeiwIterm> <UserControl> <Grid> <Label> <UserControl> <Grid> Buttols, images, labels, etc The problem is one or more of these children is handling the mouse wheels event before the scroll view gets it so the app wont scroll. which is it and how do i bypass the interference?
wpf
scrollviewer
mousewheel
null
null
null
open
Child interfering with mouse wheel event propagation === I have a fairly complex front end on an WPF App and to make things simpler as they are reused heavily, I've broken it into Uaer controls <ScrollViewer> <TreeVeiw> <TreeVeiwIterm> <UserControl> <Grid> <Label> <UserControl> <Grid> Buttols, images, labels, etc The problem is one or more of these children is handling the mouse wheels event before the scroll view gets it so the app wont scroll. which is it and how do i bypass the interference?
0
2,374,487
03/03/2010 19:58:49
277,630
02/20/2010 12:32:59
1
0
What is the (best) short name for a Silverlight Application?
I've been wondering what the right shorthand name to call my Silverlight Applications is - it seems a bit cumbersome to use the full name, and not so communicative in relation to customers. Here are some (tongue in cheek) suggestions - I'm working on a: 1) Silverlet 2) SLApp 3) Trinket 4) Xap 5) SLash 6) SLugin Anyone knows the official short name or have other suggestions?
silverlight
null
null
null
null
03/04/2010 15:51:03
off topic
What is the (best) short name for a Silverlight Application? === I've been wondering what the right shorthand name to call my Silverlight Applications is - it seems a bit cumbersome to use the full name, and not so communicative in relation to customers. Here are some (tongue in cheek) suggestions - I'm working on a: 1) Silverlet 2) SLApp 3) Trinket 4) Xap 5) SLash 6) SLugin Anyone knows the official short name or have other suggestions?
2
11,628,335
07/24/2012 09:52:36
1,166,503
01/24/2012 07:34:38
11
1
Capacity planning for an enterprise software application
If you had to do capacity planning and hardware sizing "BEFORE" you had a chance to actually code and test the application (typically while you are defining solution architecture), how would you do it? I know this can not be known accurately beforehand but the point is to present the approach at an early stage (including questions you need to ask, assumptions you need to make). All you konw, it will be an enterprise java application with App server, Web Server, Database. Business has given some number of concurrent "USERES" say 1000. Also assume that you will get a chance to fine tune your numbers after load testing the application but you can't be far off from the original estimates.
performance
sizing
capacity
null
null
07/24/2012 15:17:03
off topic
Capacity planning for an enterprise software application === If you had to do capacity planning and hardware sizing "BEFORE" you had a chance to actually code and test the application (typically while you are defining solution architecture), how would you do it? I know this can not be known accurately beforehand but the point is to present the approach at an early stage (including questions you need to ask, assumptions you need to make). All you konw, it will be an enterprise java application with App server, Web Server, Database. Business has given some number of concurrent "USERES" say 1000. Also assume that you will get a chance to fine tune your numbers after load testing the application but you can't be far off from the original estimates.
2
10,172,987
04/16/2012 11:08:37
1,310,469
04/03/2012 12:55:22
1
0
UmbrellaException when button is clicked
guys I am working with GWT and when I click a button which creates a class I receive an UmbrellaException. Here is the problematic code: private void addPerson(){ final HashSet<Date> dates = new HashSet(); HorizontalPanel horizontalPanel = new HorizontalPanel(); HorizontalPanel buttonsPanel = new HorizontalPanel(); final TextItem textBox = new TextItem(); textBox.setTitle("Name"); DynamicForm form = new DynamicForm(); final ListBox listBox = new ListBox(); listBox.addItem("DiplomaManager"); listBox.addItem("Reviewer"); //listBox.setVisibleItemCount(2); DatePicker datePicker = new DatePicker(); datePicker.addValueChangeHandler(new ValueChangeHandler<Date>() { public void onValueChange(ValueChangeEvent<Date> event) { dates.add(event.getValue()); SC.say(event.getValue().toString() + " Added to unavailable dates "); } }); Button oneMoreButton = new Button("One More"); oneMoreButton.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { //SC.say(listBox.getValue(0)); getPerson(dates,textBox,listBox); RootPanel.get("mainDiv").clear(); addPerson(); } }); Button back = new Button("Back"); back.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { RootPanel.get("mainDiv").clear(); onModuleLoad(); } }); Button next = new Button("Next"); next.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { RootPanel.get("mainDiv").clear(); addDiploma(); } }); form.setFields(textBox); horizontalPanel.add(form); horizontalPanel.add(datePicker); horizontalPanel.add(listBox); buttonsPanel.add(oneMoreButton); buttonsPanel.add(back); buttonsPanel.add(next); RootPanel.get("mainDiv").add(horizontalPanel); RootPanel.get("mainDiv").add(buttonsPanel); } The exception appears when I click the `oneMoreButton`. Here is the getPerson source: private void getPerson(HashSet<Date> set, TextItem box, ListBox list){ if(list.getSelectedIndex()==0){ DiplomaLeader leader = new DiplomaLeader(box.getValueAsString(), set); DiplomaLeaders.add(leader); }else if(list.getSelectedIndex()==1){ Reviewer reviewer = new Reviewer(box.getValueAsString(), set); Reviewers.add(reviewer); }else { SC.say("Error accured :) Maybe nothing was entered"); } } The diplomaLeader and the Reviewer class are the same but with different names for easier treatment. This is their code: package org.elsys.salvation.client; import java.util.Date; import java.util.HashSet; public class Reviewer { private String name; private HashSet<Date> unavailableDates; public Reviewer(String name, HashSet<Date> unavailableDates) { super(); this.name = name; this.unavailableDates = unavailableDates; } public String getName() { return name; } public void setName(String name) { this.name = name; } public HashSet<Date> getUnavailableDates() { return unavailableDates; } public void setUnavailableDates(HashSet<Date> unavailableDates) { this.unavailableDates.addAll(unavailableDates) ; } } Everything is autogenerated. I am not verry good with collections so maybe the problem is comming from the constructor.
java
eclipse
gwt
smartgwt
null
null
open
UmbrellaException when button is clicked === guys I am working with GWT and when I click a button which creates a class I receive an UmbrellaException. Here is the problematic code: private void addPerson(){ final HashSet<Date> dates = new HashSet(); HorizontalPanel horizontalPanel = new HorizontalPanel(); HorizontalPanel buttonsPanel = new HorizontalPanel(); final TextItem textBox = new TextItem(); textBox.setTitle("Name"); DynamicForm form = new DynamicForm(); final ListBox listBox = new ListBox(); listBox.addItem("DiplomaManager"); listBox.addItem("Reviewer"); //listBox.setVisibleItemCount(2); DatePicker datePicker = new DatePicker(); datePicker.addValueChangeHandler(new ValueChangeHandler<Date>() { public void onValueChange(ValueChangeEvent<Date> event) { dates.add(event.getValue()); SC.say(event.getValue().toString() + " Added to unavailable dates "); } }); Button oneMoreButton = new Button("One More"); oneMoreButton.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { //SC.say(listBox.getValue(0)); getPerson(dates,textBox,listBox); RootPanel.get("mainDiv").clear(); addPerson(); } }); Button back = new Button("Back"); back.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { RootPanel.get("mainDiv").clear(); onModuleLoad(); } }); Button next = new Button("Next"); next.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { RootPanel.get("mainDiv").clear(); addDiploma(); } }); form.setFields(textBox); horizontalPanel.add(form); horizontalPanel.add(datePicker); horizontalPanel.add(listBox); buttonsPanel.add(oneMoreButton); buttonsPanel.add(back); buttonsPanel.add(next); RootPanel.get("mainDiv").add(horizontalPanel); RootPanel.get("mainDiv").add(buttonsPanel); } The exception appears when I click the `oneMoreButton`. Here is the getPerson source: private void getPerson(HashSet<Date> set, TextItem box, ListBox list){ if(list.getSelectedIndex()==0){ DiplomaLeader leader = new DiplomaLeader(box.getValueAsString(), set); DiplomaLeaders.add(leader); }else if(list.getSelectedIndex()==1){ Reviewer reviewer = new Reviewer(box.getValueAsString(), set); Reviewers.add(reviewer); }else { SC.say("Error accured :) Maybe nothing was entered"); } } The diplomaLeader and the Reviewer class are the same but with different names for easier treatment. This is their code: package org.elsys.salvation.client; import java.util.Date; import java.util.HashSet; public class Reviewer { private String name; private HashSet<Date> unavailableDates; public Reviewer(String name, HashSet<Date> unavailableDates) { super(); this.name = name; this.unavailableDates = unavailableDates; } public String getName() { return name; } public void setName(String name) { this.name = name; } public HashSet<Date> getUnavailableDates() { return unavailableDates; } public void setUnavailableDates(HashSet<Date> unavailableDates) { this.unavailableDates.addAll(unavailableDates) ; } } Everything is autogenerated. I am not verry good with collections so maybe the problem is comming from the constructor.
0
3,108,189
06/24/2010 08:08:54
4,597
09/04/2008 19:25:11
556
27
How to name C# source files for generic classes
I am trying to stick to general naming conventions such as those described in [Design Guidelines for Developing Class Libraries][1]. I put every type into its own source file (and partial classes will be split across several files as described in question [Naming Conventions for Partial Class Files][2]), using the name of the type as the file name. Examples: namespace Demo.Bla // project { enum FlowDirection { } // in file FlowDirection.cs class LayoutManager { } // in file LayoutManager.cs } namespace Demo.Bla.LayoutControllers // folder LayoutControllers in project { class StackPanelLayoutController { } // in file LayoutControllers/StackPanelLayoutController } But I am not sure I've come up with a clever way of naming source files which contain generic classes. Say that I have following classes, for instance: namespace Demo.Bla.Collections // folder Collections { class Map<T> { } // in file Map.cs (obviously) class Bag { } // in file Bag.cs (obviously) class Bag<T> : Bag { } // also in file Bag.cs ??? } Should I put the code of both the non-generic and the generic `Bag` classes into the same `Bag.cs` file? What are your habits? [1]: http://msdn.microsoft.com/en-us/library/ms229042.aspx [2]: http://stackoverflow.com/questions/1478610/naming-conventions-for-partial-class-files
c#
naming-conventions
null
null
null
12/30/2011 19:00:54
not constructive
How to name C# source files for generic classes === I am trying to stick to general naming conventions such as those described in [Design Guidelines for Developing Class Libraries][1]. I put every type into its own source file (and partial classes will be split across several files as described in question [Naming Conventions for Partial Class Files][2]), using the name of the type as the file name. Examples: namespace Demo.Bla // project { enum FlowDirection { } // in file FlowDirection.cs class LayoutManager { } // in file LayoutManager.cs } namespace Demo.Bla.LayoutControllers // folder LayoutControllers in project { class StackPanelLayoutController { } // in file LayoutControllers/StackPanelLayoutController } But I am not sure I've come up with a clever way of naming source files which contain generic classes. Say that I have following classes, for instance: namespace Demo.Bla.Collections // folder Collections { class Map<T> { } // in file Map.cs (obviously) class Bag { } // in file Bag.cs (obviously) class Bag<T> : Bag { } // also in file Bag.cs ??? } Should I put the code of both the non-generic and the generic `Bag` classes into the same `Bag.cs` file? What are your habits? [1]: http://msdn.microsoft.com/en-us/library/ms229042.aspx [2]: http://stackoverflow.com/questions/1478610/naming-conventions-for-partial-class-files
4
8,984,767
01/24/2012 09:53:29
993,237
10/13/2011 10:27:08
122
1
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' when using Linq to SQL
I have a web service that is being hosted in SharePoint. The WebService is being called from a SharePoint page. When the services is called it uses linq and query the database. When this happens on my local machine everything goes through fine. When performed on a remote machine I get the error: > Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' Is there a way that I can impersonate the user that is being used for the linq call?
c#
linq-to-sql
authentication
impersonation
null
null
open
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' when using Linq to SQL === I have a web service that is being hosted in SharePoint. The WebService is being called from a SharePoint page. When the services is called it uses linq and query the database. When this happens on my local machine everything goes through fine. When performed on a remote machine I get the error: > Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' Is there a way that I can impersonate the user that is being used for the linq call?
0
11,139,679
06/21/2012 13:50:45
1,472,297
06/21/2012 13:46:27
1
0
iOS youtube player and AIR
I'm developing application that plays videos from youtube. On android it works well but i have problem with iOS. i know that iOS does not support flash etc. so are there any other alternatives how to play youtube videos in adobe air application that runs on iOS ? tnx
ios
flex
youtube-api
null
null
06/26/2012 11:51:52
not constructive
iOS youtube player and AIR === I'm developing application that plays videos from youtube. On android it works well but i have problem with iOS. i know that iOS does not support flash etc. so are there any other alternatives how to play youtube videos in adobe air application that runs on iOS ? tnx
4
8,895,138
01/17/2012 13:09:20
219,167
11/26/2009 06:47:19
868
51
How to convert a json object to a string in a alert box?
I want to debug my response (json) and have it displaying as a string in a alert box. Are there any convenient thing to do?
javascript
jquery
json
null
null
01/17/2012 19:10:35
not a real question
How to convert a json object to a string in a alert box? === I want to debug my response (json) and have it displaying as a string in a alert box. Are there any convenient thing to do?
1
8,372,426
12/04/2011 00:58:49
876,960
08/03/2011 15:41:31
5
0
Each Wordpress post as a slideshow
I have an idea for a Wordpress site (a portfolio for a graphic designer). Number 1 is simpler to make but number 2 is better.. **1.** Every post should be like a slideshow. I want every post to contain several images and then have two arrows to navigate with. In the header I have an anchor list that links to each post. Do you have any idea how that might look like? **2.** It would be even better if I got a text area beside the picture. The text should change when you change picture with the arrows. Is this possible?
php
wordpress
wordpress-plugin
null
null
12/04/2011 23:00:52
not a real question
Each Wordpress post as a slideshow === I have an idea for a Wordpress site (a portfolio for a graphic designer). Number 1 is simpler to make but number 2 is better.. **1.** Every post should be like a slideshow. I want every post to contain several images and then have two arrows to navigate with. In the header I have an anchor list that links to each post. Do you have any idea how that might look like? **2.** It would be even better if I got a text area beside the picture. The text should change when you change picture with the arrows. Is this possible?
1
8,169,682
11/17/2011 15:24:21
544,716
12/16/2010 11:54:10
505
0
Is there a difference between ASP.NET N-Layered / DDD architecture and a Window service software architecture?
I am reading a lot of architecture (N - Layered and ddd) yet most of the articles are about web site architecture and develop mostly windows services. does the architecture can be used the same way ?
c#
architecture
domain-driven-design
windowservice
n-layer
11/18/2011 12:51:51
not a real question
Is there a difference between ASP.NET N-Layered / DDD architecture and a Window service software architecture? === I am reading a lot of architecture (N - Layered and ddd) yet most of the articles are about web site architecture and develop mostly windows services. does the architecture can be used the same way ?
1
11,493,022
07/15/2012 15:08:13
1,508,492
07/07/2012 09:11:59
1
0
BroadcasrReceiver
I am trying to write an application for call filtering , I want to develop an application that on the main page of the app, user can define block number in a simple EditBox ,after when the phone about the ringing ,the app check the incoming number is equal to that number which i defined in EditBox or not .can everyone give me simple example?s
android
service
broadcastreceiver
start-activity
null
07/16/2012 07:23:27
not a real question
BroadcasrReceiver === I am trying to write an application for call filtering , I want to develop an application that on the main page of the app, user can define block number in a simple EditBox ,after when the phone about the ringing ,the app check the incoming number is equal to that number which i defined in EditBox or not .can everyone give me simple example?s
1