4,588 Topics

Member Avatar for
Member Avatar for mark261511
Member Avatar for Khan2014

Hi, I have some experience in c# and would like to get more experience of C# with sql, because alot of jobs look for databases. Can anyone me recommend any good books or online tutorials for begineers. Thanks alot,

Member Avatar for James E
0
134
Member Avatar for sammis

How to Add a search button in C# after that how to link the searched information to further. for example: if i search name then how can i link the name to photo and other specfic information in new popup box or new form?

Member Avatar for Mr.M
0
125
Member Avatar for Johnson Antony

Hi I am developing a c# Winforms application using VS 2008 and DevExpress. In one form, I need the some data to be added both in English and Chinese Language. So I placed separate textboxes for both Chinese and English and two buttons on form. one Button click shows Chinese …

Member Avatar for clairestreb
0
489
Member Avatar for yoyoo

Hello there, I need to convert mdf file into sdf file using C#. Please any help will be greatly appreciated. Thanks a lot, yoyoo

Member Avatar for muka12
0
69
Member Avatar for mark261511

cmdInsert.Parameters.Add(new OleDbParameter("@Student_Section", OleDbType.VarWChar, 50, "Student_Section")); cmdInsert.Parameters.Add(new OleDbParameter("@Birth_Month", OleDbType.VarWChar, 50, "Birth_Month")); cmdInsert.Parameters.Add(new OleDbParameter("@Birth_Date", OleDbType.VarWChar, 50, "Birth_Date")); cmdInsert.Parameters.Add(new OleDbParameter("@Birth_Year", OleDbType.VarWChar, 50, "Birth_Year")); cmdInsert.Parameters.Add(new OleDbParameter("@Gender", OleDbType.VarWChar, 50, "Gender")); cmdInsert.Parameters.Add(new OleDbParameter("@Picture", OleDbType.Binary,50, "Picture")); //<<----//I do not know the proper format of saving.. cmdInsert.Parameters.Add(new OleDbParameter("@Teacher", OleDbType.VarWChar, 50, "Teacher"));

Member Avatar for Ketsuekiame
0
203
Member Avatar for BegginerLance

Hello there? im starting to learn C# language and i really enjoy it, and my teacher wanted us to search a code that can determine an inputed number up to 10 what is lowest and highest. please sir/ maam i need a response (sorry if i don't have good english).

Member Avatar for BegginerLance
0
150
Member Avatar for sanjeewa.abeywardana

I have heard that table security for data stored in the table can be made by storing Hashbyte data in a column. So anyone comes and change values manually in a table will be identified and that record be ommited for further calculation Need help on these areas CREATE TABLE …

Member Avatar for Ketsuekiame
0
190
Member Avatar for PulsarScript

Hi all,here is the code c# Array.Copy,what does the o means in the code block? using System; class Program Hi all what does the 0 means in the code block? using System; class Program { static void Main() { int[] values1 = { 4, 4, 4 }; int[] values2 = …

Member Avatar for deceptikon
0
550
Member Avatar for mjbor1

