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

Software Development Network >> Scottish Racer's Q&A profile

Scottish Racer

Member List

forrestcupp
Greg J. Brown
Keehan
Alan Stevens
minority80
Samahith
Cyberjunkie
digitalmercenary
Jon Stalnaker
Mendip162
tornin2
bola shokry
tohams
killers
Exploder
Sridhar_GRS
Mark Jefford
SnakeSV
GWeston
Chopaka
Only Title

Scottish Racer's Q&A profile

  • Windows Forms Version property for MSI Files

    Hi, We have created a deployment MSI package and when i right click and click on properties i see only "General" and "Security" tabs. How do i include "Version" tab that would have my product version We are using Visual Studio.NET deployment projects to create the MSI file. Thanks, Kris I'm afraid it is not possible, though I'm still finding the way out. The msi file is created as a non-versioned file. Unfortunately, there is no 'version' tab there as other exe files. But fortunately, there is the 'Summary' tab, which can contain more information you specidfy than the original 'version' tab can do. ...Show All

  • Smart Device Development Add VScrollbar To Panel

    Hello Experts, I have a Panel for which I have specified a dimension. In runtime, I am adding child panels within this panel. I have also added a vertical scrollbar to this panel. All I want is to scroll through the contents of the parent panel, such that it displays the generated child panels. Right now, I am able to render the child panels within the parent panel but can't make it scroll. How to do this I cant find any panel property which can be used to repaint the visible area of the panel while using the scrollbar so that it can be made to scroll. Please help me as soon as possible. I am badly stuck. To earn points, you can also post your answer at: http://www.experts-exchange.com/Programming/Wireless_Programming/Pocket_PCs_All/Q_2 ...Show All

  • Windows Forms WINAPI

    What are WP_SMALLMAXBUTTON and WP_SMALLRESTOREBUTTON params codes They're not in the latest SDK either. This webpage carefully numbered the parts but skipped the ones not in the SDK. Might be a documentation problem, what is a small maximize or restore button anyway The WS_EX_TOOLWINDOW style can only display a small close button, not a minimize, maximize or restore button. ...Show All

  • Visual Studio 2008 (Pre-release) Streamed & Server IIS Hosted

    I want download a file from a web. I've a web application as act as client wcf and a other web server have a wcf server IIS hosted. WCF Client have next configuration: < client > < endpoint name = " DefaultBinding_IFileServer_IFileServer " binding = " basicHttpBinding " bindingConfiguration = " DefaultBinding_IFileServer " contract = " IFileServer " /> </ client > < bindings > < basicHttpBinding > < binding name = " DefaultBinding_IFileServer " messageEncoding = " Mtom " maxReceivedMessageSize = " 2147483648 " transferMode = " StreamedResponse " > </ binding > </ basicHttpBinding >     WCF Server IIS hosted have n ...Show All

  • Visual Studio Accesing help information generates a run time error in line 1

    Every time I want to look up something via the search facility I get a run time error when the page loads. This states there is a syntax error !   The only thing different is I have installed IE7  What is causing this  Thanks   Hi Adrian, Please see this Forum thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=936747&SiteID=1 A Bug Report has been posted at Microsoft, so please follow the link to it in the thread (on page 2) and cast your vote to help speed up the resolution process. Kind regards, Frank ...Show All

  • SQL Server Reporting DateTime values using the timezone of the client application

    We store DateTime values in the database as UTC. It's easy enough to format the datetime value onto a report using the timezone of the server. However we can find no easy way to do this based on the timezone of the client application. Say for example we have a server based on the east coast and it has clients around the world using our application that are in different timezones. When they see data within our application, they are seeing those UTC datetime values appropriately formatted in their local timezone by our application. However, when they ask for a report from reporting services they will see the same datetimes formatted in the timezone of the reporting server, which may be totally different to their own timezone. Has an ...Show All

  • SQL Server MCTS Exam 70-431 Database Administration Study Documementation and Samples ?

    Hi, I am looking for good documentation and examples to use to 'study' for Microsoft exam 70-431. This has everything to do with nuts-and-bolts Database Administration of SQL Server 2005. The December BOL examples, do not cover enough topics. The topics that are covered are not in enough detail. The 70-431 exam requirements are very detailed. This seems to be a nuts-and-bolts test. I am looking for nuts-and-bolts study material. No books are published yet. Does anyone have any good ideas on where to find 'good' samples and tutorials meant for a person who is studying for the new Microsoft SQL Server 2005 Database Administrator Exam MCTS 70-431 All answers and ideas in 'any form' are appreciated. Thank you very much. ...Show All

  • SQL Server Pivot table with no numeric aggregation?

    I'm trying to pivot the data in a table but not aggregate numeric data, just rearrange the data in columns as opposed to rows. For example, my initial table could be represented by this structure: ID Label Value 1 a val1 1 b val2 1 c val3 1 d val4 1 e val5 2 a val6 2 b val7 2 c val8 2 d val9 2 e val10 and I am trying to get it into the following structure: ID Label a Label b Label c Label d Label e 1 val1 val2 val3 val4 val5 2 val6 val7 val8 val9 val10 The number of labels is known beforehand, ...Show All

  • Visual C# Inherit Generic Forms

    How can generic forms / controls be inherited I made some generic forms and controls i want to use in my application as base forms/controls. When i inherit these forms/controls i cannot view the designer anymore. Is it possible to inherit these generics and how Yeah, reusing UI-logic with different "business classes" was exactly the reason I looked at this stuff. Good luck with the toolbar/resource thing. Having to do it in code would almost be an acceptable trade-off given how "nice" the inheritence thing works, and how little duplicated code you end up with. ...Show All

  • Community Chat Unable to show the updated file using app domain

    I am running the application using app domain and get the updated version of the current running application using app updater.dll. The application updated successfully but it not show properly, it closed immediately after updated Why the application close immediately. I want display the updated application. Please give solution for this problem. Thanks & Regards Colleague_SS ...Show All

  • Windows Forms How To work with listBox

    I have my Form Load() function that when it loads i want it to have all the items in the listbox1 selected...i tried it this way but it only selects the 3rd value in the listbox....Should i use the SelectionMode = "something" or what any help for ( int x = 0; x < listBox1.Items.Count - 1; x++) { listBox1.SetSelected(x, true ); } ...Show All

  • Visual C++ performance Comparison between C++, C# and COBOL

    Hi everyone, Currently our company is in the process of converting from a mainframe environment to PCs. As a pilot we took an application that processses about 5 million rows with about a record length of 7000 bytes the stats were amazing C# it took 3 minutes 17 seconds, C++ (native and not .net) 1 minute 28 seconds and believe it or not the COBOL program took only 45 seconds. The program has a simple read of a record, process few business rules and replace certain bytes in the string and write back to a new file. I expected C++ to perform better. does anyone has any idea why the COBOL program performed better than the C++ program. The data files were the same, the logic were the same, the machine it was executed was t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Graph shader?

    I am trying to draw the FPS in a graph. For that I want to pass the shader effect a 1D texture, but it isnt very simple. I understand I need to use a sampler Does the steps of passing and using a 1D texture (or sampler) similar to those of passing and using a 2D texture Or do I need to do it differently For a 2D texture I have the SetTexture method for an effect, but I dont have the equivalent for a sampler or some sort of a 1D Texture which I dont know about. How do I achieve this Thank you. Well, there is a possiblity of non power2 textures, but I think the way they are implemented is that they allocated a power2 texture that is bigger then the required texture. And not all the grap ...Show All

  • Visual Basic binding a variable in a loop

    I am new to VB and having a problem. On a form I have 4 picture boxes (named picbox1, picbox2, picbox3, picbox4). From a button I am trying to populate the four pictures. The file browser comes up fine and I can select my files. My problem comes in the loop when I try to populate the picture boxes. I have a variable named loopphoto. On the first pass I am able to bind loopphoto to picbox1 without any problems. On the second pass of the loop I am unable to rebind loopphoto to picbox2. Currently I need the variable to loop 1 to 4, passing the respective photos into the respective picture boxes. How do I do this In the future I will need to change the code to loop 1 to X and create 1 to X picture boxes respectively. ...Show All

  • Visual Studio 2008 (Pre-release) Drawings with WPF

    Hi! I should create complex drawings at runtime and I should save them as bitmap (needed for an asp.net application). First question: is it good to use WPF to make drawings Second question: if yes, how could I do this without showing the window (this should be done Thanks, any help appreciated ...Show All

©2008 Software Development Network