Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #2K
~23.6K People Reached
Favorite Forums

38 Posted Topics

Member Avatar for vinaya
Member Avatar for ddanbe
0
11K
Member Avatar for bestonearth

@bestonearth - where are you going to compare userid and password? Code or Database? Be specific in asking help. @jaryle - incorrect thread to post

Member Avatar for Mike Askew
-1
206
Member Avatar for elidotnet
Member Avatar for prathamesh3090
1
7K
Member Avatar for muzikhera

Hi guys, I dont know what is the problem with this im trying to refresh my datagridview here my simple code to refresh. [CODE]this.TableAdapter.Fill(this.DataSet.Table);[/CODE] But nothing happens still the same. Please help. ;)

Member Avatar for lolafuertes
0
89
Member Avatar for muzikhera

Hi guys Can anyone help me with this one? I want to insert a loop in my code to read all the data in excel file here's a portion of my code. [CODE] private void btnUpdate_Click(object sender, EventArgs e) { string directory = "D:/myFile.xls"; if (File.Exists(directory)) { Excel._Application myPartFile = …

Member Avatar for lolafuertes
0
148
Member Avatar for muzikhera

Hi there, Im using c# i have a button save and a datagridview. I have textbox and binding navigator that gets the data from database1. Once i click the save button the data in my textbox save to another database2. Now i want to have a loop that continous get …

Member Avatar for muzikhera
0
118
Member Avatar for moshe12007
Member Avatar for muzikhera

I have my code on how to encrypt my app but i want my app to have be fixed encrypted app. For security purposes. Below is my code. [CODE]try { Configuration config = ConfigurationManager.OpenExeConfiguration(exeConfigName); ConnectionStringsSection section = config.GetSection("connectionStrings") as ConnectionStringsSection; section.SectionInformation.ProtectSection("DataProtectionCOnfigurationProvider"); config.Save(); Console.WriteLine("Protected = {0}", section.SectionInformation.IsProtected); } catch (Exception ex) …

Member Avatar for zachattack05
0
141
Member Avatar for sathish88

Just simply add your database in your setup project in order to include the database during installation.

Member Avatar for mono_jit23
0
162
Member Avatar for muzikhera

Guys need help with this one. Here's the condition / algorithm. "If first digit is number/int and last digit is letter add two zero in front of the string" Hoping for any idea! Thanks.

Member Avatar for Mitja Bonca
0
385
Member Avatar for muzikhera

Can someone help me on how to transfer data from a folder with lots excel file to access. here's my code I dont know why does it not working. [CODE] namespace import { public partial class Form1 : Form { public Form1() { InitializeComponent(); fbdDialog = new FolderBrowserDialog(); fbdDialog.SelectedPath = …

Member Avatar for muzikhera
-1
112
Member Avatar for salmap

In properties it has "NAME" which has a default of label1 just change it to your desire name for the label. Hope this can help!

Member Avatar for abelLazm
0
234
Member Avatar for krii017

I've already tried this one during my development and i wanna share this code to you. Just replace the necessary variables and others to fit in to your project. Hope that this could help you. [CODE] SqlConnection Connect = new SqlConnection(); Connect.ConnectionString = @"Data Source=BURBANK\SQLEXPRESS;" + "Initial Catalog= ERPdb;" + …

Member Avatar for krii017
0
160
Member Avatar for ashley11

Check this link, hope it helps. [url]http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/0c1fa93c-1687-405f-9672-6167d198d475/[/url] Antonette

Member Avatar for Mitja Bonca
0
102
Member Avatar for chathuD

Try to create setup together with your database. Import it as your reference so that during your installation all of this is compact as one. Hope this help you. LibraGirl #03

Member Avatar for mono_jit23
0
520
Member Avatar for ibdatx
Member Avatar for ami7
Member Avatar for Mr.BunyRabit
Member Avatar for hopefree
Member Avatar for muzikhera

Hi! I have datatable name myTable with columns and row. Can someone give me solution on how to multiply/repeat the first row data to the succeeding row depending on the inputted copies by user in a textbox? Please help me with this one.

Member Avatar for abelLazm
0
73
Member Avatar for muzikhera

Hi everyone! How to save image from picturebox to Datatable and display to crystal report. Any idea would help. Thanks and regards to all programmers!

Member Avatar for Knvn
0
116
Member Avatar for muzikhera

I'm confuse here: I have main form named frmMain and other form named frmReport. I want to get the value of the textbox from frmMain and display to frmReport. My frmReport is consisting of crystalreportviewer. Please guys help me with this one. Advance thanks.

0
69
Member Avatar for muzikhera

