Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums

16 Posted Topics

Member Avatar for Sravanthi Ch

Hi.. I need to list the directory contets in an FTP folder. Here my requirment is listing the ditectory contents into an array list of directory items. Directory item contains Name, Full Path, Size and Type (File or Subdirectory). Can any one help. Thank you, Sravanthi Ch

Member Avatar for thines01
0
1K
Member Avatar for Sravanthi Ch

Hi, I would like to know whether the given path is a directory or file in FTP folder. I have tried some code like this. FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(pServerURL + pRemoteFilePathNm); request.Credentials = new NetworkCredential(pUserName, pPassword); request.Method = WebRequestMethods.Ftp.ListDirectory; FtpWebResponse response = (FtpWebResponse)request.GetResponse(); But i didnt find whether it is …

Member Avatar for thines01
0
113
Member Avatar for Sravanthi Ch

Hi.. I have 3.8 years experience in .net web & windows applications development. Can anyone let me know which is the best certification i can do now? Thanks for help. Regards, Sravanthi Chepooru

Member Avatar for Mitja Bonca
0
77
Member Avatar for Sravanthi Ch

Hello, After updating my code from Visual Studio 2005 to Visual Studio 2010 I am getting the error while compiling "Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information" I have tried making the change <startup …

Member Avatar for thines01
0
154
Member Avatar for Sravanthi Ch

Hello, After updating my code from Visual Studio 2005 to Visual Studio 2010 I am getting the error while compiling "Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information" I have tried making the change <startup …

Member Avatar for thines01
0
137
Member Avatar for Sravanthi Ch

Hi, I am new to build system. No my task is to build my solution which is having multiple projects using MSBuild 4.0. Can any one help how to acheive this. When i try to run that i am getting the folwwing error c\:>c:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe C: \projects\MyProject.sln /p:Configuration = Debug Microsoft …

0
60
Member Avatar for Sravanthi Ch

Hi, I need a user defined datagrid control which include paging.This will be used as base control for all datagrid's used in my project. Can any one help? Thanks in advance for help. Regards, Sravanthi Chepooru

0
67
Member Avatar for Sravanthi Ch

Hi, I have a ListView control in WPF. I need to resize the columns of listview according to window size. Can you please let me know how to approach this. Thanks in advance for help. Regards, Sravanthi Chepooru

0
65
Member Avatar for Sravanthi Ch

Hi, Is there any way to modify Shell About Dialogue box..? [DllImport("shell32.dll")] public static extern int ShellAbout(IntPtr hWnd, string szApp, string szOtherStuff, IntPtr hIcon); Thanks in advance. Regards, Sravanthi Chepooru

0
106
Member Avatar for Sravanthi Ch

Hi, Is there any alternative way to reset the scrollbar postion when datacontext chaged with out using the datagrid datacontext changed event..? Thanks in advance for help. Sravanthi Chepooru

0
104
Member Avatar for kapojian
Member Avatar for Sravanthi Ch
0
124
Member Avatar for drax12

Hi, Check this.. [CODE] StringBuilder strQ = new StringBuilder(); strQ.Append("SELECT VALUE T FROM MyTable AS T WHERE T.ID > 0"); if (FromDate != null) strQ.Append(string.Format(" AND T.FromDate >= DATETIME'{0}'", FromDate.ToString("yyyy-MM-dd HH:mm:ss"))); if (ToDate != null) strQ.Append(string.Format(" AND T.ToDate <= DATETIME'{0}'", ToDate.ToString("yyyy-MM-dd HH:mm:ss"))); db.CreateQuery<MyTable>(strQ.ToString()); [/CODE] Hope this helps.. Please revert for …

Member Avatar for zmeditation1
0
101
Member Avatar for Sravanthi Ch

Hi, I want to change my WPF Date Picker display format to "MMMM yyyy". Can any one let me know how to achieve this..? I have tried using SelectedDateFormat property showing below..but i have found only two options in this Short and Long.. OpenPeriodDatePicker.SelectedDateFormat = Microsoft.Windows.Controls.DatePickerFormat.Long; Can any one help …

0
60
Member Avatar for Sravanthi Ch

Hi, I have a WPF datagrid with datagrid check box column as first column and the header of the checkbox column is also a check box.. I am using the follwoing code to achieve this.. [CODE] <TK:DataGridCheckBoxColumn Width="30" Binding="{Binding Path=IsSelected, RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type TK:DataGridRow}}}"> <TK:DataGridCheckBoxColumn.HeaderStyle> <Style TargetType="{x:Type TKPrimitives:DataGridColumnHeader}"> <Setter Property="Background" Value="{StaticResource …

Member Avatar for pitic
0
473
Member Avatar for Jazerix

Hi, Check this.. [CODE] <ListView Name="MyListView" > <ListView.ContextMenu> <ContextMenu Name="MyContextMenu"> <MenuItem Name="MyMenuItem1" Header="Menu Item1" Click="MenuItem_Click"/> <MenuItem Name="MyMenuItem2" Header="Menu Item2" Click="MenuItem_Click"/> </ContextMenu> </ListView.ContextMenu> <ListView.View> <GridView> <GridViewColumn Header="ID" Width="Auto" DisplayMemberBinding="{Binding ID}" /> <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Path = Name}" Width="Auto" /> </GridView> </ListView.View> </ListView> [/CODE]> Hope this helps.. Regargds, Sravanthi Ch

Member Avatar for Sravanthi Ch
0
121
Member Avatar for Sravanthi Ch

Hi, I need code to invert the selected items in list view. Can any one help me out.. Thanks in advance for help.. Regards, Sravanthi Ch

Member Avatar for Sravanthi Ch
0
391

The End.