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

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

ziman

Member List

Alan Stevens
uma kadagi
soni_ace
amiune
pidnas
syhzaidi
Shawn Wildermuth - MVP (C#)
CV.
GeniusManiac
TheMaj0r
DeadlyEvilRyu
BradN
medarch
soconne
Herru Perdana
Scott Chang
suranga_d
13thGhost
Sathyashankar
DazlerD
Only Title

ziman's Q&A profile

  • Visual Studio Javascript Debugging With IE7

    Hello, I have ran across an issue debugging an ASP.Net page after installing IE7 on my development machine and I have not been able to find a solution. I am using Visual Studio 2003 and I am no longer able to access the rendered source (including embedded javascript which is emitted in the code behind) using Debug -> Windows ->Running Documents -> Page.aspx When I click on the running page in the Running Documents , all that displays is the source page and not the page that is running in the browser. Doing these same steps in IE6 worked fine. Also, note that the debugger statement does break but only shows the source page (not the running page) in Visual Studio and places the break at the end of the </html> tag. Therefor ...Show All

  • SQL Server BIDS - Error on design surface of Calculation tab in Cube

    Has anyone seen this Within 'Business Intelligence Development Studio' (BIDS) with a cube opened and the calculations tab selected, the design surface displays a message that reads: Unexpected error occurred: 'Error in the application.' This occurs in any project I open and it still occurs when I restart BIDS or the computer itself. Any ideas Can anyone suggest a remedy I have the same exact problem, and SQL 2005 SP1 & Office 2007 Beta TR. I didnt have this problem with office 2007 Beta. Also I tried updating the dll's as advised in the two locations and visual studio crashes when I go to calculations tab, so I have rolled back to the old versions, but this comes with th ...Show All

  • Visual Studio Express Editions Database decimal to convert to double for Equations

    Here's a nub question..... I have a database and i'm trying to bring in decimal info into a form and use the decimal in equations. when i do that i get an error saying "cannot convert string to double" how can i resolve this issue Thanks, Rob If ValueX.Text <> "" And SITECLASS.Text <> "" Then Dim X As Double = ValueX.Text Dim Ss1 As Double = 0.25 Dim Ss2 As Double = 0.5 Dim Ss3 As Double = 0.75 Dim Ss4 As Double = 1.0 Dim Ss5 As Double = 1.25 Dim SCa1 As Double = My .Forms.Form4.A1.Text Dim SCa2 As Double = My .Forms.Form4.A2.Text Dim Sca3 As Double = My .Form ...Show All

  • .NET Development SqlDataReader Update???

    Can u use the SqlDataReader to update data in sql server using a stored proc by like if(dr.Read()) _Property = dr["value"].ToString() ...Show All

  • .NET Development page cannot be displayed, etc.

    hi, on friday i chose to run ad-aware, spyboy-search and destroy, ccleanup and maybe another program, all which were installed over the summer to reduce viruses or harmful things on my computer. however, when i was prompted to reboot the computer, i did so, but now my internet connection will not work. i feel like i have looked through every help and support article online...I ran network diagnostics and all sorts of things. some of the things that stuck out were "DNS" "TCP/IP Protocol" something called "SyM WMI service".. But those were all problems that showed up on friday. maybe someone will know what's wrong:) Thank you for any help you can give! ~Katie This forum is d ...Show All

  • Visual C++ Pointer not working

    When ever I try to compile the code below I get this error: " error C2102: '&' requires l-value " ICI is a pointer to an unmanaged class, this is being done with in a managed class. X is a double pointer, where as XPostion_Meters is just a double. ICI->ICOList[Count].X = &IPObs[Count]->IPObj->XPostion_Meters; Any help would be appreciated NeederOfVBHelp wrote: ok after looking at the definition I realize that the problem is that it is a property ... but is there a way to do what I am trying to do Short answer: no. You can't bind a double pointer to a property. Consider redesigning the application, so that you don't need this pointer. ...Show All

  • Software Development for Windows Vista Parameter Dictionary that map to Public properties on the workflow

    Hi everyone: I hope my question is basic. When I create a workflow I am creating a parameter collection and passing it into the CreateWorkflow() method off an instantiated runtime object. Here's the code: Dim parameters As New System.Collections.Generic.Dictionary( Of String , Object ) parameters.Add( "MySpecialID" , MID) Dim instance As WorkflowInstance = runtime.CreateWorkflow(workflowType, parameters)   On the workflow class (which is a state machine) I've added a public property which the parameter should map to. Here's the code: Public Class SampleWorkflow Inherits StateMachineWorkflowActivity Private _mySpecialID As Object Public Property MySpecialID() As Object Get R ...Show All

  • Windows Search Technologies WDS 3.0 ADM

    Does anyone know if/when ADM files will be released for WDS 3 to manage through GPO I currently have the 2.6 ADM files but the settings don't work on the new version. JHurt, Microsoft currently is not supporting group policies with 3.0. We are working on adding group policy support in the near future. In the mean time, we are suggesting that our enterprise customers continue using WDS 2.6.5 as that will better meet your needs. Paul Nystrom - MSFT ...Show All

  • .NET Development how can i utilize unmanaged delphi7 Dll in C# dot net

    hi,  i am using a delphi7 dll in C# dotnet ,  the delphi7 dll returns datatype of Tdataset , i am assigning the return dataset to dotnet dataset, but at the time of running the application i am getting an error message of " Attempted to read or write protected memory. This is often an indication that other memory is corrupt "   The C# dot net code is using System; using System.Collections.Generic; using System.Data; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using System.Runtime.InteropServices; namespace Test { public partial class Form1 : Form { public Form1() { InitializeComponent(); } [ DllImport ...Show All

  • Smart Device Development Oracle connection issue

    hi I'm not gettin any driver like ODBC,OLDB for SmartDevice application developement in vb.NET cud any people help me to connect SamrtDevice application with oracle in wireless LAN bbyeeee Something like this (desktop code): public class DataBaseProxyService : System.Web.Services.WebService { [System.Web.Services.WebMethod(BufferResponse=false)] public DataSet LoadData (string query) { DataSet ds = new DataSet(); // Fill DataSet with data as you usually do using query string. You can also pass connection string. return ds; } [System.Web.Services.WebMethod(BufferResponse=false)] public void SaveData (string query, DataSet ...Show All

  • Windows Forms Smooth PopUp Form

    Hi, i'd like to make a smooth movement on my windows form, i mean, an example...i push a button and it resize the width of the form, however i don't just want to do it by a for cicle or something like that, because is shows it with the new size very fast, and i'd like to see the transition of the movement like in other controls , i want to know this 'cause it could look even better on a form, more interactive You will need to handle the painting. Look at one person did with a sliding window . ...Show All

  • Microsoft ISV Community Center Forums Help with a formula

    I need to write a formula for Excel that calculates the amount of fuel that is in a tank. Here is what it is for. We have cylinder tanks that lay horizontaly. Each month we put a dipstick into the tank to measure how many inches of fuel is left in the tank. I need a formula that will take that and calculate it into gallons. Here is the formula I have to work with. / -1 r - h \ V = L * | [ r^2 * cos (--------)] - [sqrt(2rh - h^2) * (r - h)] | \ r / Any Help is appreciated (BTW I am not the best at math so if possible an explination of this formula would be greatly appreciated) Ok another probl ...Show All

  • Visual C# Use C++ class in C#

    I have a c++ class implemented in a dll, and then I have my main in C#, where I call the functions of the dll. My problem is to know how to declare and use an object of the class that I have in the dll in c++. I think I have to declare the class also in the c# project and then use the DLLimport command but I'm not sure... Can someone help Thanks Create a class: public static class MyNativeClass { [DllImport("someDll.dll")] // Your DLL name / complete path from where it should load (better copy in debug or release and use as in example public static extern void NativeFunction(int number); // Repeat the same for all your function in that dll } not call function from C# ...Show All

  • Visual Basic Could someone point me in the right direction?

    Not even sure where to start. Need to subtract quantity from inventory table when quantity is added to invoice table. Start with transaction stored procedure Any guidance would be appreciated. I created the trigger but for some reason it is subtracting 2 each time no matter what i put in the "qty" field of my invoicedetailsdatagridview. Do I need to somehow pass the value of "qty" to this trigger ...Show All

  • SQL Server What does a Filter do in Report Model

    In a Model designer when you select and Entity you have list of Attributes on the right side. There you have the option to add new "Folder", "Source Field", "Expression", "Role" and " Filter ". Can anyone explain in a bit detail what this filter can be used for. Can it be used to filter data from underlying entity (I am not looking for SecurityFilter) I am working on Microsoft SQL Server 2005 - 9.00.3027.00 Thanks, Rahul That's a little unfortunate. I was hoping to find a way to filter data from entity. Not based on security but say based on date. Is there a way filter data in a model ...Show All

©2008 Software Development Network