User Profile
Collapse
-
I understand. I am new to writing design document so i wanted to see some samples. oh well. -
SDD for sharepoint portal
Never had to do a Software Design Document for Sharepoint site. Can anyone send me a actual sdd for sharepoint or post some good link? Under time constraint and dont have time to learn it from scratch. I have download some templates but still need directions. -
Build Deployment Package with Pre-Compiled (not the raw files)
I created an MSI package and it works great. However, the source code aren't compiled. They show up row in the test web server. This is No No in our environment. Are there any steps that I am missing during the creation of MSI package. Both Web Site Project (meaning the web service i created is in the http:\\localhos t\BannerWS) and setup project under one solution. (Right click on solution won't show Add a new WDP. I added the web setup project by... -
No luck. I did not find any link that talks about how to expand grids on window. onload. please suggest.Leave a comment:
-
ust noticed that. I guess when you are too busy you tend miss small stuff. here is the new code
class library code (added namespace using System.Data;)
public dataset MethodA()
{
return myWebServices.M ethodA()
}
Now it's working.Leave a comment:
-
client ----> .NET class libray-----> Secured Web Services
1. Created a WebService
2. Create a Class Library and add web reference (#1)
I did this in the Class Library
public class MyWebServiceWra pper
{
private MyWebService obj = new MyWebService();
public MyWebServiceWra pper()
{
obj.Url = ConfigurationMa nager.AppSettin gs["MyUrl"];
}
public void WebMethodA() //same name as... -
-
sound good and easy. but no exposure to window onload event. let me google.Leave a comment:
-
I am trying to follow this but not working.
http://www.codeproject.com/Messages/...lapse-all.aspx...Leave a comment:
-
-
Auto expand the grid upon search... - HIGH PRIORITY
I used this article (http://www.codeproject.com/KB/webfor...dGridView.aspx) to accomplish expand/collaspe grid. I also added a search and it works. but i need to be now automatically expand the corresponded grid where search was found.
User has to click on all the parent grid to find out which child grid has records. How can I automatically expand the grid where there are results?
I probably need a function like...Last edited by Frinavale; Sep 16 '09, 06:26 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags. -
copy file from vss to local drive
How do I retrieve Files or the whole folder from VSS to my Hard drive? An intern was working on some project and she left about 4 months ago. Now the project is back online and I need to copy all the files under the parent folder. -
Only 2 buttons are required: PunchIn and PunchOut.
The table would look something like this.
Code:PunchCard ---------- Id (PK) UserId (FK) TimeIn TimeOut
Code:sqlCommand.CommandText = @"select count(1) from PunchCard where UserId = @user and TimeOut is null"; //set user id var result = (int)sqlCommand.ExecuteScalar();
Leave a comment:
-
That's kool. I was just going to get an idea. But it's kool. I am progressing.
Thanks.....Leave a comment:
-
so far i have this but it has some serious glitch.
Code:set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go alter PROCEDURE [dbo].[sp_timeOut] -- Add the parameters for the stored procedure here @emp_id int, @clocking_date datetime, @time_out datetime, @record_status varchar(15), @rec_operator varchar(30) AS BEGIN -- SET NOCOUNT ON added
Last edited by tlhintoq; Jun 19 '09, 06:29 AM. Reason: [CODE] ... your code here ... [/CODE] tags addedLeave a comment:
-
Thanks for your respond. Can you please share some code related to the business logic I posted? Also, client wants web based due to maintenance reasons.
Again, ThanksLeave a comment:
-
Timeclock application
I have a web form where I am about to put 4 buttons (time in, lunch out, lunch in, time out). When an emploee good enough and click all 4 buttons in a day then system should only create 2 records. (time in and time out goes together in a same record)
1. Employee will come in the morning and click on Time In button.
>>> Good, Simple insert into table
2. Employee will click on Lunch Out button.
>>>... -
I added parameters and it's seems to be working. however, it breaks when I dont pick anything from the dropdown filter box. my drop down has 30,60 and 90 and "" which is filtered against quantity. so i get "input string was not a correct format" error when i dont select anything from the drop down. I want the parameter to be optional. for example, show all the records when nothing is picked from the dropdown. (filter part is ...Leave a comment:
-
Apply Filter on Child Data Grid
I have a applyfilter that works with another page (using this sample http://www.c-sharpcorner.com/Blogs/B...spx?BlogId=825). can similar be implemented with following datasource (following datasource is for child gridview). I have a label where user will input a value for filter. i like to take that value and implement it with the code i posted so that the childgrid now have filtered data. hope it makes sense. (see example here: http://w...Last edited by Frinavale; Jun 17 '09, 02:13 PM. Reason: Added code tags. Please post code in [CODE] [/CODE] tags. -
No activity results to display
Show More
Leave a comment: