Click here to Skip to main content
15,900,110 members
Home / Discussions / Windows Development
   

Windows Development

 
GeneralRe: Has anyone used bing ad's in an app? Does it work? Pin
David C# Hobbyist.10-Apr-13 10:19
professionalDavid C# Hobbyist.10-Apr-13 10:19 
QuestionAPI to fingure out DNS address of my machine Pin
g_venkat_8429-Mar-13 1:54
g_venkat_8429-Mar-13 1:54 
QuestionRe: API to fingure out DNS address of my machine Pin
David C# Hobbyist.29-Mar-13 2:15
professionalDavid C# Hobbyist.29-Mar-13 2:15 
AnswerRe: API to fingure out DNS address of my machine Pin
g_venkat_8429-Mar-13 5:34
g_venkat_8429-Mar-13 5:34 
AnswerRe: API to fingure out DNS address of my machine Pin
Richard MacCutchan29-Mar-13 6:06
mveRichard MacCutchan29-Mar-13 6:06 
GeneralRe: API to fingure out DNS address of my machine Pin
g_venkat_8431-Mar-13 19:30
g_venkat_8431-Mar-13 19:30 
GeneralRe: API to fingure out DNS address of my machine Pin
Richard MacCutchan31-Mar-13 22:35
mveRichard MacCutchan31-Mar-13 22:35 
GeneralRe: API to fingure out DNS address of my machine Pin
g_venkat_841-Apr-13 21:34
g_venkat_841-Apr-13 21:34 
GeneralRe: API to fingure out DNS address of my machine Pin
Richard MacCutchan1-Apr-13 21:56
mveRichard MacCutchan1-Apr-13 21:56 
AnswerRe: API to fingure out DNS address of my machine Pin
SoMad1-Apr-13 22:23
professionalSoMad1-Apr-13 22:23 
AnswerRe: API to fingure out DNS address of my machine Pin
IInjac3-Oct-13 1:29
IInjac3-Oct-13 1:29 
Questioninquiring Pin
Member 994394726-Mar-13 5:10
Member 994394726-Mar-13 5:10 
AnswerRe: inquiring Pin
Ramans44425-May-13 21:37
Ramans44425-May-13 21:37 
QuestionHow to auto log on webview using VB Pin
tntx2505-Nov-12 2:39
tntx2505-Nov-12 2:39 
AnswerRe: How to auto log on webview using VB Pin
Richard MacCutchan5-Nov-12 3:14
mveRichard MacCutchan5-Nov-12 3:14 
GeneralRe: How to auto log on webview using VB Pin
tntx2505-Nov-12 3:38
tntx2505-Nov-12 3:38 
GeneralRe: How to auto log on webview using VB Pin
Richard MacCutchan5-Nov-12 4:28
mveRichard MacCutchan5-Nov-12 4:28 
QuestionGPS Pin
johnson_shalom26-Oct-12 23:31
johnson_shalom26-Oct-12 23:31 
AnswerRe: GPS Pin
FrankLavigne3-Jan-13 3:47
FrankLavigne3-Jan-13 3:47 
QuestionUnable to obtain Bytes sent and received using MB APIs on Win8 Pin
Sharath C V24-Oct-12 23:28
professionalSharath C V24-Oct-12 23:28 
I am not able to get bytes sent and received using NetworkInformation.GetInternetConnectionProfile(); since this function is returning Null.

Mobile Broadband dongle is being used to connect to internet. Connection calls using MB APIs are successful.

Code that fails is shown in the snippet below:
C#
using Windows.Networking.Connectivity;
.
.
.
.
ConnectionProfile connectionprofile = NetworkInformation.GetInternetConnectionProfile();
if (connectionprofile != null)
{
    DataUsage localusage = connectionprofile.GetLocalUsage(startime, currtime);
    string message = "\n Connection details: bytes received:" + localusage.BytesReceived + " bytes sent:" + localusage.BytesSent + "\n";
} 


-Sharath
AnswerRe: Unable to obtain Bytes sent and received using MB APIs on Win8 Pin
Sharath C V24-Oct-12 23:51
professionalSharath C V24-Oct-12 23:51 
QuestionWindows 8, Get list of drives Pin
USAFHokie8021-Sep-12 5:39
USAFHokie8021-Sep-12 5:39 
AnswerRe: Windows 8, Get list of drives Pin
BrowniePoints26-Oct-12 10:29
BrowniePoints26-Oct-12 10:29 
QuestionSave Canvas as image in WINRT using C# Pin
Vivek Deshmukh20-Sep-12 0:56
Vivek Deshmukh20-Sep-12 0:56 
AnswerRe: Save Canvas as image in WINRT using C# Pin
Richard MacCutchan20-Sep-12 2:32
mveRichard MacCutchan20-Sep-12 2:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.