Ramp Up ForumA place to discuss the Ramp Up program an online program that assists users in learning Microsoft technology. It provides easy-to-access content, in a guided path that defines the important lessons and the order in which you learn them. Ask/answer questions and give feedback here!© 2009 Microsoft Corporation. All rights reserved.Wed, 25 Nov 2009 23:20:20 Z4db64f76-cade-4626-a3e5-a500ac5e6129http://social.microsoft.com/Forums/en-US/rampup/thread/bd739a5a-905f-4992-b286-809659b499fchttp://social.microsoft.com/Forums/en-US/rampup/thread/bd739a5a-905f-4992-b286-809659b499fcandy_hanger18http://social.microsoft.com/Profile/en-US/?user=andy_hanger18Where have the language tracks gone?I was just about to point someone to some parts of the C# programmers track and I've only just noticed they've gone! Only have Web, Mobile and Sharepoint tracks left. What happened Zach?Wed, 25 Nov 2009 23:20:19 Z2009-11-25T23:20:20Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/653b2f22-dad4-4754-8f75-0420c2879125http://social.microsoft.com/Forums/en-US/rampup/thread/653b2f22-dad4-4754-8f75-0420c2879125JanIgnaciohttp://social.microsoft.com/Profile/en-US/?user=JanIgnacioDeclaring public property in XAML C# code-behindHi all,<br/> <br/> I'm new to this forum, but I've been following the resources attached to this place, as I am trying to build my skills in C#, XAML, and Silverlight in general - attending PDC09 inspired me to really explore where Microsoft's tools can bring me as a developer, and I'm hoping I can find some support here as I continue learning :)<br/> <br/> Anyway, let me cut to the chase - I'm familiar with declaring variables in C#, but I came across the following code snippet, which claimed to define a &quot;public property&quot; within a C# code-behind file -<br/> <br/> <pre lang="x-c#">public string FileName { // FBCTextBox is a TextBox defined in XAML<br/> get { return FBCTextBox.Text; } set { FBCTextBox.Text = value; } }</pre> As far as i can tell, though, this looks more like a method, and I'm not even sure how &quot;get&quot; and &quot;set&quot; works, as they're commands in C# that I'm not familiar with. Can anyone care to explain this piece of code? <br/>Tue, 24 Nov 2009 20:40:37 Z2009-11-25T23:12:56Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/fb25e2a8-9b9e-435a-aedf-f68cd0f15284http://social.microsoft.com/Forums/en-US/rampup/thread/fb25e2a8-9b9e-435a-aedf-f68cd0f15284NEJI24http://social.microsoft.com/Profile/en-US/?user=NEJI24C#<p>hi!<br/>i'm having problem in c# web enabling data <br/>i'm writing the following code but when i open it in explorer using apache then <br/>it shows internal error.i;m using studio 2008 and MS-ACCESS as database.<br/><br/>kindly help me.<br/><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small"><font size=2 color="#2b91af"><font size=2 color="#2b91af"> <p>OleDbConnection</p> </font></font></span><font size=2 color="#2b91af"> <p> </p> </font></span></p> <p><span style="font-size:x-small"> s;<font size=2> <p>s =</p> </font></span></p> <p><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small">new</span></span><span style="font-size:x-small"> </span><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">OleDbConnection</span></span><span style="font-size:x-small">(</span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\zzz.mdb&quot;</span></span><span style="font-size:x-small">); <p>s.Open();</p> <font size=2> <p> </p> </font></span></p> <p><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">OleDbCommand</span></span><span style="font-size:x-small"> c;<font size=2> <p>c =</p> </font></span></p> <p><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small">new</span></span><span style="font-size:x-small"> </span><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">OleDbCommand</span></span><span style="font-size:x-small">(</span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;select * from abc&quot;</span></span><span style="font-size:x-small">, s);<font size=2> <p> </p> </font></span></p> <p><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">OleDbDataReader</span></span><span style="font-size:x-small"> r; <p>r = c.ExecuteReader();</p> <font size=2> <p> </p> </font></span></p> <p><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">Console</span></span><span style="font-size:x-small">.WriteLine(</span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;Content-Type:text/html\n&quot;</span></span><span style="font-size:x-small">); <p> </p> <font size=2> <p> </p> </font></span></p> <p><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small">while</span></span><span style="font-size:x-small"> (r.Read()) <p>{</p> <font size=2> <p> </p> </font></span></p> <p><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small">for</span></span><span style="font-size:x-small"> (</span><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small">int</span></span><span style="font-size:x-small"> i = 0; i &lt; r.FieldCount; i++)<font size=2> <p> </p> </font></span></p> <p><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">Console</span></span><span style="font-size:x-small">.Write(r.GetValue(i) + </span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot; &quot;</span></span><span style="font-size:x-small">);<font size=2> <p> </p> </font></span></p> <p><span style="color:#2b91af;font-size:x-small"><span style="color:#2b91af;font-size:x-small">Console</span></span><span style="font-size:x-small">.WriteLine(</span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;&lt;br&gt;&quot;</span></span><span style="font-size:x-small">); <p>}</p> </span></p>Sat, 21 Nov 2009 06:11:18 Z2009-11-21T06:11:19Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/222e6b56-580a-4f97-9103-64210660e79chttp://social.microsoft.com/Forums/en-US/rampup/thread/222e6b56-580a-4f97-9103-64210660e79cvmars316http://social.microsoft.com/Profile/en-US/?user=vmars316How to SET TRAP for onMouseDown event dynamically?Greetings: <div>User wants to create visual controls with a click or two. </div> <div>Never know (at design time) which control type and or how many of each.<br/> <div>Programatically i want to create a visual control (maybe button or trackbar) .</div> <div>Then i want to dynamically create a onMouseDown event trap for that control. </div> <div><br/></div> <div>The create control part i can do for button, edit and label. </div> <div>But how to set the trap is still a mystery to me. </div> <div><br/></div> <div>Source code in C+(preferably) would be a great help.</div> <div><br/></div> <div>Thanks...vmars316</div> </div>Thu, 19 Nov 2009 23:51:29 Z2009-11-19T23:51:30Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/9fe6b58b-1a69-4650-b29e-7f52d1b60bfahttp://social.microsoft.com/Forums/en-US/rampup/thread/9fe6b58b-1a69-4650-b29e-7f52d1b60bfaNitin213http://social.microsoft.com/Profile/en-US/?user=Nitin213Is it possible to export gantt chart view to excel 2007 in MOSS 2007?Hello All,<br/>              Is it possible to export gantt chart view to excel 2007 in MOSS 2007?<br/>             <br/>Now i am trying to export gantt chart view but i am getting only columns in excel sheet.<br/><br/>my requirement is i want gantt chart view with list columns in excel sheet.<br/><br/>Please provide some inputs .. whether it is possible or not thru out of box.<br/><br/>if no den please let me know some other way to make it possible ...<br/><br/>Thanks in advance<br/><br/>Tue, 17 Nov 2009 12:36:18 Z2009-11-18T05:56:42Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/65196cd1-895c-4f0b-8ab5-c65983ff6fffhttp://social.microsoft.com/Forums/en-US/rampup/thread/65196cd1-895c-4f0b-8ab5-c65983ff6fffGARussellhttp://social.microsoft.com/Profile/en-US/?user=GARussellLearning to use SQL Server Compact Edition 3.5 with VB Express EditionI was trying to create a database using SSCE 3.5 according to steps in Learning VB. The instructions say that I should be able to copy the data in the Northwind database Customers table to the clipboard and then into a Customers table in a sample database. When I try to paste the data from the clipboard to the database, nothing works! The paste option is disabled in the dialog box whether I try to use the menu bar or a context menu. I can paste the data to Word with no problem. Does this only work with the full Visual Studio and not with VS Express Edition?Fri, 13 Nov 2009 19:14:36 Z2009-11-13T19:14:37Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/9fdb5fb3-6427-4b74-bdb2-83abb1fbc38fhttp://social.microsoft.com/Forums/en-US/rampup/thread/9fdb5fb3-6427-4b74-bdb2-83abb1fbc38fandy_hanger18http://social.microsoft.com/Profile/en-US/?user=andy_hanger18How do people end up here for questions?I was just wondering how people actually navigate to the Ramp Up forum when they want to ask non Ramp Up questions? Just lately there has been loads of various questions asked here on a wide range of topics.<br/><br/>AndyFri, 23 Oct 2009 07:44:09 Z2009-11-13T01:24:26Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/376021ed-5649-4110-b90f-8ab795cf17e3http://social.microsoft.com/Forums/en-US/rampup/thread/376021ed-5649-4110-b90f-8ab795cf17e3Tanmay.Anjariahttp://social.microsoft.com/Profile/en-US/?user=Tanmay.AnjariaQuery regarding GetClipBoxIn one of the programs that I'm using, it seems that GetClipBox is returning a wrong value. While debugging this, I read some MSDN pages and concluded something. My conclusion is in form of a statement below. Please comment wether it looks right or not.<br/><br/>GetClipBox() = GetClipRgn() + GetRgnBox()<br/><br/>Please comment.<br/>Thu, 12 Nov 2009 13:59:13 Z2009-11-12T13:59:15Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/e9f81e68-ce89-4404-97e8-907d0632ceb5http://social.microsoft.com/Forums/en-US/rampup/thread/e9f81e68-ce89-4404-97e8-907d0632ceb5Desh Chathuhttp://social.microsoft.com/Profile/en-US/?user=Desh%20ChathuHow can I parameterize the values which were auto generated<p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;color:black;font-family:Calibri">I'm using VSTS 2008 for my performance executions. How can I parameterize the values which were auto generated?<br/><br/>I did a manual test and identified that some values updated in the DB according to the sequential order, therefore I parameterized those values through the CSV file and tried to update those values in the database while running the Load test.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;color:black;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;color:black;font-family:Calibri">If we insert the invalid values in the CSV file (not to the sequential order). System gets crushed after running the Load test. Because that, I’m trying to update an invalid numbers into the DB.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;color:black;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">Is there any way to parameterize the auto generated values?</span></p> <p> </p>Thu, 12 Nov 2009 09:41:59 Z2009-11-12T09:42:00Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/740dcb0f-feb6-4a3b-bbb2-43e8393121d0http://social.microsoft.com/Forums/en-US/rampup/thread/740dcb0f-feb6-4a3b-bbb2-43e8393121d0webbeinghttp://social.microsoft.com/Profile/en-US/?user=webbeingTotally lost: Win32, WFC, WPF, or ???Hello,<br /><br />I am a newbie to Microsoft technologies, though I can program in C++ and C#.&nbsp; I need to write an app to simulate traffic on a freeway.&nbsp;&nbsp;A general architecture of the app is as followed: part of the screen displays a road with moving cars, the other part has controls to allow user to zoom-in (the road), adjust numerous traffic parameters.&nbsp; The scenary surrounding the freeway do not change.&nbsp; However cars's position are changed and the display needs update one&nbsp; a second.<br /><br />What is the technology with the least ramp-up time to use for this?<br /><br />Regardless of ramp-up time, what is the best technology to use for this?<br /><br />A great many thanks!Fri, 02 Oct 2009 18:54:18 Z2009-11-12T03:31:48Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/4f17bc44-eeda-4f96-ad34-cc8a0d0dbc42http://social.microsoft.com/Forums/en-US/rampup/thread/4f17bc44-eeda-4f96-ad34-cc8a0d0dbc42select14http://social.microsoft.com/Profile/en-US/?user=select14pick data from a column of data and display in pop up windowI have a column of data and want to write a function in each cell so that when a predetermined value is entered a pop up window will display a message. Data validation don't work because I want it to happen on a one time basis only. Hope I have explained what i want clearly.Wed, 11 Nov 2009 15:40:14 Z2009-11-11T18:43:03Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/bbb5b159-e9a2-4b17-b406-e1df2738aab5http://social.microsoft.com/Forums/en-US/rampup/thread/bbb5b159-e9a2-4b17-b406-e1df2738aab5Entry levelhttp://social.microsoft.com/Profile/en-US/?user=Entry%20levelParsing a Web Site Hi  <div>Can any body say how to parse a website </div> <div>and </div> <div>How to Access a website and parse the contents in to a textfile in .Net</div>Mon, 21 Sep 2009 03:14:30 Z2009-11-11T12:16:01Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/2d117ad2-e800-444f-9831-6386d4ee1d42http://social.microsoft.com/Forums/en-US/rampup/thread/2d117ad2-e800-444f-9831-6386d4ee1d42JohnSeadenhttp://social.microsoft.com/Profile/en-US/?user=JohnSeadenResources for the Ramp up labsIs it possible to download copies of the resources used within the Rampup labs? I want to complete the labs about Sharepoint but can't run them through our internal network, firewall etc. I could do them on our local development server if I could get copies of the resources needed.<br/><br/>Thanks<br/>JSTue, 10 Nov 2009 09:02:14 Z2009-11-10T22:02:41Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/439f86e4-9028-4f44-9fd1-b7692c6fe315http://social.microsoft.com/Forums/en-US/rampup/thread/439f86e4-9028-4f44-9fd1-b7692c6fe315Desh Chathuhttp://social.microsoft.com/Profile/en-US/?user=Desh%20ChathuHow can we parameterize the random numbers, which was generated from the application<p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">Hi friend,</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">I am using VSTS 2008. Have some questions regarding parameterize, if you can please help.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">Can we parameterize the random numbers, which was generated from the application?</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">As example:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">In my webtest, VSTS tool recorded the Query String Parameters under ‘jsp’ files, as below</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">--<a href="https://abc.com/keepsessionAlive.jsp"><span style="color:windowtext">https://abc.com/keepsessionAlive.jsp</span></a></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"><span style="">   </span>--QueryString Parameters</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"><span style="">     </span><span style=""> </span>---rand123 = 1234567</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">In our application, both ‘rand123’ and ‘1234567’ values get changed in every run.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:10pt;font-family:Calibri">If I want to run this webtest for 10 concurrent users, so how can I generate this random values via the tool?</span></p>Tue, 10 Nov 2009 14:06:57 Z2009-11-10T14:06:59Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/8a32f0a1-36fd-4476-bd10-58ab0a8a26a0http://social.microsoft.com/Forums/en-US/rampup/thread/8a32f0a1-36fd-4476-bd10-58ab0a8a26a0Selsterhttp://social.microsoft.com/Profile/en-US/?user=SelsterReporting servicesAfter adding HideDuplicates to a column, how do i make sure my grand Total totals the column correctly?<br/>I do not want the total to calculate the &quot;hidden&quot; row amount.Tue, 10 Nov 2009 10:49:14 Z2009-11-10T10:49:15Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/a82e9f13-4b3d-42e8-ad0d-f2243676c364http://social.microsoft.com/Forums/en-US/rampup/thread/a82e9f13-4b3d-42e8-ad0d-f2243676c364Balmer25http://social.microsoft.com/Profile/en-US/?user=Balmer25Buttons on second form dont workHey, im working on a project the moment and i need help regarding multiple forms<br/>The project uses two forms to load data from an external file the second form (the one i need help with)<br/><br/>The second form has a text box on it in which the user types in the filepath of the external file then clicks on the button to add it to the list of files. I set up a message box to appear when the button is clicked to confirm when it is added but nothing happens<br/><br/>Can anyone help with this?<br/><br/>The code for the second form is below:<span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small"> <p> </p> <pre lang=x-vbnet>Imports System.Windows.Forms Public Class DialogAdd Dim Filepath As String Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmd_cancelLoad.Click Me.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Close() End Sub Private Sub cmd_AddScen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmd_AddScen.Click End Sub End Class</pre> </span></span><span style="font-size:x-small"><font size=2> <p>And this is the code for the button that loads the second form</p> </font></span> <p><span style="color:#0000ff;font-size:x-small"><span style="color:#0000ff;font-size:x-small"> <pre>Private Sub cmd_Load_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmd_Load.Click DialogAdd.Show() End Sub</pre> </span></span></p>Sat, 07 Nov 2009 18:05:03 Z2009-11-07T18:05:04Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/59682069-4b18-4fdb-b635-338f7ee5681fhttp://social.microsoft.com/Forums/en-US/rampup/thread/59682069-4b18-4fdb-b635-338f7ee5681fA.dudehttp://social.microsoft.com/Profile/en-US/?user=A.dudehow do I get an .exe out of a .cpp?<p>The title is saying it.  Useful answers, please!</p>Wed, 26 Aug 2009 05:08:06 Z2009-11-07T09:21:41Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/53660d25-3703-4f96-97fd-ebe90dad6362http://social.microsoft.com/Forums/en-US/rampup/thread/53660d25-3703-4f96-97fd-ebe90dad6362HayTahttp://social.microsoft.com/Profile/en-US/?user=HayTaMicrosoft Visual Web Developer 2008 Express EditionHi<br/>First of all, I have to admit that i am very new to create a website.<br/>I am trying my hardest to lear how to use Microsoft Visual Web Developer 2008 Express Edition, I have watched the videos and read the msdn.microsoft.com/en-us/library. I am still quite not sure how to use this!!<br/>I have been practising on Notepad and i was fine. When i start to using tVisual We Developer, I feel like i havent learn anything. I think this link is for old versions ( <a href="http://msdn.microsoft.com/en-us/library/ms178093(VS.80).aspx">http://msdn.microsoft.com/en-us/library/ms178093(VS.80).aspx</a> ) I think i have the newer versions. Can someone please please help me out to get the correct instructions for Visual Web Developer 2008 Express Edition or any advise what to do please?<br/>Any help will be much appriciated.<br/>Thanks so muchSat, 07 Nov 2009 00:34:57 Z2009-11-07T00:34:58Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/2a5f264b-d4d0-4938-9901-0633dd10af20http://social.microsoft.com/Forums/en-US/rampup/thread/2a5f264b-d4d0-4938-9901-0633dd10af20pjsiconhttp://social.microsoft.com/Profile/en-US/?user=pjsiconJust learningI am just starting to learn C++. I use a lot of apps that interface to unix and linux servers and I was thinking to develope an app for converting raw data from asc files to gui representations in a windom, xp or vist client.Wed, 04 Nov 2009 16:47:45 Z2009-11-04T16:47:46Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/b67a6d2d-55cc-49c3-b097-2c582c98da0chttp://social.microsoft.com/Forums/en-US/rampup/thread/b67a6d2d-55cc-49c3-b097-2c582c98da0cdavid-shanghttp://social.microsoft.com/Profile/en-US/?user=david-shangdo not create client via web application stress tool on vista?????????????????Fri, 11 Sep 2009 01:59:17 Z2009-11-03T15:17:27Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/d9766c7c-bfc2-48a7-b56b-abea58cfb4e1http://social.microsoft.com/Forums/en-US/rampup/thread/d9766c7c-bfc2-48a7-b56b-abea58cfb4e1Prestochttp://social.microsoft.com/Profile/en-US/?user=PrestocRequest failed: Context parameter '$HIDDEN1.ctl00_wind0_ClientState' not found in test context<p>I am working with VSTS 2008 web test---I'm not a developer so I'm a novice to the code, but I would very much appreciate some assistance if anyone can offer up some suggestions.  <br/><br/>I'm getting the error  <em>Request failed: Context parameter '$HIDDEN1.ctl00_wind0_ClientState' not found in test context.  </em>I've looked in the Extract Hidden files in the prior steps and have tried several avenues but to no avail.  <br/><br/>Side note: we just converted to .NET so I'm not longer using InfoPath forms. <br/><br/>Does anyone have any suggestions how to resolve? <br/><br/>Thank you.</p>Tue, 12 May 2009 22:13:51 Z2009-11-02T14:31:54Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/80b94372-ce15-4801-9784-32d8bc6fb8achttp://social.microsoft.com/Forums/en-US/rampup/thread/80b94372-ce15-4801-9784-32d8bc6fb8acjcmochishttp://social.microsoft.com/Profile/en-US/?user=jcmochisRead status bar message from excel, not write READ!!<p>Hello people, i want to know the status bar message of excel 2003, i know is a property named statusbar but the problem is i can only set values to the status bar, i can not read the value, for example if i tried to read the status bar mesage i always got a FALSE, even if the status bar shows READY, can somebody helpme?</p>Wed, 16 Sep 2009 13:47:52 Z2009-11-02T14:30:27Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/b1444d36-e672-4c77-9f4d-92c705424e2fhttp://social.microsoft.com/Forums/en-US/rampup/thread/b1444d36-e672-4c77-9f4d-92c705424e2fRubel Khanhttp://social.microsoft.com/Profile/en-US/?user=Rubel%20KhanFree Download - 2 Hours of SQL Server 2008 Training<div style="font-weight:bold;font-size:11px;padding-bottom:5px;overflow:hidden;line-height:140%;font-family:Verdana, Arial, Helvetica, sans-serif"><a href="http://www.appdev.com/promo/SN00064"><span style="color:#800080">Free Download - 2 Hours of SQL Server 2008 Training</span></a></div> <div style="font-size:11px;line-height:140%;font-family:Verdana, Arial, Helvetica, sans-serif;padding:0px">Download two hours of step-by-step demonstrations and code walkthroughs by experts Don Kiely and Frank Tillinghast, plus hands-on lab exercises, sample code, and printable courseware. Free SQL Server 2005 training also available.</div><hr class="sig"> Rubel Khan Thu, 04 Jun 2009 22:13:14 Z2009-11-02T14:27:37Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/32e1e68c-e499-439d-9508-24b3a981c722http://social.microsoft.com/Forums/en-US/rampup/thread/32e1e68c-e499-439d-9508-24b3a981c722Rubel Khanhttp://social.microsoft.com/Profile/en-US/?user=Rubel%20KhanFree Microsoft e-books (3) for those learning Visual Studio 2008<strong>You can still download following three Microsoft press e-books if you are intersted in learning Visual Studio 2008<br/><br/>Programming Microsoft® ASP.NET 3.5<br/></strong>by Dino Esposito <br/><strong>Programming Microsoft LINQ </strong> by Paolo Pialorsi and Marco Russo<br/><strong>Introducing Microsoft® Silverlight<sup><span>TM</span></sup> 2, Second Edition<br/></strong>by Laurence Moroney<br/><br/><a href="http://csna01.libredigital.com/?urvs5cn3s8">http://csna01.libredigital.com/?urvs5cn3s8</a> <br/><br/>Hope this is helpful.<hr class="sig"> Rubel Khan Fri, 22 May 2009 20:39:42 Z2009-11-14T05:25:43Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/d23ac915-cc14-4664-bc67-997a8cc8decchttp://social.microsoft.com/Forums/en-US/rampup/thread/d23ac915-cc14-4664-bc67-997a8cc8deccvb6noviceprogrammerhttp://social.microsoft.com/Profile/en-US/?user=vb6noviceprogrammerMSAGL Downloaded but not sure how to install it. I need to see if it is the tool I need to draw graphs from Visual Basic. Is this a standalone program?I am new to BizSpark.  I need a tool that will draw graphs from information/formulas in Visual Basic.  Is MSAGL the tool?  I downloaded two files.  Automatic Graph Layout and Research Automatic Graph Layout, however they are not ISO files.  They are both zipped.  I have moved them to a folder in Programs and Unzipped them, however, I am not sure how to install them so that I can use them.  Any help would be appreciated.  I also have an Automatic Graph Layout Help.chm but I'm unable to get it open.Mon, 02 Nov 2009 03:49:53 Z2009-11-02T03:49:53Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/0fe0a5f3-263f-4c3d-88ee-e9313d8267f5http://social.microsoft.com/Forums/en-US/rampup/thread/0fe0a5f3-263f-4c3d-88ee-e9313d8267f5Natasja94http://social.microsoft.com/Profile/en-US/?user=Natasja94Can not access ASP.NET configuration tool PLEASE HELP<pre lang=x-html>I am using IIS7 and Visual Studio 2005 and I can not access the configuration tool below is the error I get. PLEASE HELP Server Error in '/asp.netwebadminfiles' Application. Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, <br/> and as a result non-serializable objects or MarshalByRef objects are not permitted. <br/> The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode. </pre> <br/>Fri, 30 Oct 2009 06:06:54 Z2009-10-30T09:11:39Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/602bc4ea-016c-415a-b450-6b5c68375c75http://social.microsoft.com/Forums/en-US/rampup/thread/602bc4ea-016c-415a-b450-6b5c68375c75hawashohttp://social.microsoft.com/Profile/en-US/?user=hawashovisual c++ samples and examplesVisual c++ samples and examples <br/> <br/> http://visualcsamples.blogspot.com<br/> <br/>Sat, 24 Oct 2009 18:12:48 Z2009-10-24T18:12:49Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/1b6ee1f8-ffa8-487f-b4a0-52e9a1cf56a2http://social.microsoft.com/Forums/en-US/rampup/thread/1b6ee1f8-ffa8-487f-b4a0-52e9a1cf56a2Quiztarhttp://social.microsoft.com/Profile/en-US/?user=QuiztarWhy won't my video card support the Windows Aero feature in Windows 7 but it will in Windows Vista?I have a nvidia 7600GS 512MB AGP video card and the compatibility upgrade advisor automated program for Windows Vista Home Premium says ny video card will support the Windows Aero features on it but the Windows 7 upgrade advisor says my video card won't support the Windows Aero features.  Why is this?  Is this accurate? <hr class=sig> -- JohnThu, 22 Oct 2009 22:28:32 Z2009-10-22T22:28:33Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/f7ffae26-1bf9-4f52-8c09-e71e84866b4ahttp://social.microsoft.com/Forums/en-US/rampup/thread/f7ffae26-1bf9-4f52-8c09-e71e84866b4acurioComphttp://social.microsoft.com/Profile/en-US/?user=curioCompHow to read/write from/to a file in Haskell?How to read/write from/to a file in Haskell?lThu, 22 Oct 2009 16:48:52 Z2009-10-22T16:48:52Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/e72bd191-54ab-41f8-8612-a6757978b7cahttp://social.microsoft.com/Forums/en-US/rampup/thread/e72bd191-54ab-41f8-8612-a6757978b7caRubel Khanhttp://social.microsoft.com/Profile/en-US/?user=Rubel%20KhanFree e-book: Introducing Windows Server 2008 R2Greetings! Microsoft is happy to say that another free e-book is now available.  <p><em>Introducing Windows Server 2008 R2</em>, by Charlie Russel and Craig Zacker with the Windows Server Team at Microsoft.</p> <p>Here is the book’s Content at a Glance:</p> <p>Introduction    xvii<br/>Chapter 1    What’s New in Windows Server R2    1<br/>Chapter 2    Installation and Configuration: Adding R2 to Your World    9<br/>Chapter 3    Hyper-V: Scaling and Migrating Virtual Machines    25<br/>Chapter 4    Remote Desktop Services and VDI: Centralizing Desktop and Application Management    47<br/>Chapter 5    Active Directory: Improving and Automating Identity and Access    65<br/>Chapter 6    The File Services Role    91<br/>Chapter 7    IIS 7.5: Improving the Web Application Platform    109<br/>Chapter 8    DirectAccess and Network Policy Server    129<br/>Chapter 9    Other Features and Enhancements    147<br/>Index    163<br/><br/>This book can be downloaded <a href="http://download.microsoft.com/download/5/C/0/5C0BD0AB-040D-4C56-A60B-661001012DDA/Windows_Server_2008_R2_e-book.xps"><strong><span style="color:#226699">here (XPS file, 28 MB)</span></strong></a> and <a href="http://download.microsoft.com/download/5/C/0/5C0BD0AB-040D-4C56-A60B-661001012DDA/Windows_Server_2008_R2_e-book.pdf"><strong><span style="color:#226699">here (PDF file, 11 MB)</span></strong></a>.<br/><br/>You can review the introduction here <a href="http://rubelkhan.wordpress.com/2009/10/21/free-e-book-introducing-windows-server-2008-r2/">http://rubelkhan.wordpress.com/2009/10/21/free-e-book-introducing-windows-server-2008-r2/</a> <br/><br/>Hope this is helpful.</p><hr class="sig">Rubel Khan - <a href="http://rubelkhan.wordpress.com">MY BLOG!</a> <br/> If your question was truly answered, please mark it as Answered and Vote as helpful. Thank you in advance. Wed, 21 Oct 2009 14:58:42 Z2009-10-21T14:58:43Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/91f8209d-8bad-42cc-847f-2dd0085d57f2http://social.microsoft.com/Forums/en-US/rampup/thread/91f8209d-8bad-42cc-847f-2dd0085d57f2MaksBresthttp://social.microsoft.com/Profile/en-US/?user=MaksBrestAnyony can help me out?Hi guys. I am new to .net programming. Although I have quite a good experience with plain old basic, C++, it is only recently that I decided I wanna be a developer.<br/>Can anyone please give me an assistance on where to start? Cause I tried that ramp-up track on web development and it seems too easy so far (now that I have reached the second chapter in 20 minutes). Like any good books out there, maybe some opensource learning projects for the beginners (although not dummies in programmming).<br/>Thanx.Wed, 21 Oct 2009 00:53:57 Z2009-10-21T08:18:03Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/6f19f9ce-ad3a-4090-9d5a-9c73b61f01adhttp://social.microsoft.com/Forums/en-US/rampup/thread/6f19f9ce-ad3a-4090-9d5a-9c73b61f01adLane the Greathttp://social.microsoft.com/Profile/en-US/?user=Lane%20the%20GreatScreen Rectangle Glitch in Screen SaverHello. Every one this is my first time using a forum. A problem I'm having is with a screen saver I'm building. What it's supposed to do is mainly prevent Screen Burn by creating rectangles on the screen that randomly flips through colors. It can also play music selected by the user. The configuration dialog configures the amount of rectanges on both X and Y axes of the screen, the music file to play, and whether to loop the audio or not. It's perfect acept for one flaw. After it displays a specif amount of squares it goes completely white. The more squares the user picks the sooner it goes blank. The audio still works but the screen goes blank! I'm working on this in the C Language, using an older version of Dev-C++ compiler. I've tested it on Windows Vista and Windows Xp and got the same results. If any one could help I'd be very much obliged.Mon, 19 Oct 2009 00:18:41 Z2009-10-20T20:36:25Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/69ee71e1-8187-4491-b5c3-9788e8a44fb4http://social.microsoft.com/Forums/en-US/rampup/thread/69ee71e1-8187-4491-b5c3-9788e8a44fb4amanda challhttp://social.microsoft.com/Profile/en-US/?user=amanda%20challHow to make calendar on mac?<p>I want to <a title="make calendar on Mac" href="http://www.imediacreator.com/tutorial-photo/use-calendar-template-to-make-calendar-on-mac.html#175">make calendar on mac</a>, i found there are some template on net, i want to  use some templates to make it. any advice?<br/></p>Tue, 20 Oct 2009 05:33:49 Z2009-10-20T20:34:03Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/c73324b0-8e7a-4678-ae03-1d816281c2f2http://social.microsoft.com/Forums/en-US/rampup/thread/c73324b0-8e7a-4678-ae03-1d816281c2f2davige1http://social.microsoft.com/Profile/en-US/?user=davige1 LINK : fatal error LNK1561: entry point must be definedI don't understand, This is a new project, with a blank form.&nbsp;VS-express was just installed on this box. This is how it came. VS picked the directories it self. What do I do?Thu, 15 Oct 2009 20:55:54 Z2009-10-16T08:45:57Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/54bc818b-62a1-4d42-a9fd-40d22ebcd180http://social.microsoft.com/Forums/en-US/rampup/thread/54bc818b-62a1-4d42-a9fd-40d22ebcd180J Zhang at Vancouverhttp://social.microsoft.com/Profile/en-US/?user=J%20Zhang%20at%20VancouverIs there a way to go over the system analysis service(SSAS)?I'm trying to find a way to finish learning how to use and develop SSAS modules in a short time by myself. a literal website or article helps as well. thanks!Fri, 09 Oct 2009 17:06:25 Z2009-10-14T04:59:41Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/ce465519-3f34-4bc0-bcb6-cfe682fffcb8http://social.microsoft.com/Forums/en-US/rampup/thread/ce465519-3f34-4bc0-bcb6-cfe682fffcb8Tcherserhttp://social.microsoft.com/Profile/en-US/?user=TcherserI have a great idea for Microsoft. How do I contact anybody who evaluates ideas?Tue, 13 Oct 2009 13:47:09 Z2009-10-14T04:57:02Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/d8d9ce1c-e77a-4bf1-b1d3-ce9fc1a02e4dhttp://social.microsoft.com/Forums/en-US/rampup/thread/d8d9ce1c-e77a-4bf1-b1d3-ce9fc1a02e4dNewWormGuyhttp://social.microsoft.com/Profile/en-US/?user=NewWormGuyabout sendto(...) functionHi, I went through the library and what caught my interest was the sendto function and i did copy the source code and complied in my dev c++ complier and did some error checking and found out that it was not working... i mean that it was returning a -1 value which meant that it was not working during execution.<br/> <br/> i also tried setsockopt function but could not make it to work...<br/> <br/> So please could some one give me a advice or anything to this regard... by the way i am just a beginner....<br/> <br/> here is the source code:<br/> #include &lt;windows.h&gt;<br/> #include &lt;stdio.h&gt;<br/> #include &lt;conio.h&gt;<br/> #include &lt;iostream&gt;<br/> <br/> using namespace std;<br/> //#include &quot;winsock2.h&quot;<br/> <br/> int main() {<br/>     <br/>   WSADATA wsaData;<br/>   SOCKET SendSocket;<br/>   sockaddr_in RecvAddr;<br/>   int Port = 1123;<br/>   char SendBuf[1024];<br/>   int BufLen = 1024;<br/> <br/>   //---------------------------------------------<br/>   // Initialize Winsock<br/>   WSAStartup(MAKEWORD(2,2), &amp;wsaData);<br/> <br/>   //---------------------------------------------<br/>   // Create a socket for sending data<br/>   SendSocket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);<br/>   if(SendSocket == INVALID_SOCKET)<br/>   {<br/>   cout &lt;&lt; endl &lt;&lt; SendSocket &lt;&lt; endl &lt;&lt; endl;<br/>   }<br/>   //---------------------------------------------<br/>   // Set up the RecvAddr structure with the IP address of<br/>   // the receiver (in this example case &quot;123.456.789.1&quot;)<br/>   // and the specified port number.<br/>   RecvAddr.sin_family = AF_INET;<br/>   RecvAddr.sin_port = htons(Port);<br/>   RecvAddr.sin_addr.s_addr = INADDR_BROADCAST;//inet_addr(&quot;255.255.255.255&quot;);<br/> <br/>   //---------------------------------------------<br/>   // Send a datagram to the receiver<br/>   printf(&quot;Sending a datagram to the receiver...\n&quot;);<br/>   int broadcast = 1;<br/>   if(setsockopt(SendSocket, IPPROTO_UDP , SO_BROADCAST,<br/>    (char*)INADDR_BROADCAST,sizeof(INADDR_BROADCAST)) == SOCKET_ERROR)<br/>    { <br/>     printf(&quot;setoptError:: %d&quot;,WSAGetLastError());<br/>  }<br/>    <br/>    <br/>   int x = sendto(SendSocket, <br/>     SendBuf, <br/>     BufLen, <br/>     0, <br/>     (SOCKADDR *) &amp;RecvAddr,  <br/>     sizeof(RecvAddr));<br/>     <br/>   printf(&quot;\nSendto Failed == %d :: %d\n&quot;,x,WSAGetLastError());<br/>     if(WSAGetLastError() ==  WSAEACCES)<br/>    {<br/>     printf(&quot;set error:::%d\n&quot;,WSAGetLastError());<br/> }<br/>   <br/>   //---------------------------------------------<br/>   // When the application is finished sending, close the socket.<br/>   printf(&quot;Finished sending. Closing socket.\n&quot;);<br/>   closesocket(SendSocket);<br/> <br/>   //---------------------------------------------<br/>   // Clean up and quit.<br/>   printf(&quot;Exiting.\n&quot;);<br/>   WSACleanup();<br/>   getch();<br/>   return 0;<br/> }Sun, 13 Sep 2009 12:28:39 Z2009-09-19T08:17:59Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/afc2b570-7a80-43df-a74e-628f35e3cf20http://social.microsoft.com/Forums/en-US/rampup/thread/afc2b570-7a80-43df-a74e-628f35e3cf20Tarkan Tunchttp://social.microsoft.com/Profile/en-US/?user=Tarkan%20TuncqwertrewrTue, 15 Sep 2009 20:34:03 Z2009-09-15T20:34:03Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/68e9251e-b3aa-4966-9ed2-be8ff25dd2f0http://social.microsoft.com/Forums/en-US/rampup/thread/68e9251e-b3aa-4966-9ed2-be8ff25dd2f0lexibinhttp://social.microsoft.com/Profile/en-US/?user=lexibincann't use coredll.dll ApisHi,<br/> <br/>   I am trying to use initlocale() and Reinitlocale() functions from coredll.dll. But i don't know, what are the arguments i need to give and what exactly these functions will do.If anyone knows please help me.Fri, 11 Sep 2009 09:52:24 Z2009-09-15T06:01:14Zhttp://social.microsoft.com/Forums/en-US/rampup/thread/abf7ab9b-2b0a-4ca5-a770-26d41113dc39http://social.microsoft.com/Forums/en-US/rampup/thread/abf7ab9b-2b0a-4ca5-a770-26d41113dc39Ball80301http://social.microsoft.com/Profile/en-US/?user=Ball80301New to MS Visual Sourcesafe and not sure what is required to start from scratchI'm a new user and need to determine how to implement Visual sourcesafe 2005 to my needs.<br/><br/>Is Visual sourcesafe standalone?  I see references that it requires visual studio which I do not need.<br/><br/>I'm basically using this as a CM tool, there are other alternative, but this is what I have to work with.  I'll have 4 PCs connected via a LAN to a server using remote profiles.  Do I need to install Visual sourcesafe on each PC, so I need 4 licenses/boxes?  Or do I need one box with a admin install and 3 clients (client SW included in the one box?)  Does sourcesafe include the tools to create a database without having one prior?  I'll be using this to maintain file CM on files of different extensions and not for extensive coding purposes but may in the future.<br/><br/>If someone can explain the implementation and what is required that would be helpful.  Unfortunatly I'm new to this software since MS bought it.Mon, 14 Sep 2009 23:11:44 Z2009-09-14T23:11:45Z