Click here to Skip to main content
15,918,108 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: client/server read and write Pin
Dave Kreskowiak8-Jun-04 6:47
mveDave Kreskowiak8-Jun-04 6:47 
GeneralRe: client/server read and write Pin
fo0lish9-Jun-04 14:59
fo0lish9-Jun-04 14:59 
GeneralRe: client/server read and write Pin
Dave Kreskowiak9-Jun-04 15:30
mveDave Kreskowiak9-Jun-04 15:30 
Generaladding days to current day being displayed Pin
devgeez8-Jun-04 5:08
devgeez8-Jun-04 5:08 
GeneralRe: adding days to current day being displayed Pin
Dave Kreskowiak8-Jun-04 5:38
mveDave Kreskowiak8-Jun-04 5:38 
GeneralRe: adding days to current day being displayed Pin
devgeez8-Jun-04 8:16
devgeez8-Jun-04 8:16 
GeneralRe: adding days to current day being displayed Pin
Dave Kreskowiak8-Jun-04 8:43
mveDave Kreskowiak8-Jun-04 8:43 
GeneralRe: adding days to current day being displayed Pin
devgeez9-Jun-04 4:45
devgeez9-Jun-04 4:45 
thanks for the feedback...ill make sure and do that.
since all i need to wrap up the project I am hoping that you can share some advice.
This is a display page that already has the values submitted. I am quering the database and bringing the values already submitted on the original form to be display. Where I need the dates +30, 60 or 90 are on my admin page. On this page there are 2 dropdownlist that you can select a topic and the status and then displays the datagrid based on the selection. Lets say I made my selection on the results table it displays rows with the following a row that has the date the form was submitted / name of the form /the department where the form originated from and a link to actually view the form.
ie: <asp:DataGrid ID="dg" Runat="server" Visible="False" Cellpadding="4" Autogeneratecolumns="false" allowSorting="true" OnSortCommand="dg_SortCommand">
<columns>
<asp:boundcolumn headertext="REQUESTED COMPLITED DATE" Datafield="datesubmit" DataFormatString="{0Big Grin | :-D }" SortExpression="datesubmit" />
<asp:BoundColumn HeaderText="PRODUCT NAME" DataField="txtProductName" SortExpression="txtproductname" />
<asp:BoundColumn HeaderText="DEPARTMENT" DataField="deptname" SortExpression="deptname" />
<asp:HyperLinkColumn HeaderText="VIEW DETAILS" DataNavigateUrlField="reqid" DataNavigateUrlFormatString="CscReqDetails.aspx?reqid={0}"
Text="View Details" HeaderStyle-CssClass="RedLink"></asp:HyperLinkColumn>
</columns>
</asp:DataGrid>
I need to change the datesubmit based on the selection from the time RadioButtonList id="Time" selection the user makes when he first submits the original form. lets day form was submitted on June 15th, 2004 and they selected that the form needs to be evaluated within 30 days then i need to display on this datagrid July 15th, 2004 as the date. This is what I am trying to accomplish.
thanks for the advice.
I have created the follwing sub function but I am not seing the dates + the time requested for the evaluation.
Sub GetDate()
Dim datesubmit As Date = datesubmit 'System.DateTime.Now.Date
Dim strHold As Date
Dim rdlTime As String
Select Case rdlTime
Case "Standard (within 90 days)"
datesubmit = datesubmit.AddMonths(3)
Case "Escalated (within 60 days)"
datesubmit = datesubmit.AddMonths(2)
Case "Urgent (within 30 days)"
datesubmit = datesubmit.AddMonths(1)
End Select
Response.Write("After : " + datesubmit.ToString())
End Sub

any thoughts?
I am calling this function on the pageload.

Generalclient/server read and write Pin
fo0lish8-Jun-04 4:52
fo0lish8-Jun-04 4:52 
GeneralRe: client/server read and write Pin
Dave Kreskowiak8-Jun-04 5:12
mveDave Kreskowiak8-Jun-04 5:12 
GeneralRe: client/server read and write Pin
fo0lish8-Jun-04 5:20
fo0lish8-Jun-04 5:20 
GeneralRe: client/server read and write Pin
Dave Kreskowiak8-Jun-04 5:30
mveDave Kreskowiak8-Jun-04 5:30 
GeneralSet Current Directory Pin
Brad Fackrell8-Jun-04 3:48
Brad Fackrell8-Jun-04 3:48 
GeneralRe: Set Current Directory Pin
Dave Kreskowiak8-Jun-04 3:54
mveDave Kreskowiak8-Jun-04 3:54 
GeneralRe: Set Current Directory Pin
Brad Fackrell8-Jun-04 4:50
Brad Fackrell8-Jun-04 4:50 
Generalsql data adapter Pin
ymohd_2228-Jun-04 0:25
ymohd_2228-Jun-04 0:25 
GeneralRe: sql data adapter Pin
Dave Kreskowiak8-Jun-04 2:51
mveDave Kreskowiak8-Jun-04 2:51 
Generalsnmp Pin
beowulfagate7-Jun-04 22:02
beowulfagate7-Jun-04 22:02 
GeneralRe: snmp Pin
Dave Kreskowiak8-Jun-04 2:46
mveDave Kreskowiak8-Jun-04 2:46 
GeneralRe: snmp Pin
beowulfagate8-Jun-04 14:51
beowulfagate8-Jun-04 14:51 
GeneralRe: snmp Pin
Dave Kreskowiak8-Jun-04 15:14
mveDave Kreskowiak8-Jun-04 15:14 
GeneralRe: snmp Pin
beowulfagate8-Jun-04 18:50
beowulfagate8-Jun-04 18:50 
GeneralRe: snmp Pin
Dave Kreskowiak8-Jun-04 23:58
mveDave Kreskowiak8-Jun-04 23:58 
GeneralCrystal Report Pin
7-Jun-04 19:34
suss7-Jun-04 19:34 
QuestionHow to run Microsoft Access to open a .mdb file by VB??? Pin
tramdtt7-Jun-04 18:22
tramdtt7-Jun-04 18:22 

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.