Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~4K People Reached
Favorite Tags
Member Avatar for dr_iton

Is there a possibility to hide a column from gridview even if you get that value from DB? I have populated a grid view with some columns from database with following procedure sending a parameter: SqlConnection sqlConn = new SqlConnection(StringKoneksioni.Stringu); using (sqlConn) { SqlCommand sqlCmd = new SqlCommand("procProcedureName", sqlConn); sqlCmd.CommandType …

Member Avatar for Taywin
0
148
Member Avatar for dr_iton

I'm having problem filling the dropdownlist with data from database in a windows based application. I know how to do that in ASP.NET, but I can't find a solution in .NET 4.5 windows based. public void Paraqit_ddListKlasa() { DataTable dt = new DataTable(); SqlConnection sqlConn = new SqlConnection(StringKoneksioni.Stringu); sqlConn.Open(); string …

Member Avatar for kamilacbe
0
216
Member Avatar for dr_iton

I created a three layer application with BO (Business Objects), BLL (Business Logic Layer) and DAL (Data Access Layer). I had to do some unit testing using nUnit tool. I've done that like following and works perfectly: SQL Tables: USE [Projekti_TI_1] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO …

Member Avatar for dr_iton
0
193
Member Avatar for dr_iton

I created a three layer windows based application. I'm trying to make a unit testing using NUINT, but the problem is that I don't know how to access the method. I created my application in this manner : I'll try to test the method Shto(Klasa obj) Business Object namespace "BO" …

Member Avatar for darkagn
0
208
Member Avatar for dr_iton

I made a program server and client, The problem is that I don't know how to send the data from Server to Client for example from listBox at a Server to show those data in a client Listbox. I made some code but still no result. private string ip = …

Member Avatar for dr_iton
0
226
Member Avatar for dr_iton

I created a program with twoo projets like Client and Server. To open a form in a button click with one prject goes like following: private void buttonOpenForm_Click(object sender, EventArgs e) { Form2 frmForm2 = new Form2(); frmForm2.Show(); } If I'm calling the Form2 from Server project, I don't know …

Member Avatar for caKus
0
153
Member Avatar for dr_iton

I created a sofware to register students, subjects and their grades if they past the examination. I used text files to store the data (three text files). Also i Created four forms like following: http://i444.photobucket.com/albums/qq165/dr_iton/DRITONGASHI-PC/paneli.jpg http://i444.photobucket.com/albums/qq165/dr_iton/DRITONGASHI-PC/studentet.jpg http://i444.photobucket.com/albums/qq165/dr_iton/DRITONGASHI-PC/lendet.jpg http://i444.photobucket.com/albums/qq165/dr_iton/DRITONGASHI-PC/vleresimet.jpg The program it works perfect, but now i have to separate the …

Member Avatar for tinstaafl
0
110
Member Avatar for dr_iton

I created a software in Windows Form Application that includes two Forms. In the form1 there are some textboxes and a listbox. One of textboxes i populated in a listbox with followin method. the name of textbox is xhirollogariaBox Random rasti = new Random(); int numri = rasti.Next(10000000, 99999999); xhiro …

Member Avatar for tinstaafl
0
154
Member Avatar for dr_iton

I need to create a software that manages a bank account. I created 2 forms. Form one (Form1 "in reality is KlientetForm") has 5 textboxes, 6 buttons and a listbox. Form twoo (Form2 "in reality is GjendjaForm") has 3 textboxes (the same name as in Form1), 2 listboxes and 3 …

Member Avatar for tinstaafl
0
353
Member Avatar for dr_iton

I'm a student and I have to make a program with Console application to manage a Bank Account, using Classes. The program must be able to: - Create e new bank account - Deactivate a bank account - Draw money from account - show the account balance I tried to …

Member Avatar for dr_iton
1
2K
Member Avatar for dr_iton

**I created a text file using following method:** using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace FajlliTekstual { class Program { static void Main(string[] args) { FileStream fileStream = new FileStream("shenime.txt", FileMode.Create, FileAccess.Write); TextWriter writer = new StreamWriter(fileStream); Console.WriteLine("Someone Else"); writer.WriteLine("Bla Bla"); writer.WriteLine("Bla Bla"); writer.WriteLine("Unkown Person"); writer.Close(); …

Member Avatar for Mike Askew
0
204
Member Avatar for dr_iton

Ok lets start with my problem: First i have to write my date of birth with the following format: DD.MM.YYYY This needs to be shown as DDMMYYYY, which means that dots must be lost. I've solved that. This kind of number with 8 digits it needs to be converted in …

Member Avatar for dr_iton
0
157
Member Avatar for dr_iton

I need help in the following C# programming: [I]Vehicle manufacturers always offer new saving fuel cars to new drivers. The Renault manufacturer has taken this in consideration and offered new car Renault Clio to a driver Syle LeSylani for one year use. Syle has kept evidence of past kilometers at …

Member Avatar for thines01
0
137