Search results for query: *

  1. D

    Reading post data

    giadich, Hi The reason Im doing this is my data is to long for a querystring. I'm wanting to parse it out myself but don't knwo what route to take.
  2. D

    Reading post data

    Hi. I'm using the procedure below (bottom) to post data to a webpage (sent from a desktop application). Once the data reaches the webpage what can i do to read it and parse it out. It dosnt seem to be in a request.querystring or form. I've also tried the following but no luck Dim sr1 As...
  3. D

    Exceeding url strings.

    giadich, Hi thanks for your response. I found a webclient.uploadstring procedure while searching for the HTTPWebRequest. It should work just fine. Thanks again -dan
  4. D

    Exceeding url strings.

    I'm developing an app for a win mobile device using vb.net 2005. I'm using the sql server 2005 CE(Mobile) DB. I was the pulling the data out and into xml and then into a string data and sending it up through the url stream. Well just my luck some of the string legents exceeded the url size...
  5. D

    File date & time

    disregard I got it. Dim creationTime As DateTime = File.GetCreationTime("\program files\MXNP_Cases\NP_Cases.exe")
  6. D

    File date & time

    I'm trying to get a file date using the code below (vb.net 2005 smartdevice 2005.) Its returning #12/31/1600 4:00:00 PM# It should be #7/16/2007 13:45:00 PM# I've checked the settings on the device and the date and time is correct. Any Ideas why it would return such a date? Thanks Dim...
  7. D

    Combobox Seleted item

    Im using a bound combobox (vb.net 2005 / CF) that pulls data from my db and all works fine. I'm using the canned tableadapter and binding soucr etc.. The user picks an item and its stored in the db by its selectedvalue. when the client goes back and recalls the record i want the same...
  8. D

    Listview columns

    Got it Dim drcodes As SqlCeDataReader = cmdcodes.ExecuteReader Me.ListView1.Clear() ListView1.Activation = ItemActivation.OneClick ListView1.Columns.Add("Link", 50, HorizontalAlignment.Left) ListView1.Columns.Add("Description", 200, HorizontalAlignment.Left)...
  9. D

    Listview columns

    Hi. I'm used to working with listviews that have checkboxes. I have the one below and I figured I just false the checkbox and have 2 col's of data displayed. Well I guess I figured wong. I can't seem to figure out how to make 2 simple col's display. I get the headers but nothing in the 1st...
  10. D

    Datagridview textbox Binding update problem

    c, Thank you. I was missing the databindingsource.endedit. Since I had a bunch of texboxes bound I just added this in my save button event Me.DataGridView1.EndEdit() Me.CustomersBindingSource.EndEdit() Me.CustomersTableAdapter.Update(Me.DataSet1.customers) This way whatever I edit, DGV or...
  11. D

    Datagridview textbox Binding update problem

    I have a bound datagridview (DGV) listing 3 col's of data from my datasource. On the same form I have multple bound Textboxes bound to the same dataset. When I click on a different row on my DGV the textboxes change to refelct the correct information based on the selected datagridview row. IF...
  12. D

    Default wait Icon

    TG, Thanks. I knew that in VB6. I think I make things harder than they are. System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor Thanks Again Dan
  13. D

    Default wait Icon

    Whenever somthing is loding on the PPC a small spinning color circle (annimated gif?) appears in the center of the screen. For lack of the real name I call it a wait Icon. Does anyone know the name of the item and how to make it pop up while loading somthing Thansk
  14. D

    Startup menu icon

    Thanks Strider. I hadn't seen the 1st link before. It looks good.
  15. D

    Startup menu icon

    I just finished an ppc app on .net 2005. I built the cab file etc.. It downloads right into the device cranks up and installs itself etc.. Everything works fine except I cant figure out how to get the application icon on the start panel with the install cab. Can anyone point me in the right...
  16. D

    dates day and month problem

    John, Thank you very much. Actually I created the input strings as mm/dd/yyyy (a web service) . The code ran fine on the emulator. When l I deployed it to the test device (received form a US university) which had the wrong (dd/mm/yyyy) settings on it I started receiving the error...
  17. D

    dates day and month problem

    Disreagard. after hours of fighting this I found that the device itself had a different date format chosen (dd/mm/yyyy). Once I reset it to (mm/dd/yyyy) everything started working.
  18. D

    dates day and month problem

    vb.net 2005 pocket pc 2003 The statement below works fine. Dim s As String = "8/12/2006" Dim d As Date = Date.Parse(s) MsgBox(d.ToShortDateString) If I change the date to "8/13/2006" I get an error. For some reason its looking at the first sample date as 8 -Dec -2006 where it should...
  19. D

    Datagridview finding a specific value

    absolut, Thanks. I have the grid populated with a hundred or so customers. I want to put the name (or some other search criteria) in the TB and have the grid move to that name.
  20. D

    Datagridview finding a specific value

    I have a DGV bound to a notrhwind customer DB for testing. Everything is working fine. I've added a Textbox and cmd button to the form and want to be able to enter a name in the TB and click the button and have it search for a particular name in the DGV and select that row. Can anyone point...
Back
Top