Search results for query: *

  • Users: joefa
  • Content: Threads
  • Order by date
  1. J

    Clickonce - Server connection timed out

    Hi I'm trying to publish a Windows application using Clickonce. I've built the project in Release/Any CPU. This is what I'm doing: - Right click on the project and Publish - Specify the location ftp://mywebsite.com/Subfolder/ and click Next - Choose From a website, enter the URL...
  2. J

    Resolved Help with modifying image

    Hi Please could someone explain what I'm doing wrong here? This function is meant to load an image from project resources, draw some lines on top of it, then return it. The collection of lines is definitely legit, and the DrawLine command is executed in the loop. But it just returns a blank...
  3. J

    HttpWebRequest JSON request returning 401 Unauthorised

    Hi I'm trying to post a JSON request to a web service. I've attached the code I'm using below, as it currently stands. It's returning a 401 - Unauthorised error from the server. Variables: uri = the path to the service in Uri format jsonDataBytes = the JSON request serialised into a byte array...
  4. J

    launch Paint 3d

    Hi Does anyone know how to launch the new Windows 10 Paint 3d app programmatically? I've got the code below for opening a file for the user to edit with Paint using the ProcessStartInfo class, and I'm trying to do the same with Paint 3d, which seems determined to hide its program location from...
  5. J

    Question Problem with ComboBox - SelectedValue <> SelectedItem

    Hi, Strange issue with the .Net Combobox - the SelectedValue is disagreeing with the SelectedItem. Dim VATCategoryAdapter As New IClarityDataSetTableAdapters.VATCategoryTableAdapter Dim newVATCategoryTable As New IClarityDataSet.VATCategoryDataTable . . newVATCategoryTable.DefaultView.Sort =...
  6. J

    Question SQL ORDER BY with ComboBox

    Hi I've got a TSQL view which looks like this SELECT TOP 100 PERCENT --Needed for the ORDER BY clause N.NHSReasonID ,N.Reason ,N.Notes ,N.TopValue FROM dbo.NHSReason N ORDER BY N.TopValue DESC ,N.Reason In my VB.Net application, I have a ComboBox which uses the above as its datasource...
  7. J

    Question Problem deleting row from datagridview

    Hi I wonder if anyone could help with this issue. I have an unbound datagridview from which I am trying to remove the top half of all the rows. Currently I am doing this: <CODE> Dim totalRows As Short = dataGridView.Rows.Count For Each indexRow As DataGridViewRow In...
Back
Top