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

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

zzhao

Member List

ManMuffin
Xeon_boy
Frances Huang
Johannes Herbst
Skip_Frog
Hector
Dan Moreira
emanon
Casey Quayle
jacopo
VFP
BCDC
TomJ72
jsstone
Tim Reid
DiveEcco12
RustyBubble
NJ2CIL
foldip
JLLemieux
Only Title

zzhao's Q&A profile

  • Visual Basic Visual Studio Is Busy?

      Pentium IV - Northwood 3.5 Ghz - I Gb of Ram. XP SP2 .. all current patches applied. VS2005 RTM Team Suite On occasion while debugging the IDE becomes nonresponsive and I receive a Bubble message informing me that "Visual Studio is busy waiting for an internal operation to complete - If you receive this message often, please inform Micorosoft" After I receive this message the IDE never recovers. All I can do is to delete the process and restart it. Any idea what's occurring I experience the same problem from time to time. No idea what causes it, but would like to know! VS2005 Pro Ed. Carl ReneeC ...Show All

  • Windows Forms Get Menu String from owner Draw menu.

    hello all, I have tried to get menu string from .Net Owner Draw menu(for third party applications) using "GetMenuString" APi .but I could not get the string. I s there any way to get the string.  other wise how to capture the menus text property Thanks, Mohan ...Show All

  • Visual Studio Problem with PDF Export CR10 / VS.NET 2003

    Greetings all, Im wondering if someone could shed some light on a problem im having with exporting to PDF. Im updating a report in an existing system - this report used to work fine until I installed VS 2005 on the system and now its stopped working.  The project is still being deployed from VS2003 and the IIS on the local machine is using ASP 1.1 What is happening is quite strange - if we try to use the ExportToStream() method to populate an iFrame it works fine and Adobe Reader populates the report in the browser - if we are just sending it to HttpContext.Current.Response then it stops working. This is the code we are using: ...Show All

  • .NET Development Connection String problem with MSDAORA.1

    Hi. I have two connection strings for my application, one using Microsoft ODBC Driver for oracle, and another using Oracle ODBC Driver. I am getting "Object not found error( ASP)" when I use MSDAORA.1. I am using oracle 8i. Thanks. Sandeep Chanda wrote: Hi Paul, Its every line which has a CreateObject call. I'm sorry but that isn't enough information. What object are you trying to create Code would help. In any event, if this can't be resolved in the next response or so I think you're going to have to follow David's suggestion since this isn't really a .NET question. As much as I ...Show All

  • Windows Forms Designer Fails to Show From after VS 2003 Port - Problem Fixed!!!!!

    Original Problem: After porting a project to VS 2005, the designer fails to show the forms in my project.  When I try to view the designer, I get Object reference not set to an instance of an object How do I fix this Is it possible that the resx files are corrupt  Can I regenerate them ------------------------------------------------------------ Solution The problem was solved.  It turns out that one of the project wide language resx files (we have four) had a slightly different format than the other project wide language resx files.  When we made the resx files consistent, the ...Show All

  • SQL Server NS 2.0 and SQL Server 2005?

    Will NS 2.0 work with SQL Server 2005   Or does it require SQL Server 2000 for the database components Dave Fackler New version of NS is available in SQL server 2005 for developing apps. Any apps that were developed with NS2.0 can be upgraded to the new version. To answer your question, NS2.0 app cannot be used with SQL Server 2005 without upgrading. Thanks Rama ...Show All

  • Windows Forms Considering a bugreport about AutoScrollPosition property of the ScrollableControl class

    I used the ScrollableControl class in one of my projects for a while and I'm puzzled why the class implementer from MS decided to implement the AutoScrollPosition property in such an inconvenient and weird way. Here's from the WinForms 2.0 docs: AutoScrollPosition represents the location of the scrollable control's display rectangle. The X and Y coordinate values retrieved are negative if the control has scrolled away from its starting position (0,0). When you set this property, you must always assign positive X and Y values to set the scroll position relative to the starting position. For example, if you have a horizontal scroll bar and ...Show All

  • Smart Device Development Windows CE architecture?

    I want to know windows ce 5.0 architure in detail It includes 1> Process and threads. 2> IPC 3> memory architecture 4>Virtual memeory 5> Head Memory 6> Stack Memory 7> File system etc. Can anyone suggest how to start. I am relatively new to windows It is great helpful if u send some links to tutorial or e-book. Thanks in advance. Omkar Singh. There is some overview technical information here:- http://msdn.microsoft.com/embedded/usewinemb/ce/techno/default.aspx You can also view all the documented APIs and their capabilities in the MSDN library:- http://msdn.microsoft.com/library/ Peter ...Show All

  • Visual Studio Express Editions Confused about method returns and params

    Howdy folks, Newbie comin' through... I'm confused about when a method is returning a value. I'm also confused about when a method is taking in a parameter or passing out a parameter. I understand that when a method name is preceeded by the "void" key word, it is not returning anything. However, when a method is preceeded by the keywords "string", "int", etc. it is returning a value of that type. my questions are these: 1. When a method is returning a value, is it necessarily doing this by passing a parameter out of itself 2. when a void method contains parameters, how does one know if those p ...Show All

  • Visual Studio Changing the LocalReport.ReportPath doesn't render with the new selected RDLC file.

    Hi everyone, Any idea why or how, the following code from a combobox doesn't cause the reportviewer control to render with the newly selected local report file private void cbxReports_SelectedIndexChanged( object sender, EventArgs e) { string fullName = (( FileInfo )cbxReports.SelectedValue).Name; ReportViewer1.LocalReport.ReportPath = Application .StartupPath + "\\Reports\\" + fullName; ReportViewer1.LocalReport.Refresh(); this .ReportViewer1.RefreshReport(); } With thanks, Gavin :) There are DataSets bound to the report, this is in winfor ...Show All

  • SQL Server trouble installing SQL Server Desktop Engine

    laptop profile: XP pro I'm trying to install the SQL desktop engine, but I'm having trouble. First I got the "A Strong password is required for security reasons. Please use SAPWD switch to supply the same." I opened up the "setup.ini" and under [Options] I entered in: setup SAPWD=" AStrongSAPwd " (taken from http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=190587&SiteID=1 ) Now when I run the setup.exe, I get a Windows Installer window pop up with commands to use with "msiexec" msiexec /Option <Required Parameter> [Optional Para ...Show All

  • Windows Forms Creating Custom Textbox Control .NET 2005

    Hello, I want to create a custom textbox control. I want this control to have fewer properties than the textbox control that is provided by .NET Can i do so. Please suggest. Regards, you can add a custom designer class, and override the PostFilterProperties method, and remove any properties you dont want displayed in the designer. you can also add new private properties that hide the original ones. another more involved way is to create a class that inherits from Control and either have an internal textbox variable and wrap it in your class (provide properties that you want displayed), or set your CreatePar ...Show All

  • .NET Development No connection could be made because the target machine actively refused it

    Trying to connect to a local host TCP port 3380 (the port number chosen arbitrarily): 10.1.10.176:3380 I got this error message: No connection could be made because the target machine actively refused it What shall I do to convince the target machine not to refuse it the next time I used a sock.Connect(serverEndPoint); statement. Thanks This means that there is no TCP Port *LISTENING* for requests at the port 3380 you mentioned. It could also mean that there is a firewall of some sorts that is not allowing incoming connections on that port eventhough you might have a server listening on that port ...Show All

  • SQL Server Getting RecordCount with TableDirect

    Hi, I would like to know if there's any method to get the total number of records in a table without using query. I have the following codes. Dim conn As SqlServerCe.SqlCeConnection Dim cmd As SqlServerCe.SqlCeCommand Dim rdr As SqlServerCe.SqlCeDataReader conn = New SqlServerCe.SqlCeConnection( "Data source=\My Documents\test.sdf" ) conn.Open() cmd = New SqlServerCe.SqlCeCommand("Staff_Table", conn) cmd.CommandType = CommandType.TableDirect cmd.IndexName = "Id_Ind" rdr = cmd.ExecuteReader rdr.Seek(SqlServerCe.DbSeekOptions.FirstEqual, int_seek_n) If rdr.Read() Then    strResult = rdr.GetString(1 ...Show All

  • Visual C# web forms or html forms

    hi,     i may sound so stupid but i really want to raise this question.  i'm using visual studio .net and C#. i am doing a web page and i noticed in the toolbox the Web Forms and HTML which contain some same controls. what should i use does the controls in WebForms have big differences with the controls in HTML thanks. Hi, If that's your scenario, then I suggest using Web-Form controls, so that you could place a code on the button_click to check the validity of the passwords (server side) instead of redirecting your page to a aspx site just tu check (which would be the case if you ...Show All

©2008 Software Development Network