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

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

AndrewVos

Member List

apaspula
ThomasJaeger
LeeroyB
Dan Shookowsky
chongqing
amiune
Naolin
Matt Bastin
GroZZleR
evci
Zoomy8
Eisen Po
ROECHE
Mapa3matuk
Dom_donald
airin
Heinz_Richards
jdrawmer
GuyWithDogs
Karim Hemani
Only Title

AndrewVos's Q&A profile

  • Visual Studio scale the control in a Div

    I have a div that contains a Reportviewer control. The control can grow so that i get a horizontal scrollbar. Can i set a property to the control that it has to keep growing so that i do not get the horizontal scrollbar the height of the control is fixed but i have a dynamic numbers of columns and i do not want the control to show the horizontal scrollbar, i already have a scrollbar of my div element that contains the control. thanks If you set ReportViewer.AsyncRendering = false, this will cause the viewer to process the report as part of the aspx page and display it inline, instead of in a frame. If you also set ReportViewer.SizeToReportContent, the viewer will grow as needed. ...Show All

  • Windows Forms Problem in accessing data from DataGridView cells

    hello every one! well I got this query here, I'm really stuck in this error. I'm working oin a master detail form in .net 2.0 C# in Windows Forms. its a System.ArgumentException that I'm getting here. I've these dataGridview on the form. I've made a typed dataset for it. the tables are these PurchBill(PurchBillID, VendID, Bookno, BillDate) Purch(purchID,purchbillID,Serial, ModelID, PresentAt,PurchWarranty,PurchPrice) ProdLine ProdModel and vu_manNames thats a view I've set up seperate dataGridViews for Purch, ProdLine and ProdModel and for selecting the manufacturer name here. Look at this code private void saverecord() { try ...Show All

  • SQL Server Finding Errors on 64bit Itanium

    I have an SSIS job that is exiting with an error on a 64 bit Itanium SQL 2005 sp1. It has three parallel streams of execution. I've been running my tests using dtexec with verbose output being sent to a file. 2 of the streams execute several truncates and then are followed by 4 steps that load data from a SQL 2000 server to a SQL 2005 server. One of the job streams sources it's data using a SQL Server username/password while the other sources it's data using integrated security. Both streams use integrated security for the destinations. The third job truncates 2 tables and then loads those two tables from an Oracle database. The oracle connections use a username/password in a connection string in a configuration database while the SQ ...Show All

  • Audio and Video Development Scaling still does not affect the renderer dimensions

    Hi I asked about this problem and got an answer that it was fixed here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=718158&SiteID=1&mode=1 But it still seems to do not work as it should. The problem: I built MFT that performs 2x scaling with input type YV12, NV12 or YUY2. To test it I use a player that based on the PlaybackFX SDK sample. When the output type is YV12, everything is OK and I get the scaled dimensions from the renderer using GetNativeVideoSize(). When the output type is NV12 or YUY2 the GetNativeVideoSize() returns the original dimensions of the video and what I see is a quarter of the frame. I also tried to set it manually with the correct size but it only stretched the quarter and did not display the ...Show All

  • Visual Studio Team System Branch subfolders only

    Hello! I have a TP(TP1) with a main folder and multiple subfolders in it. The main folder along with it's subfolders has been labeled at test123. TP1 Main subfolder1 subfolder2 subfolder3 ... I now need to branch the individual subfolders to team project(TP2) at the parent level. TP2 subfolder1 subfolder2 subfolder3 To accomplish this: 1. I can branch the main folder to TP2 based on label 123 2. Move all the subfolders underneath main to root 3. delete main folder I have 100s of these folders and moving is not an easy task for, even from the command line, I have to do it one at a time. I also tried applying the label in TP1 to sub folders only. But even then, I have to branch one ...Show All

  • Visual C# unsafe code compilation in Visual Studio.NET

    hi there ! I am extreamy new in vs.net and I can not compile the unsafe code through VS enviornment , there must be some thing for that but I dont know how thanks To add a little bit to what Mattias said, you can open the project properties by either double-clicking on the Properties node in Solution Explorer, or by right-clicking on the project and selecting properties. The option is "Allow unsafe code" and it appears on the Build tab of the properties that open (it's the 3rd checkbox on the page). Hope that helps! Anson ...Show All

  • Visual Basic How do I find a column data type

    I need two things. First, I need a list of column (field) names from a DataAdapter once I establish it. Then I need to be able to get the column data type by passing back one of the names, or get all the data types at the same time I get the names. Right now I have a function that passes back a DataAdapter if I pass it an SQL select statement. What is the syntax for getting this info once I get the DataAdapter. Thanks Hi, you probably specified the Select statement for your DataAdaper. If so, you can get the table schema for this select statement's data using GetSchemaTable() method. Here's an example of such function: Public Function GetSchema( ByVal myDataAdapter As SqlDataAdapter) As DataTable myD ...Show All

  • Windows Forms ETA countdown on datagrid

    I was wondering how can i do a ETA on a column of a datagrid It does a countdown .. 10, 9, 8, 7, 6 ..... etc .. on each row of the datagrid there's a eta for the row. Do i need another thread to do the countdown and update the datagrid I don't have a clear idea to do it ... i don't want to use the main thread to update the datagrid .. To your thread problem, if you really want to use another thread to update the gui, here is a demo on this: http://www.codeproject.com/csharp/csharp_guithreads.asp df=100&forumid=15862&exp=0&select=532217 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=399902&SiteID=1 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. myFirstGame sprite flicker - anyone else?

    i completed the first tutorial to make a sprite bounce around the screen. My sprite is 2kb at 87x61 pixels. Tutorial said to use a small sprite ... maybe that's a relative term, but i'd call that small. When my sprite moves around the screen, it looks like my computer is thinking really hard about redrawing it. i get a very noticeable flicker as it cruises around. Does anyone else have this problem i don't know what specs to feed you ... i'm running a dual-core system w/ 2GB RAM and a ATI X1300 vid card that has 256MB memory. i didn't think pushing a 2k image would bring it to its knees ( ) - MrSock Aha, found it, I think. The following line of code in my GraphicsDevice_DeviceReset call fixed the ...Show All

  • Visual C# Is it possible to "synchronize" 2 clients?

    I have absolutely no idea where to post this, so just tell me if I did it wrong. After going through half the internet...okay that's an overstatement, but you get the point. I couldn't find the answer to this...maybe odd ...question. Okay so here's the problem. what I want to do is have 1 server (ASP.NET) and two client browsers. These two clients need to display the same page. And then (for the sake of an example) this page would have like a button or something. Would it be possible to have it so that if you click that button on client A it would also happen on client B I need to know in the first place if it is even possible. If not, just say so and I'm already happy :) If it is, I need some basic info on how to go ab ...Show All

  • Visual Basic clean solution

    Where can I find a discussion of clean solution Exactly what it does, etc. I haven't found any dox on it. To build, rebuild, or clean an entire solution In Solution Explorer, select or open the desired solution. On the Build menu, choose Build Solution , Rebuild Solution , or Clean Solution . Choose Build or Build Solution to compile only those project files and components that have changed since the last build. Note The Build command becomes Build Solution when a solution includes more than one project. Choose Rebuild Solution to "clean" the solution first, and then build all project files and components. Choose Clean Solution to delete any intermedi ...Show All

  • Visual C# Open MultiPage Image?

    I've been trying to find tutorials on how could I open a multipage Tiff Image using the image controll. I just need to be able to split a multi into a single page. Please I would appreciate some url's with good source of info. Thank you for your help If I was told to give you one name of somebody that can help you with these kind of stuff that is will surely be Bob Powell: Adding frames to a Multi-Frame TIFF ...Show All

  • SQL Server Running Value

    Hi all I'm not sure if this is a BUG or if I'm missing something when using the Running value with Sum. (WORKS FINE IF I DO NOT USE A SUBREPORT) ( =RunningValue(Fields!pervalue.Value, Sum , "chart1_SeriesGroup1" ) I have a main report and a subreport, the key field (series group in the chart) that should reset the running value is passed by the main report, so is always different which should reset the running value sum to zero. That is not working, the second time the subreport is invoked, seems like it takes the value from the previous last record and increase it by the same amount. example First call to subreport - key field value = 1 ( chart1_SeriesGroup1 ) subreport retrieve 4 records rec 1 - ...Show All

  • Silverlight (formerly WPF/E) Bounding Box

    Is there a way to get the dimensions of the bounding box of a <canvas> element containing bunch of child elements ...Show All

  • SQL Server Offline Data Mining

    Hi, I am currently working for a client that is interested in performing some data mining on their customer data. The plan was to build a data warehouse, cubes, RS reports etc. and serve this up over the web. However, we now have the problem of having to cater for countries with a very low bandwidth where the Reporting Services approach would not deliver the required performance due to the dependency of the solution on the network bandwith. I am therefore looking into processing offline cubes and copying them over the network as part of the overnight process to a server in the countries. I noticed that PivotTable Services in 2000 had the CREATE MINING MODEL ...... DDL statement for creating offline mining models. Is this cap ...Show All

©2008 Software Development Network