Search results for query: *

  1. D

    Question Consume a WCF or Web Service

    that's great but can I use an existing Web Service as I did on a WM6 app?
  2. 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!
  3. 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
  4. 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
  5. 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...
  6. D

    Good Beginner to Programing

    yes it appears to be - was working when i emailed it. try vbdotnetheaven, they have lots of good tips. feel free to post back if there is something you need help with.
  7. D

    Good Beginner to Programing

    Have a look at Microsoft Visual Basic .NET tutorials for Beginners - really good stuff here.
  8. 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...
  9. D

    Read from textbox created programitically

    that is my other thread which you kindly answered.
  10. D

    Create concatenated string as name for new textbox

    thanks! Worked a dream
  11. D

    Read from textbox created programitically

    Thanks but I don't understand what you mean. Is the name nor already there?
  12. 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
  13. 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
  14. D

    Question Multiple rows selection from one datagridview to transfer to another datagridview

    not the most classiest of ideas but you could iterate through one gridview row(x).cells(y) and load the data into a variable then access the other datagrid and use rows(x).cells(y) and set the value or text property to that of the variable.
  15. 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