I need help onhow to handle image temporarily. Like: String a; a = textbox1.Text; Hope anyone can help. Thanks!

Member Avatar for ddanbe
0
73
Member Avatar for kheddy

Hope this line of code gives you idea. I made this as simple as i can. [CODE] private void btnClickMe_Click(object sender, EventArgs e) { SqlConnection Connect = new SqlConnection(); Connect.ConnectionString = @"Data Source=BURBANK\SQLEXPRESS;" + "Initial Catalog= ERPdb;" + "Persist Security Info=True;" + "User ID=antonette;" + "Password=ilovemis"; Connect.Open(); SqlCommand cmd = …

Member Avatar for muzikhera
0
497
Member Avatar for Arjun_Sarankulu

Use SELECT Statement to retrieve data from database and display to combobox. User can now select a specific data in combobox then add an INSERT statement to save to your database. Hope this can help.

Member Avatar for akshintlakalyan
0
104
Member Avatar for muzikhera

I need to print string (from my textboxes) in a network printer. I can print when the printer is directly attach to my PC while when i print to network printer it gives me NOTHING. Here's my code: [CODE] private void chkPrint_CheckedChanged(object sender, EventArgs e) { //foreach (String printer in …

0
84
Member Avatar for muzikhera

I have Database name LoginUser with corresponding fields name such as User, Login and Logout. Im done in inserting data once the user Log to the system. Heres the sample layout once the user tried to log. User................Login............................Logout Abigail.........12/29/2010 3:08:42 PM James..........12/29/2010 3:09:45 PM Abigail.........12/29/2010 3:30:45 PM PROBLEM: 1) I …

Member Avatar for kvprajapati
0
93
Member Avatar for paresh_thummar

Click on your textbox then go to properties and look for "USESYSTEMPASSWORDCHAR" and set it as TRUE. Always explore properties for basic changes.

Member Avatar for muzikhera
-1
104
Member Avatar for muzikhera

I have table name Logs with a field name user , login, logout. Once the user log his/her name is being inserted to the db. My question is how i can update/insert the date to the logout field of the current user whose using my application? And can someone give …

Member Avatar for muzikhera
0
155
Member Avatar for madhan

Your having trouble in your data source try to rebuilt it again! Hope this could help.

Member Avatar for muzikhera
0
59
Member Avatar for jlininger

just simply set it into center Syntax: myform.CentertoScreen(); Hope this could help!

Member Avatar for Diamonddrake
0
101
Member Avatar for muzikhera

i have two related table name employee and userloginlogs. In my program user must first log username and password located at employee table. If the user already logged in i want to get the employeeID at employee table then save it to userloginlogs table plus the login and logout date …

Member Avatar for muzikhera
0
136
Member Avatar for DioRani

Try to use this line of code. Just simply change your own variable then run. May this line of code can help you. private void btnLogin_Click(object sender, EventArgs e) { SqlConnection Connect = new SqlConnection(); Connect.ConnectionString = @"Data Source=BURBANK\SQLEXPRESS;" + "Initial Catalog= ERPdb;" + "Persist Security Info=True;" + "User ID=antonette;" …

Member Avatar for muzikhera
0
162
Member Avatar for muzikhera

Hey guys can someone help me with this one? I have 4 forms namely Splash screen, Main, Login and Main1. In the first run the program will view the Splash screen then the Main form then the Login form and after the Main1. The problem is i cant close the …

Member Avatar for prvnkmr449
0
81
Member Avatar for muzikhera

How to retrieve data from the database with the field name employeeID in the table employee i try to use SELECT employeeID FROM employee but it does not work. Can someone give me a meaningful code for retrieving my data? I have login form with the login button. I want …

Member Avatar for Momerath
0
89
Member Avatar for muzikhera

Can someone help me how to insert date in database? I try it already but it gives me error cannot convert to string! Any help is appreciated. Thank you in advance!

Member Avatar for rohand
0
139
Member Avatar for vincezed

set ur the data source ur going to use in "app.config" Ex. [code=text] <add name="Employee_Maintenance.Properties.Settings.ERPConnectionString" connectionString="Data Source=Kepler\SQLEXPRESS;Initial Catalog=ERP;Persist Security Info=True;User ID=antonette;Password=ilovemis" providerName="System.Data.SqlClient" /> [/code] or try to visit connectionstring.com! Then try to use the line of code below. [code] private void btnLogin_Click(object sender, EventArgs e) { SqlConnection Connect = new …

Member Avatar for muzikhera
0
218
Member Avatar for silaj

sure just post any questions that u need to know there are lots of active members of this forums! Just shout it out.

Member Avatar for ITchimes
0
74