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

Software Development Network >> Magic PC's Q&A profile

Magic PC

Member List

Alan M Dunsmuir
srjing2
Rossgov
Littletommy
Wayne R
Gaim28
pjc955
I am Josha
Handerson
Burrough
Sniper167
scscsc
Condor2525
Jason Callas
Chips_in
idos
Alexei_shk
WayneSpangler
krhoover
Howard B
Only Title

Magic PC's Q&A profile

  • Visual FoxPro how can i restore a form that failed to load?

    it happens when i compile my project. "Error Loading file-record number 3. cursoradapter < or one of its members>. Methods: c:\myprogram\forms\solditem.SCT is not an object file" is there anyway we can restore it since if we copy from the original, and or make another d'same form from scratch it's a long process. Thank you I meant record #3 in your scx file. You should do something like this: -Take backup of .scx and .sct -Try a compiling and check if that works (that might be the only thing needed at times) compile form solditem.scx -If it doesn't work: use solditem.scx browse && check record#3 use It's hard to say what you're looking for but you might find some offending code in prop ...Show All

  • SQL Server Third Major Flaw with Reporting Services!

    What is the way to keep multiple detail rows together on one page. There seems to be no future to keep multiple detail rows together. I'm not talking about table keep together, group page break or anything like that. I have 3 rows that need to be in one page at all times. Is there anyway that this is possible Enkh I don't really follow you on that. How do you put a "detail" rows into textboxes Do you mean actually copy the detail fields into textboxes each I'm not really sure what you mean by putting the detail rows into textboxes Copy the values Thanks for making it clearer. Enkh ...Show All

  • Community Chat Kyro KidSafe Browser (beta)

    Hello all, I am making a "KidSafe" browser for kids. Please download my program and post any noticed bugs,etc.  It takes only minutes to set up.  I am 10 years old, so who can make a browser for kids better than a kid Progress:  Final will be started in January Thanks you everyone for your contributions  and encouragement.  *Has 3 tabs for browsing. *Has a "My Websites" button with up to ten of your programmed websites in it. Beta Features: *Has 3 tabs for browsing. *Has a "My Websites" button with up to ten of your programmed websites in it. *Talking Help guide *A new install program Updates in final version: *Button text replaced with graphics. *A game room with games, and fun KidSafe software (suc ...Show All

  • Smart Device Development TypeLoadException - need help with loader log

    I have a CF project that has been working for quite a while. Recently, I began doing unit testing of some CF assemblies from a desktop targeted project. For some reason, the code no longer runs on the device. It gives the following exception: Could not load type 'System.Collections.Generic.List`1' from assembly 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969DB8053D3322AC'. I'm not sure if I've somehow used generics in a way thats not supported on the CF but yet is still allowed to be compiled (since it runs from the desktop unit test projects). I have no idea what's going on. I've tried reinstallation of .NET CF 2.0 SP1. Here's a portion of the output of the loader log: ====================================== ...Show All

  • Visual C++ CHeaderCtrl 16-bit bug/limitation

    Using latest Windows XP and comctrl32.dll 6.0 I run across CHeaderCtrl bug where the control does not display any columns whose rectangle left coordinate are past 32768. I have an owner-draw CHeaderCtrl with over 800 columns ( col_1, col_2, etc. will do ) Looking in the debugger I found out that CHeaderCtrl::DrawItem is not getting called for items at the end of the list. For the last item that is displayed correctly LPDRAWITEMSTRUCT rcItem is rcItem {top=0 bottom=36 left=32744 right=32787} You run across the same limitation if you don't use owner-draw style. Control does not display any of the columns at the end of the list whose rectangle are beyond 32768 boundry. ...Show All

  • Visual Studio Express Editions File Types

    Hi, I have an application that is able to save and load data in text form using a '.sdq' file type that I made up. I have a couple of questions: - how can I make the app check when it is launched whether .sdq is assigned to any other application, and if not, assign it to my application (or prompt the user) - I've assigned this file type to my application manually, so that now if I double-click on a .sdq file in the file explorer it will spawn a new version of the app but doesn't load the file into the app - when the app is spawned, how can I make it call the load subroutine to load the file that spawned it Cheers, Stu You can also try the command too. I found this to work great for me: ...Show All

  • Visual Studio Team System Does Team System work in Vista?

    I'm trying to record a few webtests using Visual Studio on my Vista OS but it doesn't appear that I am going to be able to get it to actually record. Has anybody else tried this Does it work Thanks -Matt ...Show All

  • SQL Server Time Series only predicts one step

    I have a relational table with daily sales for 364 days (52 week span) for 60 stores. I have created a Microsoft Time Series model using store as the case and the historical/actual line charts appear in the Charts viewer for each store. But only one prediction step is shown no matter how many prediction steps I select. I have tried this with an OLAP-based model and also tried a simple DMX query, all with the same result. Thank you in advance for any help with this. P Taylor Jamie and Alexei, I did get more predictions with a compexity penalty of 0.96. I have some more data sets from additional groups of stores that I plan experimenting with. Many thanks for your help. Philip Taylor ...Show All

  • Visual C# how to Get all of SelectedValue and put it in On textbox?

    "I've one checkboxlist in a webform, I was tried to retrieve all of SelectedValues from CheckBoxlist"; way 1 : string i = SelectBoxList.SelectedValue; Label1.Text =i; this way is only shows "1" Value in Textbox whatever how many CheckBox I Select. way 2 : (I Use Array) string [] checklist = (string) (CheckBoxList.SelectedValue); Label1.Text= checklist[0,1,2,3,4]; when run Theme way 2 , System throw Error message .... could someone help Me to Resolve this problem thank you very much ! If u still wondering how to get the selected items from ur CheckBoxList here's da code i have written n works perfe ...Show All

  • Visual Studio Team System Class + IsAbstract + IsStatic = weird Problem.

    Hello, I have to develop a rule where I have to check the names of abstract classes. Well, if I use ‘c.isAbstract’ property, then I get all the static classes too. If I use ‘! c.isStatic’ trying to filter out the static classes I get any output at all. However if I try to filter out the static classes which are not abstract classes first, I get the same output as before. If I only check classes for being static I get all loaded classes, whether they are static or not. Class c; 1. if(c.isAbstract)… - get abstract and static classes 2. if(c.isAbstract && ! c.IsStatic)… – no output. 3. if(c.IsStatic && ! c.IsAbstract) Return null; If(c.IsA ...Show All

  • Visual Studio 2008 (Pre-release) Binding to the ScrollBar.LineXXXCommand of a scroll viewer?

    Hi all, Here's my dillema. I'm using a scroll viewer that needs to be manipulated by a pair of templated repeat buttons. Here's some pseudo-code that shows my scrollviewer <ScrollViewer Name="scroller" Grid.Row="1">  <ScrollViewer.Template>   <ControlTemplate TargetType="{x:Type ScrollViewer}">    <ScrollContentPresenter Grid.Row="1" Content="{TemplateBinding Content}"/>   </ControlTemplate>   </ScrollViewer.Template>    <ItemsControl ItemTemplate="{StaticResource blah}" ItemsSource="{Binding Path=blahPath, Mode=Default}" Name="myWrapPanel" >        <ItemsControl.ItemsPanel>   &nb ...Show All

  • Visual Basic Exposing a property to the IDE's Properties Explorer?

    I'm building a UserControl that's basically a colorgradient display with a Gradient-StartColor and a Gradient-EndColor in particular, and I would like those colorproperties to be listed in the Properties Explorer during designtime, similar to the BackColor and ForeColor properties of built-in controls. How can I expose an object's property like this Hi Add public get and set properties of type System.Color and visual studio will figure out the rest. eg Public Property GradientStartColor As System.Color Richard ...Show All

  • Visual Studio Team System Command "BisSubscribe.exe" is not valid

    Hi all, I am new to Team Foundation Server and am trying to send an email when the build process fails. Can someone tell me in details about how I can do it I read somewhere in the forums that I should run the following command in the Applications Tier/TFS: BisSubscribe.exe /eventType BuildCompletionEvent /address <email address> /deliveryType EmailHtml /server <server name> /filter "TeamProject='<Team Project>' AND Configuration='<Build Type>'" /userid <your id> But when I run this in the command Window I get this error: Command "BisSubscribe.exe" is not valid Can someone suggest something also I am not sure if command window in the VS is the right place to run the command ...Show All

  • SQL Server Read CSV file - Save Columns into Rows

    I want to import CSV file and convert columns into rows depending on Customer count(2nd record in each row of CSV file) and save to SQL table --CSV file format State, Customer_Count, Name_1, Total_1,Name_2, Total_2,Name_3, Total_3..can go upto 600 GA,2,'John Doe',14.00,'Roger Smith',15.00 FL,3,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00 SC,5,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00,'James Brown',17.00,'Rick Davis',18.00 Data in SQL table from csv file should look like this State,Name,Total GA,John Doe,14.00 GA,Roger Smith,15.00 FL,John Doe,14.00, FL,Roger Smith,15.00 FL,Sally Cox,16.00 I have multiple CSV files with millions of records. How can i achieve this using Integration Services or Bulk Data ...Show All

  • SQL Server Blank subject line in data driven subscription emails

    Hello, Within the last month or so, all of the emails coming out of data driven subscriptions on our reporting services server have started going out with blank subject lines, no matter what we put in (this was not happening with the emails' subject lines before). Does anyone know what might cause this or if there is a workaround to keep this from happening Thanks in advance, ...Show All

©2008 Software Development Network