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

Software Development Network >> Sabre D's Q&A profile

Sabre D

Member List

Scythen
me*
volleynerd
ajliaks
mrshrinkray
visualbasicming
Toni Greco
sarathy
jeffg90
Nick Hart
afg
vijil
Booge914
Kmbhat
Jan Kučera
GregsListAcct
Mnd1
Melissa H.
SimonS_
Olle Gustafsson
Only Title

Sabre D's Q&A profile

  • SQL Server Report of Reports

    Are there any example of SSRS reports using an rdl file as the source for the report. I.e. a Report of Reports Thanks Robert, I did find an article "Integrate XML into Your Reporting Environment" by Bill Wolff at http://www.ftponline.com/special/sqlserver/bwolff/ I will be looking for the upcoming MSDN Article. To elaborate more on my question...I would like to document my reporting service reports using reporting services. For example which property has custom code (e.g. IIF). ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA on Windows XP Embedded

    Is XNA supported on XP embedded If not will it be in the near future Nope, and nope. We currently support only Windows XP SP2, and the Xbox 360 OS. Official Windows Vista support is coming soon. Anything else that we may support in the future cannot be accurately characterized as "soon." I do not believe we are currently considering Windows Embedded. If you have some specific scenarios that you'd like us to address, please submit them to the Connect web site so that others may vote on it and we can consider the impact of supporting that scenario. --Stephen ...Show All

  • .NET Development RFID Reader Project

    Hello, I'm currently working on a project which involves a serial port RFID Reader. I have connected the Reader to COM2 of my PC and i'm trying to get the signals from the RFID Tags. I'm using Visual C# and SerialPort class. The problem is that i can't read or write to the port. I even tried to write something to the port using port.Writeline("string") and then read it with Readline() but it seems that nothing is written and nothing can be read. When i set the RtsEnable to TRUE the BytesToRead property changed from 0 to 9 no matter what i did and still i couldn't read anything. I also wanted to ask you if you have any code samples to send me or if any of you has written a similar program that works. I need to fix t ...Show All

  • .NET Development [Serializable()] vs. [Serializable]

    Hi, I thought I had made a typo in my code when I marked a class as [ Serializable ] instead of [ Serializable ()] But it compiled fine. Wondering what the effect would be. Thanks, Mike Aside from allowing you to code a bit faster... none at all. The compiler provides a few shortcuts when it comes to many things including attributes. Two of the biggest ones is being able to not add the ()'s to the end of the name (when no arguments are being passed in), as well as not requiring the word Attribute at the end of an attributes name... I say that because the Serializable attribute is really named SerializableAttribute. ...Show All

  • Visual Studio Express Editions BINDING NAVIGATOR QUESTION

    I have a binding navigator control asocciate with a data source, the same wiht textbox controls or combo boxes. In ejecution time, when I press in the binding navigator the button to add a new register, all the boxes or combo boxes binding with the data source change to empty that It allow me insert a new row. But I dont know how can I do if I want that some textboxes have a predetermined string. For example, I generate a code field of a table with some vars, and I want when I add a new register that the text box isnt empty, otherwise it has the code that I generate with a external values. Thanks for help ...Show All

  • Windows Forms PerformClick stopped working

    I have the code below that worked for a long time and I made some simple code changes, like adding a msgbox stmt, and now none of my PerformClicks work. Anyone know why Here is the code: Private Sub frm_ARExport_Shown( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Shown MsgBox( "AutoStart=" & AutoStart.ToString) If AutoStart Then MsgBox( "Before btnLogin.PerformClick()" ) 'fires btnLogin.PerformClick() 'does not fire MsgBox( "After btnLogin.PerformClick()" ) 'fires btnDoFile.PerformClick() 'does not fire 'Me.Close() End If End Sub Private Sub btnLogin_Click( ByVal sender As System.Object, ByVal e As Syste ...Show All

  • Visual C# scope problem

    hi I've had this weird problem which is that : i declared this multidimensional array Code: public string[,] selectedTextInfo; i've initialize it in the form constructor Code: selectedTextInfo = new string[/*rows count*/, 2]; i've givin it a values in the load form event in a for loop Code: selectedTextInfo[i-2, 0] = editDataset.Tables[0].Rows [1].ToString(); selectedTextInfo[i-2, 1] = editDataset.Tables[0].Rows [2].ToString(); but when i'm trying to access a value from this array in the SelectedIndexChanged combobox event the value is null or empty " no text displayed just a blank" Code: MessageBox.Show(selectedTextInfo[0, 1]); //when i print the same messagebox ...Show All

  • SQL Server configure Defaultmaxbuffersize and DefaultmaxbufferRows

    i want to improve the performance of my ssis...im left with last 3 bottleneks...3 huge tables ...here are the details : table 1 :rows : 40 million + size of each row..1 -2 KB i had set the default max buffer to the max..100 MB and default max buffer rows to 100,000 ... considering that average row size is 1 kb. table 2: rows :17 million row size : 280 bytes again i have set the max buffer to 100 MB and default max buffer row to 300,000 .applyin the same logic.. table 3 rows: 59 million size per row : 85 bytes.. as the row size was small...i made default max buffer row to 1000000 that'll still be less than 100 mb..which i had set as default max buffer size.... the first 2 have given a considerable sp ...Show All

  • Visual Studio Express Editions Double Quotes in a String?

    You know you're a beginner when you're asking questions like this! I know it's just some silly syntax thing but I can't seem to figure it out. blah = "Ooga "Blarg" Booga" I obviously can't do this because the second double quote marks the end of the string. How do I include a double quotation mark in a string I just don't know the synatx. If my memory serves me correctly (3 double quotes) Dim s as string s = """This is a quoted string""" Should result in s displaying "This is a quoted string" Or you could simply add use chr(34) I think Dim s as string s = chr(34) & "This is a quoted string" & chr(34) ...Show All

  • Visual Studio Sandcastle: No 'protected' icons

    Hi, instead of the 'protected' icons of types, fields, properties and methods, the 'public' icons are shown in the documentation. I'm using Sandcastle September CTP (Technical Refresh) and Help File Builder 1.3.1.1 netsrac Looks like netsrac is correct. I see that there are icons for the various protected member in the Icons directories of both the Prototype and VS2005 styles. However, a quick grep through the generated HTML shows no use of protmethod.gif, and I know I've got quite a few protected methods in my project. — Eric — ...Show All

  • Visual C++ Link error from Command Line: LNK1561

    Hello All: I've looked at the online help pages for link errors when using the command line and still can't fix the error. I see the error relates to entry point not defined'. How do you define the entry point Thanks, PJM What version of the compiler are you using   After fixing main() to use return 0; (you get an error otherwise under VC8), I can compile and link.  Here's the transcript from my machine: E:\Program Files\Microsoft Visual Studio 8\vc\bin>cl -EHsc foo.cpp Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.363 for 80x86 Copyright (C) Microsoft Corporation.  All rights reserved. foo.cpp Microsoft (R) Incremental Linker Version 8.00.5072 ...Show All

  • SQL Server Error When Attaching Database

    Hello Everyone, I am very new to SQL and just completed an install of SQL 2005 Express. After install, I downloaded the Adventure Works database and attempted to attach through both the Object Browser (right-click 'Databases'--->'Attach') and by running the script that is located on the SQL download page where I got the Adventure Works db. Here's the error that I get: "Could not find row in sysindexes for database ID 8, object ID 1, Index ID 1. Run DBCC CHECKTABLE on sysindexes." I have attempted to go through the help files, but unfortunately the above message is too cryptic for me and I have no idea what it's telling me. Can someone help Thanks!! Hi Dear, I got the same ...Show All

  • SQL Server cannot connect to redirector

    Hi, although I read thru several threads I still did not really find a solution for my problem. I have installed a SQL server 2005. i built a cube in SQL server BI studio but unable to deploy the project. giving a msg Error 1 The project could not be deployed to the 'localhost' server because of the following connectivity problems : A connection cannot be made to redirector. Ensure that 'SQL Browser' service is running. To verify or update the name of the target server, right-click on the project in Solution Explorer, select Project Properties, click on the Deployment tab, and then enter the name of the server. please help me in getting the project deployed. thanx in advance. Please ...Show All

  • Windows Forms two related tables Parent and Child on the same data form, is it possible?

    I am stuck on this from some days now and i hope that someone here can help me in finding an answer to this simple question: why if i drag an instance of two tables (in detail view mode) that i have in a simple dataset i created on my main form (the two tables got a simple relation between them - ParentTblPK to ChildTblFK) i can actually browse delete and update records accordingly but i cannot add a new record to ChildTbl I can only add records to ChildTbl accordingly to its rtelation to ParentTbl if i drag a detail view instance of my ParentTbl on the form and a datagridview of my ChildTbl, that's weird, i do not want to have a datagridview of my ChildTbl, instead i'd like to have a single form handling two tables with labels and corres ...Show All

  • Visual Studio Team System How do I find out when Load Testing fails because of number of users?

    What kind of errors system produces when Load Testing fails because of the excess number of users Here are a few examples of issues you may see if you generate excess load against your web server: HTTP:500 errors (server too busy) SQL deadlocks (depending on the back end your system uses) Excessive IIS queue size Client side web page timeouts Server side application failures (generally these appear is either the event logs or custom error logs if your application uses them) Hopefully this helps, --Mike ...Show All

©2008 Software Development Network