i developing a poster software, when i'm trying to post a link it give the following exception facebook api exception #100-invalid here's my code public static bool post(string accesstoken,string status,string link) { try { FacebookClient fb = new FacebookClient(accesstoken); Dictionary<string, object> postArgs = new Dictionary<string, object>(); postArgs["message"] = status; if …

Member Avatar for mjbor1
0
1K
Member Avatar for PulsarScript

//Hi all just switching from c++ to c#.Can anyone help,with the question i have: //this is a peace of code from c++ banking aplication int ShowMenu(void); void AddAccount(vector<CAccount*>& list); void DisplayAccount (vector<CAccount*>& list); void Lodgement (vector<CAccount*>& list); void Withdroawal (vector<CAccount*>& list); void InterestRate (vector<CAccount*>& list); CAccount* findAccount (vector<CAccount*>string ); bool …

Member Avatar for ddanbe
0
2K
Member Avatar for humorousone

I'm creating my first github repo in C# (compatability has only just been added), and I'm really unsure of how to structure my project. I know that many languages have folders like: /src /builds though i'm not sure how this would apply to C#. There's this C# project, although it …

Member Avatar for deceptikon
0
246
Member Avatar for mark261511
Member Avatar for yoyo30

When user click on the button "back",it should go back to "HomeStudent.aspx",but unfortunately its not working and no error shown.Do help me. <%@ Page Title="Advertisement" Language="C#" MasterPageFile="~/AccommodationStudent.master" AutoEventWireup="true" CodeFile="Advertisement.aspx.cs" Inherits="Advertisement" %> <%@ Register TagPrefix="ajax" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server"> <style type="text/css"> .style1 { width: 224px; } </style> </asp:Content> …

Member Avatar for yoyo30
0
3K
Member Avatar for Alxprog

In my Windows Forms c# project I try to connect to an already existing ms sql database file (added binding Source on the form, then : bindingSource -> properties -> DataSource -> add source - > .... ) but when I pick this file it writes something like "You dont …

Member Avatar for Alxprog
0
283
Member Avatar for Garidius

I'm trying to add a progress bar to a working theaded program that uses a cancelation token too. The structure of the program is: I have a button "BeginButton" that calls the function "MyFunction()". The function runs in another thread and a cancellation token listens if I press a Cancel …

Member Avatar for Garidius
0
2K
Member Avatar for ramyking
Member Avatar for BibhutiAlmighty

can anyone suggest me a good English Dictionary API for C# windows forms application. I tried using "NHunspell" but i found it very difficult to use ? Please Help !!!!!!!!!!!!!

Member Avatar for ddanbe
0
96
Member Avatar for chanedgar1791

hi, I am creating a C# application and I am wondering how can I create a custom setup project. not the conventional one provided by visual studio. I would like to add a status bar and create my own folders and insert the required files to the folders, etc.. any …

Member Avatar for gusano79
0
345
Member Avatar for kkk122

Hello, I am trying to pass file path as command line argument. If the path without spaces it works fine. with spaces it is not. Please find my code below. string scriptFilePath = "@" + Directory.GetCurrentDirectory() + "\\" + scriptFile; // exact path string scriptPath= " \"" + scriptFilePath + …

Member Avatar for tinstaafl
0
7K
Member Avatar for ajithkumardr

Im intrest in learn the C# programming language and also doing project in C# .Could anybody help me..

Member Avatar for ddanbe
-1
235
Member Avatar for Taufique111

I have two datagrid's in one form,so when i click by using cellclick event it shows the selected row of first datagrid in the second datagrid,so my question is how to increment it with the previous selected row of first datagrid,as i select other row the first selected row disappears??

Member Avatar for Taufique111
0
309
Member Avatar for burhanahmed92

I tried to save rows in listview control in database but i am not able to loop through each row. My listview is multicolumn, it have 4 column. I tried for loop: for (int i = 0; i < listview.Items.Count; i++) { String abc = listview.Items[i].Subitem[i].Text; //other varables } But …

Member Avatar for SteveDotNet
0
2K
Member Avatar for Noorul Ariff

Hi Friends, I want to do a project for Parsing Resume in C#. i.e when we upload resumes(More than 100), it should extract Name, email id, phone no, skills. **Please don't tell that software’s are available. I tried those soft wares, but they are not working properly.** So, I wanted …

Member Avatar for overwraith
0
1K
Member Avatar for Taufique111

Hello Everyone. I'm basically new to c# database project so any can give me code as to pass a data value from one datagrid table to other form with another data grid view table . also i wanted to know as how to get specific value of a row when …

Member Avatar for Taufique111
0
112
Member Avatar for Bungie

Hi guys I was wondering how to make a button that revealed one textblock on the first press, another on the second press, and a third on the third press. Also on the fourth press I want the button to change to another form. Is this possible?

0
133
Member Avatar for Ray_2

I'm trying to write Fibonacci code for the first 100 numbers. It works until I get to number 94. 93 12200160415121876738 ok 94 1293530146158671551 mine 94 19740274219868223167 should be this I'm stumped as to why it doesn't work after 93. Can someone point me in the right direction? The code …

Member Avatar for Ray_2
0
176
Member Avatar for maria_mj

I have problem to copy data from one table to another table in SQL database. I am develop the system using C#.Net. I have searching about it from internet, but it not works. I have two table: 1) Project_Pipeline (company_name, project_name, project_revenue, gross_profit, category_pipeline, status_pipeline, bde_name, deadline, remark, pipeline_id) 2)Proposal_listing …

Member Avatar for wria12
0
6K
Member Avatar for 111ron222

Hi everybody, I have this XML file,, [code] <users type="array"> <user> <id>12345567</id> <name>Ronsna Stedinberg</name> <screenname>Donnsax</screenname> <location>New York</location> </user> <user> <id>12345568</id> <name>Sonsna Dtedinberg</name> <screenname>Nonnsax</screenname> <location>Las Angeles</location> </user> </users> [/code] and I wonder how can I read all the id's info in the xml? (the <user> </user> is repeat 50 times, so …

Member Avatar for shwetawaghmare
0
913
Member Avatar for rohitashpal

//I am creating a table in MS word using the foll code, but I am not able to move my cursor out of the table due to which my other components are getting created inside the table, what should I do to get cursor below the table. private void Drawtable_Click(object …

0
47

The End.