Click here to Skip to main content
15,888,590 members
Home / Discussions / C#
   

C#

 
QuestionPlaying contineous sound file on word document1 Pin
sulabh202014-Apr-07 2:27
sulabh202014-Apr-07 2:27 
QuestionAdding Bullets using c# code Pin
sulabh202014-Apr-07 2:20
sulabh202014-Apr-07 2:20 
AnswerRe: Adding Bullets using c# code Pin
Sathesh Sakthivel14-Apr-07 4:46
Sathesh Sakthivel14-Apr-07 4:46 
Questionhow to Create setup with .net Framework Pin
Nkuttynasi14-Apr-07 2:00
Nkuttynasi14-Apr-07 2:00 
AnswerRe: how to Create setup with .net Framework Pin
Christian Graus14-Apr-07 2:14
protectorChristian Graus14-Apr-07 2:14 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi14-Apr-07 3:02
Nkuttynasi14-Apr-07 3:02 
GeneralRe: how to Create setup with .net Framework Pin
Christian Graus14-Apr-07 13:39
protectorChristian Graus14-Apr-07 13:39 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi16-Apr-07 6:24
Nkuttynasi16-Apr-07 6:24 
AnswerRe: how to Create setup with .net Framework Pin
sulabh202014-Apr-07 2:34
sulabh202014-Apr-07 2:34 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi14-Apr-07 2:55
Nkuttynasi14-Apr-07 2:55 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi14-Apr-07 2:57
Nkuttynasi14-Apr-07 2:57 
GeneralRe: how to Create setup with .net Framework Pin
Jaiprakash M Bankolli14-Apr-07 4:07
Jaiprakash M Bankolli14-Apr-07 4:07 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi16-Apr-07 6:21
Nkuttynasi16-Apr-07 6:21 
GeneralRe: how to Create setup with .net Framework Pin
Jaiprakash M Bankolli16-Apr-07 6:42
Jaiprakash M Bankolli16-Apr-07 6:42 
AnswerRe: how to Create setup with .net Framework Pin
sulabh202015-Apr-07 18:18
sulabh202015-Apr-07 18:18 
GeneralRe: how to Create setup with .net Framework Pin
Nkuttynasi16-Apr-07 6:12
Nkuttynasi16-Apr-07 6:12 
Questionpanel to image Pin
haseeb_saeed14-Apr-07 1:15
haseeb_saeed14-Apr-07 1:15 
AnswerRe: panel to image Pin
Luc Pattyn14-Apr-07 1:32
sitebuilderLuc Pattyn14-Apr-07 1:32 
GeneralRe: panel to image Pin
haseeb_saeed14-Apr-07 23:13
haseeb_saeed14-Apr-07 23:13 
GeneralRe: panel to image Pin
Luc Pattyn15-Apr-07 0:09
sitebuilderLuc Pattyn15-Apr-07 0:09 
Questionxpath not working [modified] Pin
praveenkumar palla14-Apr-07 1:01
praveenkumar palla14-Apr-07 1:01 
Questionxpath not working Pin
praveenkumar palla14-Apr-07 1:01
praveenkumar palla14-Apr-07 1:01 
AnswerRe: xpath not working Pin
Christian Graus14-Apr-07 1:09
protectorChristian Graus14-Apr-07 1:09 
QuestionProblem with refill of listview after removal in database Pin
henur13-Apr-07 23:48
henur13-Apr-07 23:48 
AnswerRe: Problem with refill of listview after removal in database Pin
Christian Graus14-Apr-07 0:12
protectorChristian Graus14-Apr-07 0:12 
henur wrote:
String xid = this.Katalog.Items[idx].SubItems[5].Text;
int tabortid = this.Katalog.Items[idx].Index;
clsReadKatalog.TaBortPost(xid); // DELETE FROM DATABASE


Wouldn't a proc that takes a collection of Ids to delete make more sense ? What is tabortid used for ?

henur wrote:
Lista.Items.Clear();
int x=0;
while (Reader.Read())
{
Lista.Items.Add(Convert.ToString(Reader["beskr"]));
Lista.Items[x].SubItems.Add(Convert.ToString(Reader["anv"]));
Lista.Items[x].SubItems.Add(Convert.ToString(Reader["pwd"]));
Lista.Items[x].SubItems.Add(Convert.ToString(Reader["privatekey"]));
Lista.Items[x].SubItems.Add(Convert.ToString(Reader["vektor"]));
Lista.Items[x].SubItems.Add(Convert.ToString(Reader["id"]));
x += 1;
}
Reader.Close();


If this pulls out data you thought you deleted, then you can't possibly have deleted it. Unless the reader was created before something was deleted, but that doesn't seem possible, either.



Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.