Search results for query: *

  1. M

    Save x and y value of chart upon mouse click somewhere on the chart

    Hi, I was looking on the net for a solution to my problem and did not find one directly. In visuals studio 2012 i have a program. In this program i make a chart according to some calculations. Upon finishing the chart calculations, the users gets a new window with the chart displayed on. I now...
  2. M

    fit graph on page

    i would like to be able to fit the graph i want to print to the page. How do i do this? My code so far is fairly easy : Imports System.Drawing.PrintingImports System.Drawing.Graphics Imports System.Drawing.Imaging Imports System.Runtime.InteropServices Public Class Form3 Private Sub...
  3. M

    help needed with printing individual forms

    This data base is used with my vb.net program wich calculates values and sends them to this database, then i would like to be able to print the form buth the part of printing the form is not that easy.
  4. M

    help needed with printing individual forms

    well i already have a nice form : i just can't figure out to make access use this form for the different clients, at the moment he makes a new form with the values of the second cliend underneath the previous form. so if i print i get the form of the previous client(row) adn the second one. if...
  5. M

    help needed with printing individual forms

    hi I have a problem in access. I have a table wich looks like this (has a lot more variables) : i then have created a form wich looks like this: I would like to be able to print this form individualy for client 1 , client 2 and so on, at the moment when i add more info it wil, when i print...
  6. M

    multiple y-axis in chart

    hi I would like to make a graph in vs 2012. The graph looks like this sketch below. It has 3 curves and those 3 curves all have to get a individual y-axis. I can't seem to find out how i can do this. I already got all my points to plot and i use this code: Chart1.Series.Clear()...
  7. M

    datagrid select not responding properly

    thanks i changed some stuf around and it seems to be working i did this differently: Me.Database_dimensioneringTableAdapter1.Insert(TextBox9.Text, resultfromtextbox1, resultfromtextbox7, result1, result3, 0, 0, 0, 0, result5, 0, 0, 0, 0, 0, result4, result7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)...
  8. M

    datagrid select not responding properly

    yes, i used this line of code :Database_dimensioneringTableAdapter.Update(Database_dimensionerenDataSet) when i push a button. buth i can't find an easy explenation on how to puth result1 or result 2 and so on in the first colum of row 1 of the database.
  9. M

    datagrid select not responding properly

    hi, i have a problem in my program (code below). When i select a cell in my datagrid, it's value displays in the textbox2. this works however sometimes it does not change when i select another cell. Can some one help me please? Imports System.IOPublic Class Form1 Dim result1 As Double...
  10. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    well, here it goes wrong, can't convert to double it says if i delete this line all works fine(just without that calculation)
  11. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    i don't realy understand since i don't read vb.. I am new to this. I changed them to As decimal, now the program won't even run. Imports System.IO Public Class Form1 Dim Vijzeldiameter As Decimal = "" Dim Toerental As Decimal = "" Dim Balkdiameter As Decimal = "" Dim Vulhoogte...
  12. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    well i have a screenshot, it's in dutch buth it has somthing to do with a double, i don't get it becos it are all strings. This happens wen e run the programm, fill in the values and click the button to start the calculation:
  13. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    i also get an erro while running it when i put numbers in and calculate. here is my code: Imports System.IO Public Class Form1 Dim result1 As String = "" Dim result2 As String = "" Dim result3 As String = "" Dim result4 As String = "" Dim result5 As String = "" Dim...
  14. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    nice! thanks this worked! Now i only have to be able to puth in my .txt "result='here goes the result from textbox3'" and i have do make a few more calculations(wich i know how to doe) just the part where i puth something infront of the result is a bit hard :( edit: i added "result="&...
  15. M

    Question Write text on .txt file wich i get out of a textbox, without knowing the path

    hi I have been searching the web for a whil and i am stuck in my program. I want to write a value of a textbox on a .txt file. Butch i don't know the path of it becos i have to choose it in the save dialog(wich i want to use ofcours). So how do i get my text in the file? this is my program so...
Back
Top