Software Development Network Logo
  • Visual FoxPro
  • VS Team System
  • Visual C++
  • Windows Live
  • SQL Server
  • Visual J#
  • VS Express Editions
  • Windows Vista
  • Smart Device
  • Visual Studio
  • Windows Forms
  • Visual C#
  • Architecture
  • .NET Development
  • Microsoft ISV

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

dmls

Member List

Crazy8
G. Andrew Duthie
Vitoto
erikjson
kcnz
Paul Hill alphacomp
Kain6539
BlkShdw88
Poma
ChronoReverse
comwiz_y2k
Kishore Wani
James Walters
DroopyMsdn
AlucardJC
Koos Brandt
OmarMallat
gas_obsg
GrayWolf
Daniel Penalba
Only Title

dmls's Q&A profile

  • SQL Server Analysis Service Cube browser?

    hi, I am new to SSRS. Can anyone please let me know if I can have a report that displays the "browser" view of SSAS Cube "exactly" as it appears in BIDS To elaborate, in Business Intelligence Dev Studio, if I have an Analysis Service project that designs and deploys a cube, there is a "Browser" tab that allows me to view the cube. You can drop row fields on Y axis and column fields on X axis. If the fields are heirarchical, you can expand and collapse such heirarchies on both axes. When I tried to create a dataset in SSRS using the same Analysis Service database, it shows my measures and dimensions exactly as it appears in BIDS. But, the p ...Show All

  • Visual J# Scanner object

    The Visual J# we have presently installed where I teach does not have many of the objects found in the java.utils package found in JAVA 5.0 Among other objects that were not found is Scanner , one used extensively in the text that we have adopted. Does the Visual J# upgrade address this problem at all seems the license is more flexible than GPL, they use the "Classpath exception" license addendum http://www.sun.com/software/opensource/java/faq.jsp#g4 ...Show All

  • Visual Studio Express Editions Read from port

    Hello! I have any problem with reading from port. when i send AT command I don't see anything. Please help! There's example what I've written: SerialPort sp = new SerialPort("COM4",115200,Parity.None,8,StopBits.One); sp.Open(); string l = "ATI4"; sp.NewLine = "\r\n"; sp.WriteLine(l); sp.WriteTimeout = 50; bytes = sp.BytesToRead; buffer = new char[bytes]; // Read the data from the port and store it in our buffer sp.Read(buffer, 0, bytes); //Here is 0; textBox1.AppendText(bytes.ToString()); ...Show All

  • Visual C++ Create Windowless control

    I'm creating a windowless control with a simple line in it. (GdiPlus). Add a mouse event. This is not working in my MFC dialog project. I can see the mouse event, with the add handler wizard, and add it to the code. It is working tough in VB. What is going wrong Doeb Hi, The code more in detail. What I can find out that within the Fire mouse no connections seems to be valid (see code below). Is there some Interface event to catch Thanks, Doeb   In the IDL file the following is declared: interface IMyLine : IDispatch { // some properties [propget, id(21), helpstring(HELP_RGB_LINE_ ...Show All

  • Visual Studio Express Editions Unable To DL Installer

    I am trying to DL an offline installer for VB Express Edition. Here is the link: http://msdn.microsoft.com/vstudio/express/support/install/ I am neither able to get the .IMG nor the .ISO file. In both cases the operation times out and the DL never begins. Any suggestions Mike Use a download manager. I have used http://www.freedownloadmanager.org/ with success ...Show All

  • Smart Device Development Have a call with a smartphone

    Hi, I'm trying to make a program in VB using SmartPhone functions. For instance, I succed to dial a call with PhoneMakeCall function : http://msdn.microsoft.com/library/default.asp url=/library/en-us/APISP/html/sp_phone_phonemakecall.asp I'd like to know if it's possible to take an incomming call, I can't find anything about that on MSDN.. Does someone could say me if it's posible, and how do that. thanks All you can do is call the raw TAPI API (lineAnswer) but Microsoft does not recommend that because it doesn't play well with the phone app. Alternatively, if you know the phone is ringing, you cou ...Show All

  • SQL Server How to script all sql jobs

    Hello, Is there a way in sql2k5 to script all sql jobs at once. In sql2k you could right click on the agent and select that option however I do not see it in sql2k5. Thanks. Hi John. Click the 'Jobs' folder under the SQL Server Agent node in SSMS, then hit the F7 key (brings up the Summary pane). Highlight all the jobs you want to script using a combination of Shift and Ctrl keys, then right click, Script Job as..., then choose where to script to. HTH, ...Show All

  • .NET Development Connect to Com Object

    Hi, I have a problem and i hope that somebody to help me! I have a application server (executeble written with Delphi) registered as a Com Object. Now i have a windows service written with C# and i have to call methods of Com object. I referenced a COM Object and made a reference. I tryed this ComClass comObj= new ComClass(); // here i start a com object (executeble) comObj.someMethod(..); It's working only when the Com object is not started. How can i get instance of running Com object, because i can't shutdown application server every time when i want to call some method Please help me! Thanks! ...Show All

  • Visual Studio Team System DeploymentItem not working for WebService solution

    Using the Deployment section of the Run Configuration page, I've gotten DeploymentItems to work for all of my solutions save one: a Web Service. This solution consists of the Web Service project and a Test project. The only way to get deployment items to deploy correctly is to define DeploymentItem attributes on every TestMethod with absolute paths (relative paths do not work). Is this a known bug Is there anything I can do to get relative paths working Is there anything I can do to get Deployment under Run Configuration settings to work for a web service solution Thanks. If you use relative path for ...Show All

  • .NET Development Datagrid paging, avoiding errors when deleting rows

    I'm not sure if this is common knowledge or not, but while testing I found something that I consider to be a major problem in Microsoft's datagrid control for the web. It may or may not impact applications that you are developing/have developed so I wanted to point it out. Basically, the situation is this: You have a datagrid control on your web page, and have enabled paging. The grid is bound to a datatable/dataview, populated with rows, and has multiple pages. You are on the last page of the datagrid, and there is only one row displayed on that datagrid page. Now, you delete the record in the database that is tied to this datagrid row. ...Show All

  • Visual Studio Express Editions Newbie trying to understand the use of a Timer in Visual Studio VB

    Hi I have copied the example code from the help files. ms-help://MS.VSExpressCC.v80/MS.NETFramework.v20.en/cpref17/html/T_System_Windows_Forms_Timer.htm but cannot figure out how to use it. I tried a whole bunch of things involving stuff like: Dim fred As New Timer fred.Enabled = True fred.Start() expecting the included 5000 ms timer to start and count down to zero then show the message as per the example code - but noting happened. How do I use a Timer   http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=375277&SiteID=1 :) ...Show All

  • Visual Basic VB2005 command.ExecuteReader issue

    Hello, I keep getting an error when I attmept to read from a table using VB2005: "Invalid attempt to read when no data is present." I know the record is there, I can find it using SQL Query Analyzer.  I am sure I am omitting something simple, but I can't figure out what that may be. I am a rank Newbie (2 days in VB2005) and my VB6 experience isn't helping much. Dim connectionString As String = "Persist Security Info=true;Integrated Security=SSPI;database=DATABASENAME;server=SERVERNAME;Connect Timeout=30" Using Connection As New SqlConnection(connectionString) Dim command As SqlCommand = Connection.CreateCommand() command.Command ...Show All

  • Visual C# EventHandling problem : Java has solution but what about Microsoft's .Net???

    Hi, I have added few of the events in some control, example code is: btnControl.GotFocus +=new EventHandler(EventHandlingMethod); btnControl.Click +=new EventHandler(EventHandlingMethod); lblControl.Click +=new EventHandler(EventHandlingMethod); private void EventHandlingMethod(object sender, EventArgs e) {     ....... } btnControl = Button object, lblControl = Lable object Now the problem is: I am adding the same event handler method in all events for btnControl and lblControl too. now in EventHandlingMethod method, i can find which control is using sender but now if i want to put some switch cases in the method for E ...Show All

  • Visual Studio Express Editions MFC projects in Visual C++ 2005 ???

    I just started up Visual Studio 2005 Express and attempted to create a new MFC project. But that's not an option on the New Project dialog. It shows some CLR project types, which is NOT what I want to do. It shows Win32, allowing only a Windows Console app. And it shows "Other Project Types", but lists no actual project types under it. So, how do I build an MFC application with VS 2005 Please don't tell me that Microsoft is simply abondoning MFC applications!!! The MFC and ATL libraries are not available in the Express Edition of Visual C++.  These are available in Visual Studio Standard, Visual Studi ...Show All

  • SQL Server Looking for some magic

    ... well, perhaps some sophistication. The setup: Server A publishes to server B via transactional replication. Server A is to be shut down while some electrical work is done. So we fail over to server B for a couple days. My underpowered brain says to shut down replication, possibly fail over well in advance of the power outage. Then, when the electrical work is done and server A is restarted: 1) stop work on server B, 2) copy the database on B to A (I suppose after deleting it from A), and 3) redoing the replication from scratch. Can anyone recommend a better process I am very gratefull for any enlightenment. ...Show All

©2008 Software Development Network