Search results for query: *

  1. D

    Printing Labels

    Hi, I am trying to develop a Win form app to print a repeating label on MS Word Document, 2 x 8 label page (16 Labels). Not sure what is the best way to go, I was using ms word.Application Word.document to display the labels I'm having difficulty printing the second label as I am adding...
  2. D

    Resolved Winforms Desktop App with wpf user control

    A different error now, see my other question on the Forum relating to Installing the new FE
  3. D

    Click Once Install Error

    Hi, I using VS2013 and have developed an application several years ago. Its been working fine until I added a wpf xaml text box to the winform then following underlined code to the manifest file... <?xml version="1.0" encoding="utf-8"?> <asmv1:assembly manifestVersion="1.0"...
  4. D

    Resolved Winforms Desktop App with wpf user control

    Seems to be working now, than you John
  5. D

    Resolved Winforms Desktop App with wpf user control

    I've done that John, but there no entry for the dpiAware ? I copied and added in xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" into first header then below added <asmv3:application> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">...
  6. D

    Choosing a Server-less Database for a Desktop Application

    Hi , IMHO id recommned using MS SQL Server Express, its fantastic, Its easy to install but then its relatively simple to use too. Also tons of support online too! AS well as SQL you can create Stored Procedure, it requires a password to access by default so all very good! No corruption, and...
  7. D

    Resolved Winforms Desktop App with wpf user control

    Hi, I have a winforms desktop App designed in VS 2013 using vb.net on .Net Framework 4.5.2 I added a xaml wpf user control textbox for spell checking text and everything was working great except when I launch the spellchecker form all the forms behind resize/rescale like either dpi or font...
  8. D

    Resolved JSON object as vb classes

    Hi , I found a website that does it... https://jsonutils.com/ But I also used the class object and then access the elements using an array like structure as follows... Not sure if its more efficient or than using classes other than the usual OOP advantages! Dim response =...
  9. D

    Resolved JSON object as vb classes

    Hi, Can anyone process this json into vb classes... this is what I have done so far! { "results" : [ { "address_components" : [ { "long_name" : "1600", "short_name" : "1600", "types" : [...
  10. D

    Resolved Winform Call to Google API to get full address

    Got it working but google don't supply full address! with Irish Eircode!
  11. D

    Resolved Winform Call to Google API to get full address

    Hi, Im designing a winform app to capture the full address using a ggole API to complete the adresses of CLients being added to the system automatically. I have the details from Google A Geocoding API request takes the following form...
  12. D

    Option to copy data from remote mySQL through the office firewall

    Hi, I'm not sure what part of the forum to post this as its really help on a desktop app getting data from a mySQL database on a remote webserver using vb.net I am able to connect to an external mySQL database and return the result of a query and store in a win form datagridview. But from my...
  13. D

    Resolved Winform to capture records from an online mySQL db

    So got the remote connections allowed with my IP address and had to open the port 3306 and using the MySqlConnection string builder it all worked! I am delighted! Thanks for help.
  14. D

    Resolved Winform to capture records from an online mySQL db

    So my code so far is as follows, but doesn't return that data, I get "Cannot connect to server. Contact administrator" what am I doing wrong ? Imports System Imports System.Data Imports MySql.Data.MySqlClient Public Class FrmMySQLData Private ConnStr As String = "" Private conn As...
  15. D

    Resolved Winform to capture records from an online mySQL db

    Thanks for advice jmcilhinney. Now have to code it! anyone done something similar I can use as a template?
  16. D

    Resolved Winform to capture records from an online mySQL db

    Hi, I designing a winform application to capture data stored in a mySQL db on my https website. I am not sure whether to access the mySQL db directly (if I can) or goto a webpage and read the records from it? I have the passwords for both It seems more logical to go straight to the db and...
  17. D

    Resolved Google map API call from winform

    Hi, Got it working thanks, I'm using Eircodes from Ireland so had to add +ire to the string! But thanks for your help worked a treat!
  18. D

    Resolved Google map API call from winform

    Tried this but comig back with error... Dim response = Newtonsoft.Json.JsonConvert.DeserializeObject(Of Response)(content) TextBox1.Text = response.status TextBox2.Text = response.rows(0).elements(0).distance.value Error on last line Object Ref not set to instance of object...
  19. D

    Resolved Google map API call from winform

    So here is the VB.net class code.... Class ValuePair Public Property value As Integer Public Property text As String End Class Class Element Public Property status As String Public Property duration As ValuePair Public Property distance As...
  20. D

    Resolved Google map API call from winform

    I understand that John but you first have to assign the class structure to match and then use the reader to read each element...
Back
Top