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

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

revmrfr

Member List

Can-Ann
Nitin Sharma22
ihackdw
Liquidsnakex
mertkan65
ArtapuS
Omar Fawzi
Murtaza Ali
Bruce Baker
slippyC
Tryin2Bgood
darknessangel
Boogeyman777
AndersBank
Artje
igor23ba
Juszluv87
Jeff Weber
PAUL stanley
Juan Carlos Trimiño
Only Title

revmrfr's Q&A profile

  • SQL Server Formatting dates on a chart when sourced from SSAS2k5

    I am creating a few charts in SSRS that are sourced from a cube in AS. On the x-axis is time, which is what I assume a date-like field in the cube. On the y-axis is the measure. My problem is that I cannot seem to get the dates to format on the chart - regardless of the format code I use, the dates appear in long format, like "Thursday, November 23 2006". Are the dates from SSAS just string values Based on your query in the MDX query generator, the date time value is provided as a string to Reporting Services. That's why format codes won't work. You could look into either changing your MDX query to get the value as DateTime object (which means you have to hand-write the MDX) or you could try ...Show All

  • Visual Studio 2008 (Pre-release) Working with WCF Service

    I am trying to use the Entity Framework with a WCF service. It is giving me the following exception: System.ArgumentException was unhandled by user code Message="The default entity container name 'eKnowledgeSpaceDBModel.eKnowledgeSpaceDB' is invalid. The required mapping and metadata information could not be found.\r\nParameter name: defaultContainerName" Source="System.Data.Entity" ParamName="defaultContainerName" StackTrace: at System.Data.Objects.ObjectContext.CreateMapConnection(String connectionString, String defaultContainerName) at System.Data.Objects.ObjectContext..ctor(String connectionString, String defaultContainerName) at eKnowledgeSpaceDBModel.eKnowledgeSpaceDB..ctor(String connect ...Show All

  • Visual Studio Express Editions please help me

    Hi there, I hope someone is able to help me upload a microsoft visual basic into a web site call webct.yosemite.edu. the problem is that everything i upload the proyect, it doesn't show up instead it show up a error i was wondering if you guys can help me out. thanks appreciate. bye you need to be specific and more clearer. what did you upload Visual Basic express - the entire setup I believe you can't redistribute VB Express what errors happen What are you uploading When does the error happen if its to do with the website you are uploading to then it may have no relevance for us here but to contact the webmaster of the site which you are having problems with. Again, would be nice if you can explain a bit more in depth ab ...Show All

  • Windows Forms window focus

    Can anyone help, I have lost the plot with a form, I have a sip app requesting a page eg http://192.168.0.1/details.aspx I cannot make this page jump to the top off all other windows, seem to remember it was either window.form.focus.top or window.zindex something or other I can't find the info, its all done in studio with vb any help greatly appreciated. K Try each of these functions one at a time, and if they don't work, try them at the same time. 'First function Me .Activate() 'Second function Me .BringToFront() 'Try both Me .Activate() Me .BringToFront() ...Show All

  • Visual Studio Strongly type resources.

    I am trying to take a resx file from another project. I would like to remove some of the resources and re-build a strongly typed class from the resx. The problem is that I am not sure how to do that or how to associate a "Designer" file with a resx file so that the class file gets auto generated when the resx file changes. Any tips Kevin ...Show All

  • SQL Server How to modify the query string of a dataset?

    Hi, I have a few questions. Suppose that i have a report based on this sql: Select * from table1 Now I want to be able to add a Where clause on that sql command programmatically. Like: Where name = 'Max' How can I do that Listen Ham, May be I wasn't clear about my concern. I'm using reporting services and I have an app written in VB.NET that accesses some reports from the report server. In my app, it's possible to select a report name( on Report server), select the table where data come from for that report and set a condition on one or more columns. Now I want to be able to include that condition on the report before processing without permanently afffecting the .rdl file. ...Show All

  • Windows Forms Best way to handle shortcuts ?

    Hi, I was wondering if there is a good OO-way to handle keyboard shortcuts. Atm my shortcut handling code consists of a big list of if else if else statements containing switch statements (if/else to detect the modifiers, the switch statement to handle the keys) As you might have guessed, this is ugly and not very clean. I tried using a Dictionary of Keys to Action (a simple void delegate) mapping. but the problem here is that the keys pressed never match those in the dictionary because extra modifiers and flags are present. I was wondering if anyone has any suggestions how to make a decent key to action mapping. Thanks, Ben. A short-cut key should always have a mouse-clickable alter ...Show All

  • .NET Development FtpWebRequest dies when trying to connect to vsftpd.

    I've got an application I inherited, and it was supposed to use secure ftp to get information to an ftp server. Turns out it didn't have this option set, and when I tried to get it to connect via sftp, it failed. I've run into that problem before with http requests, so found the appropriate piece of code to accept certificates (inherited from ICertificatePolicy), and set the ServicePointManager to use my new class. Well that works, but falls over when getting the response from the ftp server (vsftpd running on linux I think). The response is; 234 Proceed with negotiation. Is there some way that I can get the FtpWebRequest class to recognise this as a valid response Thanks in advance I hav ...Show All

  • SQL Server SSIS Reference Manual

    I never had to use DTS in MSSQL 2000 but I'm finding a need to use SSIS quite a bit in a new position. I know this is subjective, but I looking for suggestions for a reference book with good examples and tutorials. TIA I have Brian's book, and I found it very useful. As you want a book with good examples and tutorials, then I would recommend it. I've not read Kirk's so cannot comment on it. ...Show All

  • Visual Studio 2008 (Pre-release) ChannelFactory and abstract

    Hi , I create a abstract class named as Test and add [ServiceContract] property to it, but in client I call ChannelFactory<Test> to generate proxy object, it will throw exception: ChannelFactory must use interface type,so How to create client object if I use abstractor class Thanks, Zhihao For ChannelFactory<T>, T must be an interface type. If you need the abstract class for some reason, you can always just make an interface IA with the same methods as your abstract class, move the [ServiceContract] and [OperationContract] attributes to the interface, and then have your abstract class 'Test' implement the IA interface abstract class Test : IA ... ...Show All

  • Visual C++ VC++ and MFC

    Hi Folks, Does anyone has an idea how do I insert a line between the menu and toolbar of my application. Please help me out on this as I am stuck :-( Thnx Prateek Thee is no way to do this. The menu and the toolbar layout are managed by the MFC. You have to change the implementation to achieve this. Or do you mean the look and feel when ypu are using Rebar controls ...Show All

  • Visual C++ Migrating VC2003 to VC2005

    I'm migrating code from VC2003 to VC2005 and get the following error message: fatal error C1189: #error : Building MFC application with /MD (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD c:\program files\microsoft visual studio 8\vc\atlmfc\include\afx.h However, _AFXDLL IS defined through the command line compiler switch... the command line reads as folows /Od /I "\Ix102\include" /I "\Ix102" /I "\supersuite\include" /I "\isc102\include" /I "\isc102" /I "\supersuite" /I "\sudac" /I "\sudac\interfaces" /I "\suinfo\include" /I "\sustaticlibrary\include" /I "\sugui\include" /I "\suuti ...Show All

  • Visual Basic extract portion of string

    I know that I have seen this before, however I have had no need to program it until now, but suppose that I have a string passed to a parameter such as "16.00,20.00,0.00". I need a way to extract the 'second' value (which would be 20.00) and assign it to a variable. The reason that this is a string is that no computations will be done on the integers and sometimes the value can be alphanumeric. Thanks for the help. Dim cmdsAr As String() = Split(Command(), ",") that is generally how I get the commands that are sent to a console application, so I'm sure that would probably work for you. dim str as string() = split(" 16.00,20.00,0.00", ",") str(1) 'should be th ...Show All

  • Windows Forms Working with threading

    I'm very new to programming with C#, but not new to programming. I'm developing a program which will allow users to make phone calls via our phone system from Interactive Intelligence. I'm connected to the phone server via COM object. Here's what happens. The program has two threads running. One of them I start when the application runs, and the other one is started by the COM object when it receives notification of a status update on the phone call. We'll call my thread number 10, and the COM object thread 12. Thread number 10 runs without any problems. Then all of a sudden thread number 12 will get notification, and start running some code. One of the things that thread number 12 should do is change the text on a button. As s ...Show All

  • .NET Development Copying rows from one datatable to another

    Hi I have a form which shows the order lines added to an order. These are displayed in a flexgrid. There is a button called 'Add Product' which shows a Product form with all the products in the database listed in a list box. The user can choose as many products as he likes and on pressing OK they should all be added to the flexgrid in the order form as they are now order lines. Ive got a problem with the 'Row Already belongs to another table' error. It occurs when I try to add a new OrderDetail datarow to my orderdetails table. The thing is ive read various sites and they all say this error occurs when you try to copy stuff from one table to another, but Im trying to copy rows from the Product datatable to the OrderDetails datatab ...Show All

©2008 Software Development Network