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

Software Development Network >> VSFW3's Q&A profile

VSFW3

Member List

cwlaualex
Satya vani
NickNotYet
Sculptor
JorgeLaines
R Raghu
santaclaus
LKeene
Francisco G
Scheinka
pmarreddy
Ali Coder
Jason Croft
xhead
Ahoapap
Shaik Habeeb
Jeremiah Fulbright
Mark_Davies
PMSAR
CaRNaGe_46038
Only Title

VSFW3's Q&A profile

  • Windows Forms Docking TableLayoutPanel

    I have a splitcontainer, which contains a docked table layout panel. I want to dock the tablelayout panel to fill, but without anchoring. When the users resize the form, I want the table layout panel to stretch vertically and horizontally, but I want EACH cell within the table to proportionally resize. Right now, the only way I can dock to fill is to have a top and left anchor, and when that happens, only the top two cells of the 4 row by 1 column table layout panel stretch vertically (and all of the cells stretch horizontally). How do I have it so that all of the 4 rows stretch proportionally both vertically and horizontally This forum is messed up. Can you delete the last 2 posts This is the pic--> http://img56.imagesh ...Show All

  • .NET Development PrintDocument leaves a large bottom margin on some printers

    I'm trying to print a Bitmap which fills a complete A4 page (portrait). I use the following code: PrintDocument pd = new PrintDocument (); pd.PrinterSettings.PrinterName = printer; foreach ( PaperSize ps in pd.PrinterSettings.PaperSizes) { if (ps.Kind == PaperKind .A4) { pd.PrinterSettings.DefaultPageSettings.PaperSize = ps; break ; } } pd.PrinterSettings.DefaultPageSettings.Margins = new Margins (0, 0, 0, 0); pd.PrintPage += new PrintPageEventHandler (pd_PrintPage); pd.Print(); private void pd_PrintPage( object sender, PrintPageEventArgs e) { e.Graphics.InterpolationMode = System.Drawing.Drawing2D. InterpolationMode .HighQualityBicubic; e.Graphics.SmoothingMode = System.Drawing.Drawing2D. Smoo ...Show All

  • SQL Server Compatibility with SQL 2000

    I have moved a database from SQL 2000 to SQL 2005 Express. I have modified the structure in 2005 Management Studio Express. Now I cannot attach to the modified dataabse in SQL 2000 Enterprise Manager. I get "Error 602: Could not find row in sysindexes for database ID.... Run DBCC CHECKTABLE on sysindexes". This occurs despite the fact that I have kept the database at Compatibiluty Level SQL Server 2000, as reported in 2005 Management Studio Express. Are 2005 and 2000 databases not compatible Many thanks. Compatability Mode has nothing to do with the database format, it has to do with how commands are run by the database engine. Databases are automatically converted to ...Show All

  • .NET Development Stripping diacriticals from string?

    Is there a .Net string method that will strip diacriticals from strings That is, what can I replace ToNoDiacriticals with to get the following to work: string foreign = "Bia owie a"; if (foreign.ToNoDiacriticals().Equals("Bialowieza"))     System.Console.Writeln("Works!"); The typo I meant was changing "(c <= 0x0300)" to "(c < 0x0300)". This may be why you were getting an accented e. I got a response from the client and it's worse than I suspected. They're trying to use user-entered strings for filenames and URLs, so they not only want diacritics removed, but converted to 7-bit ASCII with metacharacters like :, ", ', , /, *, and so on removed. Ugh. I'm going to ...Show All

  • Visual Studio Express Editions mspdb80.dll was not found !

    When I tried to run cl.exe from the command line, the error message I get is "Application unable to start, mspdb80.dll was not found". Can somebody help me with this Thanks, Deepak shjuspea wrote: I've just encountered the same problem when I tried to run a platform SDK server 2003 SP1 sample using VS2005 in command line these days, fortunately I solve it now. Maybe useless for you: the key is the environment variable "PATH" vs2005 c:\program files\microsoft visual studio 8\ psdk c:\program files\microsoft platform sdk\ First, go to vs2005 install path c:\program files\microsoft visual studio 8\vc, run vcvarsall.bat to set environment variable; then c:\program files\microsof ...Show All

  • SQL Server Copying variables from another package

    HI, we have something like 120 packages that need to be "upgraded" to a newer version of a template. Basically, we need to add a bunch of variables of various types (12-15 variables). Is there a way to open the package in a script task and add those variables programmatically Or is there another way to do it (e.g. modify the dtsx file) Thank you, Ccote There's no way to do this using the Designer. However a package is just an XML document so you try adding a new variable by processing those XML documents using XQuery. If you work out how to do that - reply here and let me know -Jamie   ...Show All

  • SQL Server Setting the sheet names in Excel

    Hi, I have a main report with some sub reports. I put the sub reports in a rectangle and selected insert page break before on the rectangles. If I run the main report and then select export to excel the sub reports are called Sheet1, sheet2, sheet3 How can I change those sheet names I tried setting the bookmark, label and tooltip but no luck. If I only export 1 report, the name of the sheet is the name if the report. So how can I fix this Constantijn Enders Hi Constantijn , There is a post of Geoff Krapft about naming Excel sheets, you can read its post issuing that it is not currently possible but may be added for a future version. http://forums.microsoft.com/TechNet/ShowPost ...Show All

  • Visual Basic saving file to sql server.

    Hi, I couldn't update my data table. Everytime I debug my program, it's added into data table and show data successfully. When I exit my application, everything turned empty. Try Me .Validate() Me .CustomersBindingSource.EndEdit() Me .CustomersTableAdapter.Update( Me .NorthwindDataSet.Customers) MsgBox("Update successful") Catch ex As Exception MsgBox("Update failed") End Try Hello Bruno, This is a newbie question. I have a textbox and I just want to create a record in a sql 2005 express table for the value in that textbox. Just one column for one record. It seems like in the above you are copying the contents of the table to memory, insert a new record and then ...Show All

  • SharePoint Products and Technologies MySite masterpage

    Hi All, On MOSS2007: I'm trying to change the default masterpage for mySites. I tried to edit the default.aspx in the 12/templates/sitetemplates/spspers folder, but I can't seem to let it point to another master ... as soon as I change the masterfile path, the page breaks. Any ideas on what's the best approach to link up my mySites with a custom masterpage Fred Hi, Well, I use a custom masterpage on the rest of the portal, so I'dlike to use that one. But if that doesn't work, customizing the default would be ok too ... if it affects only the mysites that is .. ...Show All

  • Software Development for Windows Vista web.config windows workflow schema??

    Is the WF schema for the web.config published somewhere I can't find it in the help or online. This page has information on what can go into web.config and app.config files: http://msdn2.microsoft.com/en-us/library/ms732240.aspx ...Show All

  • SQL Server I need to change the name of a field...

    I need to change the name of a field in a db hoy can I do so ...Show All

  • Windows Forms scroll richtextbox with custom scrollbar

        I want to scroll richtextbox with a custom toolbar ( a vscroll control ) and want to disable scrollbars of richtextbox. Any idea on how to go on that path any samples I've posted a short how to on the subject on CodeProject ...Show All

  • SQL Server ArgumentNullException thrown after second connection

    Hi, Our application has two parts: one is Windows application and the other one is Windows service. The service runs under Local system accont. We use third party application to log into database which uses instance of SQL Server 2005 Express . We use same methods for logging for Windows application and for Windows service. Both, application and the service are compiled with .Net framework 2.0 and VS 2005 (C#). The application always logs into the database succesfuly. The problem is with the service. The code for the service works like this: first login into database to retrieve some data, after that log off and disconnect, and after that immediately tries to login again using the the same credentials. The first login is alway ...Show All

  • Visual C++ msvcr80.dll Problem

    Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin Hi Martin, can you clarify on what you mean when you say, " Are you sure that WinDoctor is right ".... I know its installed correctly, up to date and functioning properly if that's what you meant. ...Show All

  • Software Development for Windows Vista workflow designer

    Hi All, I wonder whether it is possible to host the workflow designer in my app.  I thought it would be cool if I can have the workflow designer as my app's GUI. Thanks, DK I had to put my workflows in the GAC in order to have the Workflow Monitor reliably find them. And in order to put a Workflow into the GAC, you first have to set the Build property of each Workflow dll to have a strong key. And before you do that, I believe you have to go to the Visual Studio 2005 Command prompt and use the sn command to create the strong key. ...Show All

©2008 Software Development Network