Software Development Network Logo
  • Visual FoxPro
  • SharePoint Products
  • Visual Studio
  • IE Development
  • Game Technologies
  • Windows Vista
  • Microsoft ISV
  • VS Team System
  • Visual C#
  • Visual C++
  • Audio and Video
  • Smart Devicet
  • .NET Development
  • Windows Forms
  • Visual Basic

Software Development Network >> Lovericky's Q&A profile

Lovericky

Member List

Chrisull
David Botz
Roger Lovelock
SKK*
BradDaBug
Swoopske
COBOLBeginner
Vickyjzhang
Pi314159
mbaclawski
MSNetDeveloper
Ort7667
a.s.viswa
Baji Prasad
Phil Brammer
Jeff Williams
Leather
graab
Paul Bates
Fayez Mutairi
Only Title

Lovericky's Q&A profile

  • SQL Server Reporting services configuration Killed several Summary Report functions

    I installed 2K5 developer on my box. I was impressed with the Summary tab report functions and the reports available there. Then I ran the "Reporting services configuration" tool to get RS running, but now several of the summary reports are broken. There are several different error messages given in the summary window, depending on the report selected. For example, the "server dashboard" now displays Summary Unavailable The information needed to display a summary page for the selected object is not available. Error: "sql_handle" is ...Show All

  • Visual Basic . Lost items in toolbox

    Hi all. Serious problem here. I was developing a form in VB 2005 and VS 2005 locked up on me. I got several error messages in the process of trying to shut it down, but only partial screens were visible and I couldn't read the errors, only the buttons. When I finally got it shut down and reopended, all of the basic items (text boxes, labels, buttons, etc.) were gone from the toolbox. I went to the "Choose toolbox items" dialog several times, clicking on OK to select the checked items and clicking the Reset button, but no luck. I have also restarted the machine and have done a system restore to the day before. No luck there either. Any ideas on how to get these items back If I have to reload VS 2005, how do I keep from wipi ...Show All

  • SQL Server Suggest me a simple and good tutorial for T-SQL

    Hi, Can someone suggest me a simple and nice tutorial that can explain T-SQL with examples. Plizzz.... Regards.., Aazad   well...lots of places... sql server books online i guess is the most comprehensive.. also have a look at http://www.mssqlserver.com/tsql/   also a series of articles at  http://www.databasejournal.com/features/mssql/article.php/3087431 ...Show All

  • SQL Server Please correct syntax

    hi there RS2005 - Layout tab I have a field that says txtTrackerTrue=Sum(Iif ((Fields!Tracker.Value = Fields!RecvdBy.Value), 1,0 )) I want another field that says txtAllTrue =Sum(Iif ((Fields!Tracker.Value, ClosedBy.Value = Fields!RecvdBy, 1,0 )) obviously this is going to error how would I do this please thanks thanks Ian yes I tried that as well - I noticed that and thought I would give it a go - error is: Report item expressions can only refer to other report items within the same grouping scope or a containing grouping scope. so am just trying to see if there is anything else I can do. cheers for your help though jewel ...Show All

  • Windows Forms Focus a header cell in windows datagrid

    HI friends, i want to focus a cell in MS windows datagrid. i can achieve this by dataGrid.CurrentCell = new CurrentCell(row,column); for the rows other than Header row. how can i focus the first cell (i.e. 0th column and -1th row(header row), since this comment dataGrid.CurrentCell = new CurrentCell(row,column); only accepting non negative values for row. Thanks in advance, Ram Babu ...Show All

  • .NET Development Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following

    i am also getting same problem while deployement , it is working properlly on my system but i am getting the problem after deployment. please help me We didn't get to see the full error message. Guessing: ensure that the Microsoft Office PIAs are installed on the target system and that it has the correct version of Office. ...Show All

  • SQL Server RSS Text Data Mining

    Hi, Somewhere in the literature surrounding SQL Server 2005 DM, I saw a reference to a project that collected and mined RSS data. Does such a project exist Thanks, Bob Various people in the group (including myself) have played with such projects, but haven't published anything. (For one thing, all the RSS content is copywrited by the RSS provider, which makes it difficult). In any case, the methodology is fairly simple - use Integration Services to read the RSS feed and pump through the text mining transforms, and then use the results in data mining, OLAP, or reporting. The specifics of the latter part depend on the problem you are trying to solve and the information you have. For exampl ...Show All

  • Visual Basic Adding and Removing the Taskitem from outlook express.

    Hello, I am able to add a task into the outlook express from my application. But i try to delete the task it doesnot happen. and gives a error. Code with which i add a task with reminder into the outlook. Dim OutlookApp As Outlook.Application Dim OutlookTask As Outlook.TaskItem OutlookApp = CreateObject( "Outlook.Application" ) OutlookTask = OutlookApp.CreateItem(Outlook.OlItemType.olTaskItem) With OutlookTask .Subject = " Add a Task " .Body = "Message" .ReminderSet = True .ReminderTime = DateAdd( "n" , 2, Now) .DueDate = DateAdd( "n" , 5, Now) 'Due 5 minutes from now. .ReminderPlaySound = True .Save() End With Code with which i try to delete ...Show All

  • Visual Studio Tools for Office powerpoint saveas

    Hi. I have a question regarding powerpiont: My application shall override the save function in all office programs. I manage to do this in word and excel with the document/workbook saveas method. But I can't find any method for this in powerpoint.... I highly appreciate any help :) Best Regards, neoret Hi neoret Since this forum is specific for the VSTO technology, and VSTO doesn't use Powerpoint, chances of finding anyone here who can help you are very slim (to say nothing of the fact that this is "off-topic"). Try asking in the the Powerpoint newsgroup: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.powerpoint&lang=en&cr=US Be sure ...Show All

  • Visual Studio Express Editions how to make a rich textbox print

    A friend and i mades text editors and we wanted to know how to make the docyument print thanks ahead Josef Stalin See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=384020&SiteID=1 ...Show All

  • Windows Live Developer Forums Changable Interface

    I was wondering if WLM came with a little add-on that I can change the interface like trillian. I know you can change colors and etc, but I was wondering if their was a way to change the Green/Grey people beside their names. Nothing rather important, just a cool feature if you dont already have it. The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.microsoft.com/newsgroups/ dg=microsoft.public. ...Show All

  • Smart Device Development Handle holding keys button on PPC

    Hello, I have a device (Symbol MC70) with a keypad. My question is that how can i handle the event keypress or keydown so that no matter how long the user hold the key, it only sends the keycode once Thank you I would suggest you handle the keyup event in that case. See MSDN example: http://msdn2.microsoft.com/en-us/library/system.windows.forms.control.keyup.aspx Thanks. ...Show All

  • Visual C# Difference between nesting and inheritence of classes

    Hi, Can any one tell me if there is a difference between nesting of class and inheritence. Regards Santanu Hi, So what is the yield of nested classes or what is the purpose Why do we need to use nested classes Can anyone explain Thanks in advance ^^ ...Show All

  • Smart Device Development How to Edit Task in Smart phone emulator[windows mobile 5.0]

    Can we Edit Tasks in Smart phone emulator[windows mobile 5.0] I can't see the edit option in task in the smart phone emulator. Also I am using i-mate sp5m device it also have no option for editing the task. I have to know can I edit a task without any third party software or not. It could be that I don't able to found how to edit the tasks. Please Help Moving this to Smart Devices General Forum where it has got better chances of being answered. -Thanks, Mohit ...Show All

  • Windows Forms Listview

    VS2005 c# I want to add subitems for each field in my sql.(The Sql changes) Can anyone show me how - thanks in advance. foreach ( DataRow dr in dt.Rows) { ListViewItem lvi = new ListViewItem (dr[0].ToString()); oLstV.Tag = dr; oLstV.Items .Add (lvi); //For each field in my sql add sub item to the line } The problem is the number of fields within the sql change, so I dont know how many there are.   Found it: //For each field in the sql add a sub item. foreach ( DataColumn column in dt.Columns) { _Lvi.SubItems.Add(dr[column ].ToString()); } oLstV.Items.Add(_Lvi);   ...Show All

©2008 Software Development Network