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

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

Dusty333

Member List

Daniel de Lima
Kundan5441
PriyaKutty
Julian Haeger
Crish
AleXXus
Wolfgang W.
jmclennan
Joku
scornful
someguywithoutadisplayname
KaliBaba
Garrett_Brown
TomL63
MarkCrowley
Freeman Shen
Darshak
KSchlegel
vaidhe
Mandy Sweet
Only Title

Dusty333's Q&A profile

  • Visual C++ porting old VC ++ 5.0 code

    I have written some programs that worked quite well under VC++5.0 running on a Pentium III and Windows 98. I am now trying to get these programs to function properly with the  beta version of VS 2005 on a Petium IV running Windows XP Home Edition and am having problems with debug mode under VS 2005. However, and this is very important, when I bring   up a cmd window and run the .exe directly from the command window, everything works the way it's supposed to. I just don't get it. Here's an example of the code that fails: fprintf(stderr, "\n Do you want to modify Default Strategy Y/ " ); fflush( stdin ); ch = _getch(); ...Show All

  • .NET Development Adding cookies to Webservices

    Hi Everybody,    Iam trying to pass cookies from User Interface(WebApp) to WEbservice. Iam using soapcontext to add the cookies //the cookie is added m is the webservice proxy name SoapContext sContext = m.RequestSoapContext; sContext.Add("cookies",aCookie); //Iam trying to find out whether the cookie is passed at webservice it always return false bool t = RequestSoapContext.Current.Contains("cookies") I would like to know what is wrong with this or any other method thru which i can pass cookies Thanks in advance I'm not sure I understand, but if you want to include cookies in the HTTP request ...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 Team System What changes in the RC

    Hi, I was just wondering if someone could do a quick summary of the changed/improved/altered testing features in the Sep 14 RC. I have previously been using Beta 2, but even a general description of what is different would be appreciated. Thanks in advance Thanks guys - That should make convincing the boss to move to the RC a cinch! Much obliged. ...Show All

  • SQL Server "(rsInternalError) Index was outside the bounds of the array" after upgrade to SRS SP2

    After upgrading to SQL Reporting Services SP2, we now get an error every time we try to run any of our reports. The error is "An unexpected error occurred in Report Processing. (rsInternalError) Index was outside the bounds of the array." Anyone have any suggestions I looked in the Report Server logs and see this error but there is no other information that points me to the problem. Thanks in advance. Can you submit your error log from the file reportserverservice<date>.log in the LogFiles folder under your Reporting Services installation path -Lukasz --- This posting is provided "AS IS" with no w ...Show All

  • .NET Development Implementing the IDataReader Interface

    I am trying to implement this interface, but it inherits from IDataRecord that has two properties 'this[string] and this[int]' that I do not know how to override. can anyone help please The short answer is: Implement this[int index] as "return this.GetValue(index)". Implement this[string name] as "this.GetValue(this.GetOrdinal(name));" A longer answer: An IDataReader iterates over records in one or more result sets (Read to iterate over a result set, NextResult to advance to the next result set). At each step in the iteration IDataRecord gives you access to the current recor ...Show All

  • Visual Studio Express Editions microsoft.visualbasic.compatibility 8.0.0.0. ????

    I tried to install a small test app, created in VB Express, on three machines. On one machine the app installed and runs perfectly. The two other machines (one XP Home, one XP Pro) refused to install the app, saying "the system should be updated to microsoft.visualbasic.compatibility version 8.0.0.0.". Can't find anything about this "update". The framework 2.0 Beta was installed automatically prior to this error dialog box. How can I solve this H i Joe I installed VB8/2005, did the latest updates and installed .NET Framework 2.0. I can't locate "Microsoft.VisualBasic.Compatibility.dll" anywher ...Show All

  • Windows Forms closing forms after page_load

    hi,    i am developing mdi application. I load my child window based on the user input, i found that user had given invalid input in page_load event of the child window.  how to stop the loading of the child window. when i use,     this.close(); error message appears that it cant be closed while handle is being created. thanks in advance ...Show All

  • .NET Development WebUserControls not shown

    Hello, when I'm building a WebControlLibrary with a basic WebCustomControl and a basic CompositeControl the IDE (VS2005) displays only the WebCustomContol in the toolbox. Does someone know why my IDE doesn't show the CompositeControls Thank you, Roman Examples: public class SimpleCompositeControl : CompositeControl -> not displayed public class SimpleCompositeControl2 : SimpleCompositeControl -> not displayed public class SimpleContainerControl : WebControl , INamingContainer -> displayed public class WebCustomControl1 : WebControl - > displayed     ...Show All

  • .NET Development Force a Row to validate

    dAdapter.UpdateCommand = commando; dAdapter.Update(( DataTable )DataGridView1.DataSource); Now what happens is that when I edit a row, I have to move to the next row for the one I edited to be validated and updated through DataAdapter. Is there another way of doing this For example, is it possible to force the ROW to validate after one of its cells has been edited Thanks When you say DataRow, are you talking about the Row in the DataGridView Because I don't use DataRows in this code. I just use DataTable. I tried to do like this: private void grelha_CellEndEdit( objec ...Show All

  • Windows Forms How To Call Mdi Function From Dialog Form ?

    Hi All , I Want to call to fnUserExist function From the frmLogin dialog form code. This is the code that I have in the mdi form Form frmChildLogin = new frmLogin(); frmChildLogin.ShowDialog(); public bool fnIsUserExist(String sUser , String sPassword) {    return true ; }   Please Help Thanks. It's Correct, You are OK. Thanks Again David . ...Show All

  • Visual Studio Report compatibility Question

    I want to develop an application that will use Embeded Server reports. My problem is that my application will need to be backwards compatible to SQL2000. My understanding is that my application will use the VS 2005 Report Viewer Controls in Server mode to connect to and display the report stored on the SQL 2005 using the Report Definition Language. If I develop my application and reports with VS/SQL 2005, can I xtransfer the reports onto an SQL 2000 Server and still have my application work, or will I have to develop my application with the VS 2005 Report Viewer Controls in local mode, and embed the reports directly within my application I ...Show All

  • Visual Basic accidentally uninstalled Framework 1.1 first "valid ordering"

    I get the error when I try to uninstall VS.Net 2003. Setup is unable to determine a valid ordering for installation. See the error log for further details. I have the disks and tried reinstalling/ repairing it and that did not work. And I cannot get to the error log as it says. I only used VS.net for school and would like to uninstall it from my computer. Does anyone know what to do after you tried to uninstall it out of order, and removed Framework 1.1 first Please Please help, I've searched all over the web and wish i would have realized there was an order to uninstall VS.net before I did :( Thanks, Liz ...Show All

  • SQL Server Need to reset page count or use distinct count on new Grouping

    I have a report that will come back as 20 pages. What the user wants is on the beginning of another unique ID, which causes a new page to be started, to have the page count restart. So, if I have 3 UniqueIDs for all 20 pages, and the first, IDAA, is 10 pages long, the second, IDBB, is 4 pages long, and the third, IDCC, is 6 pages long, then the page numbering would be as: 1-10 for IDAA 1-4 for IDBB 1-6 for IDCC I know how to do this with Crystal, but am trying to figure it out here with either a page count formula, or some type of distinct count(). Thanks! Hi bubberz, How are you calculating the pag ...Show All

  • SQL Server The subscription to publication is Invalid

    Hi, I have two SQL 2000 Server running on Windows 2003 Standard Edtion. I am using merge option to replicate database as Transactional option is excluding some tables. Both server are not in Active Directory and I am trying to replicate over the internet. I got following error message while using Merge option: Error Message: The subscription to publication 'XXX' is invalid. Error details: The subscription to publication 'XXX' is invalid. (Source: Merge Replication Provider (Agent); Error number: -2147201019) --------------------------------------------------------------------------------------------------------------- The remo ...Show All

©2008 Software Development Network