iccle's Q&A profile
.NET Development Resources for DataSet-Designer in VS2005
Hi, does anybody know any ressources about the DataSet-Designer - how to create Forms from type safe datasets, what the basics of type safe datasets are, how datasets can be created out of stored procedures, how you update type safe datasets during development time when the database still "lives", how to program and extend the functionality with the navigation toolbar, etc Maybe I'm blind, but I didn't find anything that went really deep or covers it in context - neither in the the MSDN nor on the web. Thanks, Klaus Try these articles (see below) if you have not already looked at them. They helped me: This ...Show All
Visual C# Math
Ok. I know this isnt a math class, but I have some questions about the Math Classes in C#. For example, lets say I have 3 numbers. Each can be 0-10. How would I be able to LIST all the combiniations of that. Can someone please help me out Well... I didnt want to mark just one reply as the answer, because all of them were very appreciated. I thank you all very much for you reply for I could not find any help anywhere else. Thank you so much again. ...Show All
Visual Basic Child form???
Excuse me guys. Could someone please tell me how to create what I’m assuming is called a child form (a form that when open takes priority over the main form so I can't access the main form until I’ve closed the child form). Thanks in advance!!! Well i think your talking about modal forms like dialog boxes etc. You would do this by calling the form like so: Form1.ShowDialog() Then the application would be frozen until Form1 is closed. There is the concept of Form owners. You can say this: Dim frm As Form1 = New Form1 frm.Owner = Me frm.Show() what this would acheive is Form1 would be owned by the current f ...Show All
Visual Basic windows generated code
When you drag a datatable onto the form and then drag another data table that is linked to the first table, you have created a master/detail database. I have it working properly but would like to know where the windows generated code is so I can learn how to program that. I have looked in the Form1.Designer.VB but it is not there. When I click on a row in the master table, it fills the detail table. It must do some type of parameter or query. Where is that code. Thank you. Hi, I checked into Form1.Designer.vb for the code that you mentioned. When I ran through an ...Show All
Visual Studio VB6 + Crystal Reports 9 without installation
I would like to know if there is a possible to open an application on Visual Basic 6 with Crystal Reports 9, from a mapped drive without installation on each computer. Thanks, Seven Know Hi, I have the exact same problem.....what runtime files do I need to register on the local computer I have followed the microsoft article 248055 "PRB: Run-Time Error 713...." however I still get the runtime error. Hope someone can help!!! ...Show All
Visual Basic System.DllNotFound Exception
I'm migrating from VB 6.0 to VB.NET 2003. There is a particular file abc.dll that I'm not able to add reference to, though its a dll file. When I try to reference it, the error is 'This is a not a valid assembly or COM component. Only assemblies with extension 'dll' and COM components can be referenced. Please make sure the file is accesible, and that it is a valid assembly or COM component' How can I reference this file If this is not being seen as a COM component you likely need to do a P/Invoke against it. In your old VB6 project, did you have a few ‘define function’ statements that reference ...Show All
Visual Studio 2008 (Pre-release) DLinq's way to "SELECT TOP"
I'm trying to do the following: SELECT TOP 10 FROM tblArticles ORDER by PostDate DESC in DLinq I have this... var articles = from a in db.Articles orderby a.ApprovedDate select a; which does all that except the top 10 part, I can't find any function that does that. Also, What is the return value of such query I want to return Collection<Article> or any type of Array that a repeater can use... It'd be nice if I could just do return articles; Thanks for the help!! You should check the SampleQueries sample that comes with LINQ (in the Samples directory). It has the answer to your questions ...Show All
SQL Server .NET Database/General Performance
Can someone please explain what I'm missing Looks like, from my investigation on the net, that 1500/s is pretty much the upper limit of .NET's ability to insert records. Can anyone tell me why I have tried using UpdateBatchSize properties of 300, 500, 1500, 4500 all of which resulted in a max of 4 seconds difference over 90,000 records. Why can .NET only insert 1500/s when DTS can do roughly a million in a little over a minute, which is approximately 10 times the performance Both were doing only simple inserts. Due to my processing needs and integration with other apps, I really need to do the loading from within the app. I ha ...Show All
Game Technologies: DirectX, XNA, XACT, etc. i Cant use HLSL and rotate an object at same time!
hi, i am using a nvidia HLSL shader in a .X model, when i try to roate it something strange happen, i cant explain exactly, the object orbit arround the camera! why here is the nVidia HLSL Relief Mapping: string description = "Relief Mapping by Fabio Policarpo"; float tile = 5; float3 lightpos = {5.0f,5.0f,0.0f}; float4x4 modelviewproj : WorldViewProjection; float4x4 modelview : WorldView; float4x4 modelinv : WorldInverse; float4x4 view : View; texture texmap; texture reliefmap; float depth = 0.03; float3 ambient = {0.2,0.2,0.2}; float3 diffuse = {1,1,1}; float3 specular = {0.75,0.75,0.75}; float sh ...Show All
Visual Studio Team System Web Services Projects not under source control
Hi, I have installed TFS release candidate and most of the times the Web Services projects of of my solution arent under source control. Every other project ( e.g. win forms, libraries etc) can be (and always is) under the source control (lock symbol inf front of each file) but the Web services projects cant be!!! Trying to check in and check out my solution, yesterday, I lost the web services projects i had. I suppose that because they werent under the source control, the team explorer Deleted them during the process of "Get latest version". Do you know why Could you please help me Nick Macis ...Show All
.NET Development Setting The SMTP For Password Recovery Control
I am developing a website in the new 2.0 framework. I was playing around with the Login controls and came across the Password Recovery control. My question is how do I set the SMTP for that control Thanks! I think I have answerd my own question. The First thing I tried was to go to the administration website and click on the Application Tab and then The SMTP tab. This is not working for me so I had to manually add it in the Web.Config File. Here is what I needed to add. < system.net > < mailSettings > < smtp > &nbs ...Show All
Game Technologies: DirectX, XNA, XACT, etc. ID3DXFragmentLinker::Link*Shader Question
Hi all! I have the following question: When using the ID3DXFragmentLinker::Link*Shader functions , will the fragments be linked in the order they appear in the rgFragmentHandles array Thanks! You are correct! JT ...Show All
Visual Basic Readable Variables
where do i declare an integer so that it can be read by all subs and forms ... the best way i have found to do this so far is to have the value flash up on the screen and then go away after being read by another sub You can also add a new module to your project, and make public variables. Module Module1 Public some_global_var As String End Module ...Show All
Visual Studio Express Editions Two questions about ListBox
hello, Frist question is about ListBox and may be able for other tools How can I enable resize the ListBox control on the form Second : How can I remove only the selected items from listBox1 Best Regards Hi, As to your first question, are you intending to allow users to resize the list box (i.e. the user will click on the list box and drag it to it's intended size like you would a Windows form). If that's what you're gunning for then I don't think that it's possible. One of the gurus around here probably knows a way, but I'm not aware of any. You could do it programmatically by having the user's specify the new size so ...Show All
Software Development for Windows Vista Vista
But why have they written "DOWNLOAD", when you can't download Vista I wonder if there's any other way we can expose this answer for users... sure seems like we get this question a lot. ...Show All
