Search results for query: *

  • Users: Ivo
  • Order by date
  1. Ivo

    Acces denied when i try to save to a location. Its my database to backup...

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Data.SqlClient; namespace SignalWatch { public partial class...
  2. Ivo

    Resolved How pass a String from a Array to a Methode as - private void Label_1_Paint(object sender, PaintEventArgs e) to verticalize the Label

    Hi, i understand what you mean, but please, im not a pro coder, i need help . I want to get a string out of a array, passing to a methode, where i use the paint methode to become vertical text, but the string will varry, so as example, a random pick from out a array of strings passing to that...
  3. Ivo

    Resolved How pass a String from a Array to a Methode as - private void Label_1_Paint(object sender, PaintEventArgs e) to verticalize the Label

    Please, can you show a small example about what you mean ? You can't pass anything to an event handler because you don't call the event handler. What you need to do is to put the required data somewhere and then the code in the event handler gets it from there. That would most like be a private...
  4. Ivo

    Resolved How pass a String from a Array to a Methode as - private void Label_1_Paint(object sender, PaintEventArgs e) to verticalize the Label

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Media; using System.IO; namespace SignalWatch { public partial...
  5. Ivo

    Resolved Help for Converting

    Thanks for all, the chLT_UTC1.Checked = Convert.ToBoolean(dgwWorkflow.CurrentRow.Cells[123].Value); does work, and solved the problem I learn a lot from the helping hands here on the forum, im Autodidact, so i try to learn from my mistakes, and the help from this nice people on this forum...
  6. Ivo

    Resolved Help for Converting

    It contains a BOOL a 0 or 1 I just dont know how to put that value of BOOL to a Checkbox in WinForm Sorry im not clear, im realy beginner, and try to understand all.... Thanks in advance for all the help
  7. Ivo

    Resolved Help for Converting

    dgwWorkflow.CurrentRow.Cells[123] // is the checkedstate value in my SQL database example [ 1 ] i tried this but thats not working : chLT_UTC1.Checked = dgwWorkflow.CurrentRow.Cells[123].Value.ToString() == "1"; how can i check myCheckbox on my winform with the value from that...
  8. Ivo

    Resolved SQL Database issue / sqlConnection

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace CRUD { public partial class Form1 ...
  9. Ivo

    DataBinding problem

    WinForms for .NET Framework Hope i can solve it
  10. Ivo

    DataBinding problem

    Access Database is made and ready for use I try to make as usual the databinding, but seems not available for this window, and dont know why I cant find the solution, even not on that website the mention.... See attached screenshot Hope someone can help me out with this
  11. Ivo

    snmp error ( Reached max try ) Need help to catch the trap in...

    Exception with code 13 of SnmpSharpNet PS : im novice
  12. Ivo

    snmp error ( Reached max try ) Need help to catch the trap in...

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using SnmpSharpNet; namespace snmpwalk { public partial...
  13. Ivo

    Question PATH for StreamReader

    I realy dont know why its translated, looks strange and weird..... And yes, it passed the compiler, its a UNDERSCORE no MINUS !
  14. Ivo

    Question PATH for StreamReader

    I found myself This code is working ! namespace Var_List { public partial class frmQRcode : Form { public string Path { get; set; } public frmQRcode() { InitializeComponent(); } private void btnStop_Click(object sender...
  15. Ivo

    Question PATH for StreamReader

    Thanks for the reply I have put my code as you asked when i use a string as PATH, it dont work, even the string contains test.txt, when i put "test.txt", it works Thanks in advance
  16. Ivo

    Question PATH for StreamReader

    Hoe kan ik hier een correct pad voor maken? het werkt zo, maar als ik een string als pad gebruik, werkt het niet, fout zeg ACCEPT NO NULL ik ben een beginner openbare gedeeltelijke klasse frmQRcode : Form { openbare string tbDoorgeef { get; set; } // transfered from other FORM openbare...
Back
Top Bottom