No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
16 Posted Topics
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
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 …
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
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 …
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 …
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 …
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
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
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
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
Take the maximum of updated date grouping by the user. Sravanthi Chepooru
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 …
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 …
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 …
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
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
The End.