Click here to Skip to main content
16,007,885 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How do I get a splash screen to transist from one color to another? Pin
Tyrone_whitey28-Feb-06 11:31
Tyrone_whitey28-Feb-06 11:31 
AnswerRe: How do I get a splash screen to transist from one color to another? Pin
Joshua Quick28-Feb-06 11:58
Joshua Quick28-Feb-06 11:58 
Questionfurther question on show "now loading" form before Shell() Pin
cylix200022-Feb-06 23:46
cylix200022-Feb-06 23:46 
QuestionVBIDE Interop bug? Pin
daveekid22-Feb-06 22:54
daveekid22-Feb-06 22:54 
QuestionCan menus appear only upon right clicking? Pin
KaKa'22-Feb-06 21:50
KaKa'22-Feb-06 21:50 
AnswerRe: Can menus appear only upon right clicking? Pin
merlynml22-Feb-06 22:40
merlynml22-Feb-06 22:40 
Question[Resolved] Dataview .RowFilter = "PartNo = '123' AND Ave(Cost)" gives error Pin
RichardBerry22-Feb-06 21:25
RichardBerry22-Feb-06 21:25 
AnswerRe: Dataview .RowFilter = "PartNo = '123' AND Ave(Cost)" gives error Pin
Ritesh123422-Feb-06 23:02
Ritesh123422-Feb-06 23:02 
Hi,

 Dim dtItemCost As New DataTable("Cost")<br />
<br />
      dtItemCost.Columns.Add(New DataColumn("PartNo", GetType(String)))<br />
      dtItemCost.Columns.Add(New DataColumn("Cost", GetType(Double)))<br />
<br />
      Dim drNewItemCost As DataRow<br />
<br />
      drNewItemCost = dtItemCost.NewRow<br />
      drNewItemCost.Item("PartNo") = "123"<br />
      drNewItemCost.Item("Cost") = 10<br />
      dtItemCost.Rows.Add(drNewItemCost)<br />
<br />
      drNewItemCost = dtItemCost.NewRow<br />
      drNewItemCost.Item("PartNo") = "100"<br />
      drNewItemCost.Item("Cost") = 100<br />
      dtItemCost.Rows.Add(drNewItemCost)<br />
<br />
      drNewItemCost = dtItemCost.NewRow<br />
      drNewItemCost.Item("PartNo") = "123"<br />
      drNewItemCost.Item("Cost") = 30<br />
      dtItemCost.Rows.Add(drNewItemCost)<br />
<br />
      drNewItemCost = dtItemCost.NewRow<br />
      drNewItemCost.Item("PartNo") = "100"<br />
      drNewItemCost.Item("Cost") = 105<br />
      dtItemCost.Rows.Add(drNewItemCost)<br />
<br />
      Dim dblAvgCost As Double<br />
<br />
      dblAvgCost = dtItemCost.Compute("Avg(Cost)", " PartNo = '123'")


I hope this will help u...:->

Regards,
Ritesh
GeneralRe: Dataview .RowFilter = "PartNo = '123' AND Ave(Cost)" gives error Pin
RichardBerry22-Feb-06 23:42
RichardBerry22-Feb-06 23:42 
QuestionWhat am I missing here? Pin
Darshon22-Feb-06 20:47
Darshon22-Feb-06 20:47 
AnswerRe: What am I missing here? Pin
Christian Graus22-Feb-06 20:51
protectorChristian Graus22-Feb-06 20:51 
GeneralRe: What am I missing here? Pin
Darshon23-Feb-06 4:55
Darshon23-Feb-06 4:55 
GeneralRe: What am I missing here? Pin
Darshon23-Feb-06 6:21
Darshon23-Feb-06 6:21 
GeneralRe: What am I missing here? Pin
Christian Graus23-Feb-06 10:59
protectorChristian Graus23-Feb-06 10:59 
Questionwhat is this mean? Pin
pandapatin22-Feb-06 20:34
pandapatin22-Feb-06 20:34 
AnswerRe: what is this mean? Pin
Christian Graus22-Feb-06 20:38
protectorChristian Graus22-Feb-06 20:38 
GeneralRe: what is this mean? Pin
pandapatin22-Feb-06 20:46
pandapatin22-Feb-06 20:46 
GeneralRe: what is this mean? Pin
Christian Graus22-Feb-06 20:50
protectorChristian Graus22-Feb-06 20:50 
AnswerRe: what is this mean? Pin
Guffa23-Feb-06 2:32
Guffa23-Feb-06 2:32 
GeneralRe: what is this mean? Pin
pandapatin23-Feb-06 4:22
pandapatin23-Feb-06 4:22 
AnswerRe: what is this mean? Pin
Guffa23-Feb-06 9:21
Guffa23-Feb-06 9:21 
QuestionAutomation of XML Pin
winpoorni22-Feb-06 20:05
winpoorni22-Feb-06 20:05 
AnswerRe: Automation of XML Pin
RichardBerry22-Feb-06 21:44
RichardBerry22-Feb-06 21:44 
QuestionGeneration of XML from Excel---Urgent Help Me Pls Pin
winpoorni23-Feb-06 0:14
winpoorni23-Feb-06 0:14 
AnswerRe: Generation of XML from Excel---Urgent Help Me Pls Pin
RichardBerry23-Feb-06 4:17
RichardBerry23-Feb-06 4:17 

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.