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

Software Development Network >> Beast Forever's Q&A profile

Beast Forever

Member List

mertkan65
Faraz_Ahmed
developer810
cwallace
Matt Lin
chaitanyas
boulderbum
saiyed zuber
Ron Liu
DSent
dickP
TheJet
Hallen
ManjuVijay
Tony Fabian
Fire3.san
Pouyan
satya999
sfarber
Randal Greene
Only Title

Beast Forever's Q&A profile

  • Visual Studio Sandcastle Help File Builder

    I've created an NDoc-like GUI front-end plus a command-line builder tool for automating help file builds with Sandcastle. It's available at: http://www.codeproject.com/useritems/SandcastleBuilder.asp Using the help file builder provides the following advantages: The GUI interface is almost identical to the NDoc interface so anyone familiar with NDoc should be quite comfortable using it. You can import several settings from an existing NDoc project to start a new Sandcastle Help File Builder project. The builder will automatically locate both Sandcastle and the HTML help compiler by looking in the system path and in the Program Files special folder on all fixed hard drives. Properties are also supplied for you to specify the ...Show All

  • SQL Server How to remote processing reports?

    Hi everyone! I have my reports published in a report server. What do I need to do so that the user can processing reports from a windows application There are many ways to do that. Within VIsual Studio 2005 there is a reportviewer control which you can use within your application to contact and display report. If you only want to get a report from the Server and present the user a byte stream to save to a file (something like a button which says Save the report to PDF...) THen you can just use the Report Server Services interface. WHat do you actually want to do (Meanwhile you can take a look on: http://www.gotreportviewer.com/ ) HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server Table Cell width in SSRS 2005

    Hi to everyone! I have a problem and I can't find a solution. I have a table with 5 columns. There's a possibility to increase cell height to accommodate content but it not work for me, I have to have ability to increase cell width to accommodate content. Is it somehow possible with Reporting Services 2005 It's fairly simple task but I can't find solution for it.... Please help... ...Show All

  • Visual Studio 2008 (Pre-release) select in IEnumerable<>

    Hi, is there a way to do similar: var userStates = from u in db.Users where u.UserID in (1,2,3) select new UserState {u.UserID, u.FlStateID }; the list (1,2,3) is an IEnumerable, IList or more general a "not in db"-collection. there are ways to join for sure but the performance is unusable. The join actually is not calculated in the db. thx, Jorg Blaumeiser The current bits do not allow that syntax. As you stated, you could do it as a join on the client side, but I understand the performance implications. The issue has been brought up and the team stated that they would take a look at it. You may wish to check the archives for more information. ...Show All

  • Windows Forms I am trying to use Selection = MultiExtended in my listboxes

    Hi all, How do I remove all my selected items from Listbox1 private void button3_Click(object sender, EventArgs e) { // add seletected items from Listbox1 to Listbox2 if (lstBox1.SelectedIndex != -1) { for (int x = 0; x < lstBox1.Items.Count; x++) { if (lstBox1.GetSelected(x) == true) lstBox2.Items.Add(lstBox1.SelectedItems[x].ToString()); } // this does not work well - something related to the index for sure for (int x = 0; x < lstBox1.Items.Count; x++) { if (lstBox1.GetSelected(x) == true) { lstBox1.Items.Remove(lstBox1.SelectedItems[x].ToString()); } } } } Any ideas - Thank you! Joao nevermind I found the answer :-) //add items for ( int x = 0; x < lstB ...Show All

  • Windows Forms Radial Gradients?

    GDI+ is great! It's so good to finally be able to quickly draw gradients! I know it's possible, but could someone point me in the direction of some information on how to draw radial gradients After much searching, I could find nothing relevant. Anything that is somehow related would be helpful. EDIT: I am painting directly onto a control, not an image. Stealing Bob's code: private void Form1_Paint(object sender, PaintEventArgs e) { GraphicsPath pth = new GraphicsPath(); if (this.ClientSize.Width <= 0 || this.ClientSize.Height <= 0) return; pth.AddEllipse(0, 0, this.ClientSize.Width, this.ClientSize.Height); PathGradientBrush pgb = new PathGradientBrush(pth); pgb.CenterColor = Color. ...Show All

  • Visual Studio Team System MSBuild FlavorToBuild being ignored

    I setup two build types for a team project, one is a testing debug build and the other is a production release build. It seems that no matter what I put in the FlavorToBuild the solution keeps getting build with the Debug configuration. One of the projects in the solution is a web deployment project that swaps sections of the web.config depending on the build configuration so the final output keeps setting this incorrectly. I currently have this in the TFSBuild.proj: < ItemGroup > < ConfigurationToBuild Include = " Release|Mixed Platforms " > < FlavorToBuild > Release </ FlavorToBuild > < PlatformToBuild > Mixed Platforms </ PlatformToBuild > </ ConfigurationToBuild > ...Show All

  • Visual Studio Team System Nice tool but small annoyances

    Almost beats Subversion but merging tool needs one small detail - when you have two upper windows with original and new source code and you scroll one of the windows left or down - Subversion automatically scrolls the another. That's very useful. If TFS team will fix this small thing - Team System will tie again vs Subversion... Thanks for the feedback. You might try a 3rd-party merge tool: http://blogs.msdn.com/jmanning/articles/535573.aspx ...Show All

  • Smart Device Development how to send sms through GSM network sim to bulk mobile no.

    Iam new to mobile developement, mytaskis to send sms to my customers in periodic basis, can any help me in this issue. regards, Keshav Send SMS from what Server Device ...Show All

  • Commerce Server OrderDetail

    I am trying to change the orderdetail and make it multilanguage. But I can't find where to change it And how do I add multilanguage support to it Also I have the same problem for the basketsummary, I want to add a picture instead of the text Cart and make it multilanguage. And change the text. Thanx! /Andreas Hi Max, Yes, sorry for not pointing that out. Have had great help from your blogg earlier around piplines. I am translating the Startersite to Swedish and have managed to make it work except for these to areas. Do I need to rewrite the code and extract the data field by field instead Or is there a faster and better way Andreas ...Show All

  • Windows Forms How to: design-time or run-time (again)

    Hi, I need a control to have a different visual appearance during design-time as opposed to run-time. Nothing fancy. As proposed so often before I use the " this .DesignMode" property. However: 1) Create a CustomControl and in the OnPaint() do something like: if ( this .DesignMode) pe.Graphics.FillRectangle( Brushes .Red, new Rectangle (10, 10, 10, 10)); 2) Create a UserControl and in the designer drop the CustomControl onto it. You will indeed see the red rectangle as intended. 3) Drop the UserControl on your main form. The red rectangle will not show. Apparently the DesignMode property is limited to Controls actually being editable. Understandable but I need design time appearance everywhere while w ...Show All

  • SQL Server Is it the right response from AS 2005???

    I have configured HTTP Access to SQL Server 2005 Analysis Services on Microsoft Windows Server 2003. When I run the URl http://localhost/olap/msmdpump.dll in the browser, the generated response is below. <soap:Envelope> <soap:Body> <soap:Fault> <faultcode>XMLAnalysisError.0xc10e0002</faultcode> <faultstring>Parser: The syntax for 'GET' is incorrect.</faultstring> <detail> <Error ErrorCode="3238920194" Description="Parser: The syntax for 'GET' is incorrect." Source="Unknown" HelpFile=""/> </detail> </soap:Fault> </soap:Body> </soap:Envelope> Is it the ri ...Show All

  • Gadgets ActiveX for Sidebar best practices

    I am interested in further exploring the possibilities of using/developing an ActiveX object for use in a Sidebar gadget but havent done anything like this before. What are the best ways of proceeding with this Can i use Visual Studio 2005 to create an ActiveX object i tried using ATL project, i was able to compile it but not to register it Compiled, built and registered on mine okay, with F7. I also tested it with the following code: var oTest=new ActiveXObject("TestActiveX.TestControl"); oTest.Echo Check you're not getting a compiler error, I had to do a rebuild to get it to compile the first time (right click on TestActiveX and select Rebuild) ...Show All

  • Windows Forms localization in VS2005

    Hi , im using visual studio 2005. I have created localizable Form. For this form i have three .resx (for English, Czech, Finland). Each .resx has own properties. So at this moment I have the form in design mode, Localize attribute is set to true and Language attribute is set to Default. When I move a button on this form for example 3px to left, then this change is written only into defaul resx file. And it's bad. So I want to create new Add-In into Visual Studio which will handle that a change on a form will be written to all resx files. I s there any done solution for this ...Show All

  • Windows Forms validate input data in cells datagridview

    Hi! I hope someone can help me with some article that helps me about validating input data in cells datagridview, like just accept float values, etc. Regards Would you provide me some code sample in order to validate the input of only float values in cells Best Regards. Joseph ...Show All

©2008 Software Development Network