Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
18% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
3
0 Endorsements
~4K People Reached
Favorite Forums
Member Avatar for Michael_9

command name can be APP_COMMAND_NAME as const Friend Module Program Private CurrentString As String = String.Empty Public Const APP_RUNNING As String = "Running" Public Const APP_TITLE As String = "Console" Public State_Output As String Public State_List As List(Of String) = New List(Of String) Private commandlist_ As Dictionary(Of String, Action) Private …

Member Avatar for rproffitt
0
419
Member Avatar for Michael_9

# **OLD** # [URL=http://s127.photobucket.com/user/yoda3ddd/media/codemap_zps4115ff7e.jpg.html][IMG]http://i127.photobucket.com/albums/p158/yoda3ddd/codemap_zps4115ff7e.jpg[/IMG][/URL] The Data Namespace Core Friend Module Func Public OkButton As Button Public CancelButton As Button Public ProgBar As ProgressBar Private Sub ProgressLoop() Do Func.ProgBar.PerformStep() Threading.Thread.Sleep(1) Loop End Sub #Region "Constants" Public Const DataRoot As String = "C:\AFormData\" Public Const IMG_PATH As String = "C:\AFormData\img" Public Const …

Member Avatar for Michael_9
0
473
Member Avatar for zebnoon1
Re: C#

Dear Friends, please check my code , i want to uptade data with pressing A+ctrl ... but it dose nto work?cord is bellow... protected override void OnKeyDown(KeyEventArgs e) { base.OnKeyDown(e); if(e.KeyCode==Keys.A && e.Control) { try { scb = new SqlCommandBuilder(da); da.Update(dt); MessageBox.Show("Recode updated", "Update", MessageBoxButtons.OK, MessageBoxIcon.Information); Form2 f1 = new …

Member Avatar for Michael_9
0
250
Member Avatar for k99rs

Hi guys, I am stuck on my code. I am creating Repeater control dynamically. For some reason i cant really get it to work, Maybe someone can tell where i am going wrong. I have one class name "MultipleSelectCategoryRepeaterTemplate" this class will create the repeater Header, Item and Footer dynamic. …

Member Avatar for Michael_9
0
557
Member Avatar for Michael_9

Ok so you boot up a textbox class. Getting this in, in my eyes merely cosmetic. I used a module named programFunction with a string named tboxtext. A Couple of Functions that take a string argument. They do all the checking, making sure it is what was either in file …

Member Avatar for Michael_9
0
360
Member Avatar for Blueie

Hello I am using the following try | catch to locate an error: Try Using conn As OleDbConnection = New OleDbConnection(System.Configuration.ConfigurationManager.ConnectionStrings("students").ConnectionString) Dim Sql As String = "INSERT INTO university (username,[password], strEmail) VALUES (@username,@password, @strEmail)" Dim cmd As New OleDbCommand(Sql, conn) conn.Open() cmd.Parameters.AddWithValue("@username", username.Text) cmd.Parameters.AddWithValue("@password", password.Text) cmd.Parameters.AddWithValue("@strEmail", strEmail.Text) cmd.ExecuteNonQuery() conn.Close() End …

Member Avatar for cgeier
0
195
Member Avatar for UKnod

I have written some code to make an outlook addin, which is working great. Except that the to field from outlook is displaying the contact na,e instead of the actual real address. IE it is displaying geoff instead of someone@gmail.com unfortunatly I want the who address not just the shortened …

Member Avatar for UKnod
0
104
Member Avatar for xn hunk
Member Avatar for Michael_9
0
462
Member Avatar for xuexue

Hi! I am using Data Grid View to display the data from my database. This code works properly. It displays the data. This code is inserted in the Form_Load of the form. Dim cmdCount, cmdGet As New iDB2Command Dim daGet As New iDB2DataAdapter Dim dsGet As New DataSet Dim sqlCount, …

Member Avatar for Michael_9
0
734
Member Avatar for Michael_9

Me being a master noob and making a triangles color change with a console. link to program its shwelf[Click Here](http://www.mediafire.com/download/fwlqbb471ewwsw0/Debug.rar) Public Class main Inherits Windows.Forms.Form Protected gfx As Drawing.Graphics Protected thePoints() As Drawing.Point Public Sub New() InitializeComponent() Console.WriteLine("Form seems to be functioning so far.") End Sub Private Sub InitializeComponent() Me.SuspendLayout() …

0
264