|
.. Ya it looks like the buffer is empty...
|
|
|
|
|
Hi
We have a website developed using html. Events and data are handled by jQuery and Web services resp. Now our customer wants this site to be viewed on SharePoint 2010. This part is simple and straight. But they want this SharePoint site to be viewed on mobile. I understand that I will have to develop web parts for mobile. But currently I am very confused and not sure how to proceed. Any help/tips/suggestions appreciated.
Thanks
MK.
|
|
|
|
|
hi
i have an android application and i want to connect it to a server (java server )
i know how to connect J2ME client to a server
can i do the same thing with android?
or there is another way (so what is it ) ?
is there any tutorials (even videos ) for that
thank you very much
|
|
|
|
|
Depending on what kind of connectivity you're trying to achieve:
If you mean connecting via raw sockets, Android java supports the java.net[^] package.
For accessing SOAP web-services there is an open source project[^] which you can use in your application (of course, after you check the licenses to make sure you comply). Last I tried it, it still had issues, but it might be better now. You can search google for a bunch of tuts.
Google showed me this[^] among others when I searched for http client programming, but I haven't used it, so I wouldn't know much about it.
"It was when I found out I could make mistakes that I knew I was on to something."
-Ornette Coleman
"Philosophy is a study that lets us be unhappy more intelligently."
-Anon.
|
|
|
|
|
I'd like to write a WPF Windows app that can access the images on my Windows Phone.
When I plug the phone in, I don't see it. I've had other phones that showed up in Windows Explorer as another hard drive and you could copy images on/off the phone.
How can I access the images on a Windows 7 Phone in a WPF application?
Everything makes sense in someone's mind
|
|
|
|
|
For accessing the pictures from code you will probably need to use the media library class[^]
If you want to browse your phones pictures from your computer, you'll need to install the Zune software and browse them from there. You can of course also sync from the Zune software to get the pictures off of your phone.
And lastly, you can set the phone to upload all of the pictures to SkyDrive and browse that from your computer as well.
|
|
|
|
|
I use an assemble to get a code for WP7 app use RDP protocol to connect to the PC and control it
It debug right but the problem it can't connect to any PC.
I know the code it right but I don't find any problem in the code
video Show the connection
I upload some videos using monitor traffic :
the original RDP
Showing my error
error
You see the difference between he 2 apps, it's the send the RDP started from the 4th line
|
|
|
|
|
Hi All,
I have done a google search and asked some colleagues but i am stumped. I need to set/change APN settings by running code and the only examples i have found on the internet are for Android or Apple products, the platform i need it for is Windows 3G laptop rather than a phone. Is there anyone with ideas just to get me strated?
Thank you in advance!!
|
|
|
|
|
I have a project at work. I open it in Visual Studio 2008 and I get this error message:
The project consists entirely of configurations that require support for platforms which are not installed on this machine. The project cannot be loaded.
I open the SLN file (Microsoft Visual Studio Solution) in notepad. I find out the platform is Windows CE 5.0 (ARMV4I).
I search the web and find out there is Windows CE 5.0 SDK that can be downloaded from Microsoft. I download it and install. I notice it says Standard SDK for Windows CE 5.0.
After installing, I double click on the SLN file again. I still see the same error message. Any idea? Please help out.
|
|
|
|
|
I have a second hand Onmnia i900 running Windows Mobile 6.1. Battery life seems OK but when I use the phone as a tethered modem, e.g. share its net connection over BlueTooth, it inevitably at some point stops charging and rapidly discharges the battery. I then need to stop using it as a modem, and disconnect the power cable, until something, somewhere cools down, before it will charge/operate off external power again.
Any suggestions on whether I should be looking at a new power adapter, battery, or phone, or doing something else?
|
|
|
|
|
This is a programming forum, not a hardware forum. Your question has fallen on deaf ears.
"You get that on the big jobs."
|
|
|
|
|
No harm in trying. It's also fallen on deaf ears on all the hardware only mobile forums I've asked on.
|
|
|
|
|
The forum should have been named "Mobile Development" than "Mobile"
Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.
|
|
|
|
|
Hi All,
I have created web application for video gallery in asp.net.This gallery is playing in all browser fine through Jw Player But now i want to play video in any Mobile then not work properly in mobile. when i play in flv file then display file format not supported and when play mp4 then whenever click on play button then downloading start after downloaded doesn't play only downloading it. So please help me, what i can do for this issue?
Thanks in advance..
|
|
|
|
|
Try to download real player apps on your mobile or just update your mp4 apps.
|
|
|
|
|
I an working on a POS based project,in android,there a need to connect with a commercial printer and print some coupon data.I have already shared some images via bluetooth in a bluetooth printer.Please provide me some idea of how can I do that.
-- modified 7-Apr-12 3:05am.
|
|
|
|
|
You can save your images coupon via SD card and print it to any commercial printer SD capable. I believe now adays majority of the printer are SD capable.
|
|
|
|
|
I need a mobile phone platform to communicate with a SIM card by exchanging APDU commands and responses with it (ISO 7816-4)
I know how to do it on Windows desktop platforms, but I could not locate any documentation on the subject from the Windows Phone Development website.
http://msdn.microsoft.com/en-us/library/ff402535(v=vs.92).aspx[^]
Is this possible on Windows Mobile Phone, and can someone point me to some documentation on the subject?
|
|
|
|
|
I am using MVVM pattern and I am trying to bind a
public ObservableCollection<Model.Friends> Friends property to LongListSelector
<toolkit:LongListSelector
ItemsSource="{Binding Friends}"
GroupHeaderTemplate="{StaticResource movieGroupHeader}"
ListHeaderTemplate="{StaticResource movieListHeader}">
<toolkit:LongListSelector.ItemTemplate>
<DataTemplate>
<Grid Margin="12,8,0,8">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" VerticalAlignment="Top">
<TextBlock Text="{Binding MyBoxName}" Style="{StaticResource PhoneTextLargeStyle}" FontFamily="{StaticResource PhoneFontFamilySemiBold}" Margin="12,-12,12,6"/>
<TextBlock Text="{Binding MyBoxID}" Style="{StaticResource PhoneTextNormalStyle}" TextWrapping="Wrap" FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Status:" Style="{StaticResource PhoneTextSmallStyle}"/>
<TextBlock Text="{Binding Status}" Style="{StaticResource PhoneTextSmallStyle}" FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
</StackPanel>
</StackPanel>
</Grid>
</DataTemplate>
</toolkit:LongListSelector.ItemTemplate>
</toolkit:LongListSelector>
Now issues is when i try to add
_friends.Add(new Model.Friends
{
MyBoxID = e.RosterItem.Jid,
MyBoxName = e.RosterItem.Name,
Status = Matrix.Xmpp.PresenceType.unavailable
});
it gives InvalidCastException so i tried List instead of ObservableCollection. Now i don't get exception but nothing is displayed in LLS. How can i bind My ObservableCollection property to LLS with Grouping.
|
|
|
|
|
|
|
Hi
I Tried millennial ads in windows phone 7 but its dll always taken default sample Apid. when i changed default id with authorized Apid " 79872 " and the URL is : http://ads.mp.mydas.mobi/getAd.php5?sdkapid=79872&mmisdk=0.6.1-12.08.10.xna&auid=UKspOevbs1+BrAomsH1B8VKddyc=&ua=Mozilla/4.0 it showing ad_Request Fail.its showing some remote location.No ads found and ads length 0.if any one have solution then plz tell me how we integrate millennial ads in windows phone 7 xna games with new Apid.If u have any link or sample then plz send to help us...........my games is waiting for ads integration..............
Waiting for the reply
Thank U
|
|
|
|
|
I am trying to get the signal strength info from the all the available wifi access points but it doesnt work... Its always returning some null exception it seems. I tried to run it in mobile also but its not working. I have pointed out the line which is creating error by placing a comment in bold.
<br />
package a.c;<br />
<br />
<br />
import java.util.ArrayList;<br />
<br />
import java.util.List;<br />
<br />
<br />
<br />
import a.c.WifiActivity.WifiReceiver;<br />
<br />
import android.app.Activity;<br />
<br />
import android.content.BroadcastReceiver;<br />
<br />
import android.content.Context;<br />
<br />
import android.content.Intent;<br />
<br />
import android.content.IntentFilter;<br />
<br />
import android.net.wifi.ScanResult;<br />
<br />
import android.net.wifi.WifiManager;<br />
<br />
import android.os.Bundle;<br />
<br />
import android.widget.TextView;<br />
<br />
import android.widget.Toast;<br />
<br />
<br />
<br />
public class WifiActivity extends Activity {<br />
<br />
private WifiManager mainWifi;<br />
<br />
private WifiReceiver receiverWifi;<br />
<br />
<br />
<br />
TextView sig;<br />
<br />
<br />
<br />
@Override<br />
<br />
public void onCreate(Bundle savedInstanceState) {<br />
<br />
super.onCreate(savedInstanceState);<br />
<br />
setContentView(R.layout.main);<br />
<br />
mainWifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);<br />
<br />
receiverWifi = new WifiReceiver();<br />
<br />
registerReceiver(receiverWifi, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION));<br />
<br />
<br />
<br />
}<br />
<br />
class WifiReceiver extends BroadcastReceiver {<br />
<br />
public void onReceive(Context c, Intent intent) {<br />
<br />
List<ScanResult> wifiList = mainWifi.getScanResults();<br />
<br />
for (int i = 0; i < wifiList.size(); i++) {<br />
<br />
ScanResult scanResult = wifiList.get(i);<br />
<br />
[b]
<br />
try{<br />
<br />
sig.append(scanResult.level+";");<br />
<br />
}<br />
<br />
catch(exception e){}<br />
}<br />
}<br />
<br />
<br />
}<br />
}<br />
<br />
Can anyone help me with the code. I dont know what to do to get the signal strength info from the access points.There are access points nearby but im not able get the strength.If anyone could provide the code or any help then i would be thankful. Note: I have added the required permission to access wifistate in the manifest also so its not a problem there.
|
|
|
|
|
It would help if you stated what exception it gives.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
Well , its a null pointer exception actually so i think i messed up with the code or somethin.
Have a look at it.
|
|
|
|