Search results for query: *

  • Users: divjoy
  • Content: Threads
  • Order by date
  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

    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"...
  3. 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...
  4. 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" : [...
  5. 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...
  6. 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...
  7. 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...
  8. D

    Resolved Google map API call from winform

    I have a winform app and want to add a call a Google API with two or more postcodes and I want the API to return the driving distance between these 2 or more point. I intend to use net.http and newtonsoft JSON object. JohnH posted code for an earlier answer that should help me. The API on...
  9. D

    Form size not working properly

    Hi, I have a from with a Tabcontrol and inside a Datagridivew. I am using windows 10 and VS 2013 When I launch the form it doesn't size to the size as created in the designer. I checked my code and at no point do I adjust the form size programmatically. I been reading on line and it does seem...
  10. D

    Resolved WinForm API call to return result

    HI, I'm testing an API call from a Winforms, I'm using VS 2013. I've been reading a lost about it and was using an API call to a google website to test, but its very confusing, normally I can figure out what happening and get it going but its all very confusing between the imports the events...
  11. D

    Appointment Calendar for a month on one form

    Hi, I am trying to design a monthly calendar to be shown on a form at once. I can do a week using a datagridview, showing each appointment by time and day of the week, but with 31 days it seems difficult to decide which way I should do it. Do I add 31 datagridviews to a single form, that may...
  12. D

    Draw lines around a group of cells in column in a datagridivew

    Hi, Im using VS 2013. I have a datagridview which represents a diary with times from 9:00am increasing every 15 minutes down the left most column. Each other column represents a day of the week Mon to Fri. I want to group a number of cells together in each column with a box around them to...
  13. D

    Referencing an instance of a Form object

    Hi Folks, Here is an issue im not getting my head around, a simple scenario I have 3 classes 2 are forms and 1 patient class. FrmClients, FrmDialog Patient class I create an instance of FrmClients called frmClient and during its operation a user click on a button to open an instance of...
  14. D

    To Bind or not to Bind

    Hi, Im looking for opinions here rather than actual code. I am designing an office application to show a clients details, there a number of ways to implement this, I first present a list of clients and the user chooses the particular client and then I show all the clients details about 20 data...
  15. D

    Get A Report Viewer to Show different reports

    Hi, I having been using VS 2013 for a few months now and decided I would try and get a Report Viewer on a Form to show different reports. I use a Form for the user to choose the report and then on launching the Report Viewer I change the details to show that specific report. There's a few...
  16. D

    Question Key Down not working in Datagridview

    Hi, I am trying to capture a key down (or key press or key up) as I want to count the number of characters in a cell and let the user know how may the have left. The datagridview is tied to a dataset and the column has a max 200 character limit in the database, thus once they go above this the...
  17. D

    Question Report View Report.rdlc passing in datasets

    Hi, I have only started to use the ReportViewer and Report in Visual Studio 2013 and I am finding it very confusing to be honest, I cant find a good example or even explanation of how the whole thing links together so far as I can work out it goes like this. 1) Add a new Report or Report...
  18. D

    filtered comboboxes in datagridview

    Hi, I have 2 comboboxes in a datagridview and depepending on what value I choose in the first combobx I want the second combobox to be filtered to a subset of its orginal list of values. This would ean that each rows combobox woudl show a different list of values. From looking on the net the...
  19. D

    Concurrency Violation

    Hi Guys, I am using VB.net 2010 and SQL Server 2008 R2 express. I've been reading all about concurrent violation on the web as its an occasional problem on my system too. I think I understand why its happening i.e. data changed in datagridview and dataset doesn't match underlying data in sql...
  20. D

    messagebox text

    Hi Guys, I use message box.show a lot in my apps but am looking for some way to format the message text to make it larger and for it to stand out. I scoured the net but couldn't find any answer. Maybe it can't be done! Kind regardd
Back
Top