Search results for query: *

  • Users: robertb_NZ
  • Content: Threads
  • Order by date
  1. R

    Resolved Problem with Click-Once Deployment

    My software is made available by click-once deployment from the Jazz Software web site. After an earlier issue was resolved deployment has worked correctly since May 2016, but now it doesn't seem to recognize that a new version is available and download and run it. Clicking the Get Jazz button...
  2. R

    Resolved Web API Question

    I have spent some time working with the tutorial Create web APIs with ASP.NET Core as recommended in my previous query. I'm now trying to generate a client to invoke CICS web service JSPG2 but I'm having trouble with getting my API test to generate. Program JSPG2 is an operation within...
  3. R

    Resolved How to Post to a REST Service

    Program JSPG2 is a COBOL program providing a REST (.json) web service that was generated by MANASYS Jazz, and compiled into a mainframe environment as a CICS web service. I have successfully tested it with SOAPUI. Now I want to develop client-side logic to invoke this service: I want to...
  4. R

    Resolved Warning Messages on publishing

    My software is deployed from my web site using ClickOnce. When I published it I got various warning messages, however everything seems to be OK. Should I be concerned? First there are some messages related to an IBM Add-in: - 1>------ Build started: Project: Jazz, Configuration: Debug x86...
  5. R

    Answered Path.GetFullPath - can't give 2nd parameter

    I have a reference JSPG1I.json that should be resolved relative to another file. It shoujld be simple to get this using Path.GetFullPath(File, Path): - Dim File1 As String = "C:\tutorials\TstSQL\JSPG1.json" Dim Path1 As String = Path.GetDirectoryName(File1) Dim File2 As String =...
  6. R

    Answered Get service interface (Message Formats etc) from Swagger Definition

    REST services following the Swagger (Open UI) standard can supply a .json object describing the services. I can read this .json and deserialize it with JJavaScriptSerializer, and I can see from the .json that it contains the full description of the service and its message formats, either...
  7. R

    Answered Trying to parse json, I can't find JavaScriptSerializer

    I have read a .json file from https://petstore.swagger.io/v2/swagger.json that is quite complex, and I'm trying to find out how to parse it. From Stack Overflow I think I need JavaScriptSerializer, which is in System.Web.Script.Serialization, but when I write Imports System.web. ??? there is...
  8. R

    What's the equivalent of Web.Services.Discovery for a REST service?

    When I need to discover the description of a SOAP (WSDL) service I have been using Web.Services.Discovery. For example Dim Disco As New Web.Services.Discovery.DiscoveryClientProtocol Try Dim Doc As DiscoveryDocument Doc = Disco.DiscoverAny(WSDLFile)...
  9. R

    How do I retain My.Settings values through a software upgrade

    My VB.NET software is delivered through ClickOnce. When users download a new version their settings are lost and they have to reconfigure it, but I want their settings to be retained as far as possible. How do I achieve this? I thought that I'd fixed this problem. I found this paper Client...
  10. R

    ASCII Code of Currency Symbol unexpectedly changed

    MANASYS Jazz is a COBOL-generating programming system. Sometimes I want to generate a line like this, with a currency symbol for Euro, Pounds, or Yen: - 000090 CURRENCY SIGN IS '€' WITH PICTURE SYMBOL '$'. The line is written out with CobolOut.WriteLine(Lineout) CobolOut is defined...
  11. R

    Answered F11 not working as Step Into

    I have just set up a new laptop with the latest software including VS2017 (VS Community 2017, Version 15.8.8). From the VS Debug Menu, Step Into (F11) and Step Over (F10) work perfectly. However while pressing F10 works as Step Over, F11 doesn't but instead toggles Airplane Mode on/off...
  12. R

    Listbox: Set background color when item selected by program

    I have a listbox called lbxDBType. When a value is clicked it is selected and the background color is set blue to highlight it. If my program selects a value by executing lbxDBType.SetSelected(IX, True) this doesn't happen: all values remain plain. Is there a property that I can set that...
  13. R

    Question How do I start a process UNLESS it's already started

    When Jazz has generated COBOL and other objects, it can execute Dim FileNPath As String = "C:\tutorials\MSJazz1\MSJazz1.sln" Dim MFProject As Diagnostics.Process = System.Diagnostics.Process.Start(FileNPath) to invoke Visual Studio to open a COBOL project to test the program. But if the VS...
  14. R

    Question Integrate my software with VS (and other IDE's)

    MANASYS Jazz (http://www.jazzsoftware.co.nz) is currently a stand-alone Windows application delivered through Microsoft ClickOnce. In the next development phase it will be integrating with other software, and it needs to be able to function within Visual Studio and Eclipse, and to be able to...
  15. R

    Question How do I save and restore VScroll position of a RichTextBox

    I have a form containing a RichTextBox called ProgramArea; if the text in ProgramArea exceeds the space available then scroll bars appear automatically. When users click the [CHECK] button their program is checked and the text changed (colored, expanded, error messages, etc), and the RTB is...
  16. R

    How do I test if the browser supports ClickOnce

    MANASYS Jazz (http://www.jazzsoftware.co.nz) is deployed by ClickOnce: the user clicks the Run Jazz link and a dialog starts that downloads and installs the software. This works perfectly if the user's browser is Internet Explorer or Edge, and (as far as I can tell) Firefox, but does not work...
  17. R

    Changing Cursor depending on drop position within a RichTextBox

    I have a RichTextBox representing a program. It is enabled for Drag&Drop, items can be dragged around, and new items can be dragged to it. However some drop positions are invalid, so I?d like to change the cursor between DragDropEffects.None and DragDropEffects.Move, rather than just producing...
  18. R

    Understanding DoDragDrop

    Summary DoDragDrop unexpectedly reset the cursor position. I have a solution but it feels like a kludge. What don't I understand? Is there a better way? Detail I am developing an editor with a RichTextBox. Logic contains essentially this code supporting Drag&Drop Private Sub...
  19. R

    Is it possible to re-order Settings

    As my VB project has developed the number of settings has grown, so that there are now several screens of information in the project's Settings tab. Is there an option to re-order the settings by name? Also, has a Comment column been added in later VS versions (I'm using VS2010)? SORRY...
  20. R

    Debugging a Linkedlist. How do I find out which node I'm pointing out

    I am using a LinkedList(OF String) to build up a program. Like sticking post-it's in a book, I keep track of where I want to put further statements by saving nodes: - Dim Program As New LinkedList(Of String) Dim line As LinkedListNode(Of String) = Program.AddFirst("PROGRAM " &...
Back
Top