Search results for query: *

  • Users: dmarkus100
  • Content: Threads
  • Order by date
  1. D

    Question Consume a WCF or Web Service

    How can I consume a web service in VS2010 WP7? I try to use a WCF but can not get it to call the function - only offers functionAsync or similar? Have googled to my hearts content but can not find a solution. Thanks!
  2. D

    Question How to store sql server username and password for CF application

    My CF app connects to sql server 2008 and inserts records - that bit is all fine but I don't want to code in the u/n and p/w - I know I can store these in web.config but how can I do same for CF? Thanks
  3. D

    Question ftp or upload image from WM5 to webserver

    I need to upload images from my WM5 device to my web server. I have tried OpennetCF but it can't get it to accept files > 7k and I don't want to pay for Rebex or others, even though they seem very good. Any help would be gratefully received. Thank you
  4. D

    Opening and closing forms in CF 3.5

    I have a form called frmstart - this calls an instance of formq1. when I try and dispose of formq1 it doesn't actually dispose of it using formq1.dispose. formq1 also contains a method to show frmStart but when it does the button on frmstart won't call the next form, only works one time and I...
  5. D

    Question select unique date values from listbox

    hi I have a listbox which is populated from a sql table. I need to select unique month values from the dates in this listbox. Dates are, for example: 21/09/2010 22/09/2010 21/07/2010 09/06/2010 I need to extract september, june and july only from the above, sort them and display them in a...
  6. D

    Read from textbox created programitically

    Here is my code to programitically create a textbox on the fly Dim a1_box As New TextBox Me.Controls.Add(a1_box) In another method I need to read the value entered by the user, but, a1_box is not a know item. Thanks for your help
  7. D

    Create concatenated string as name for new textbox

    hi I am trying to programatically create textboxes in my app. I need to do this: dim textbox(x) as new textbox x needs to loop 1 thru 10 but I can't get VB to accept my coding. Please help Thanks
  8. D

    app to perform routines at regular intervals

    hi i have a need for my vb.net app to perform methods at regular intervals. it needs to check sql tables and react to data found, send email and sms messages. i've tried using a loop but this only allows me to perform 1 check ie checking sql tables. the app needs to execute a method every x...
Back
Top