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

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

kid_kaneda

Member List

Attila Fogel
Pavel Burianek
aguess
swan_sg
Guy F
Ashesman
vaughanSkyblue
Kesava
Pete Ford
V.E
Carl Janssen
billqu
confused419
izo336606
Nitramsen
anzrul
skyway1217
jturpin
XCT Adolfo
Minway
Only Title

kid_kaneda's Q&A profile

  • Windows Forms Typed DataSet connection

    I am making extensive use of the typed datasets -- .xst files in the App_Code directory -- I let the wizard generate the stored procedures and the fill, GetData, insert, update methods. Very handy. However, I'm wondering how the connections are made and closed. Can anybody give me a rundown of how these data sets work Thanks in advance, Tom If you click on the show all files button in the server explorer it will show the code for the tableadapters class if you want to look at it. Basically behind the scene it creates a dataadapter which will open and close the connection for you when you fill your dataset or update the database. ...Show All

  • Visual Studio Express Editions capturing pixel color

    I have an image in a pictureBox. How can I "get" the R, G, and B values of EACH PIXEL (I know about looping..I need the instruction to actually "get" the values). thanks, xlthim 1. I need to cycle through EVERY pixel in the image, not move the mouse over the image. For now, I'll just run a for loop and store them in an array. What I'm trying to do is manipulate the R, G, and B of each pixel, then redraw after my corrections.   2. I tried to run your exe, and I need an SDK for IC Imaging Control.   If I can get past this part, I figure I could run the for loop and call your function.   tks   Found the IC Imaging stuf ...Show All

  • Visual Studio Express Editions Can't install Visual Basic 2005 Express due to download error ( CheckTrust.VerifyTrust Failed )

    I have tried multiple times to download and install Visual Basic / Visual Studio with the same result on two different computers. The download fails to install. I have disabled virus and spyware checkers and have also set my DSL Router firewall to a low protection level. These changes have not altered the outcome. The failure comes after about 38MB of download. The pertinant portion of the file dd_vsinstall80.txt is : [01/31/07,14:22:31] Microsoft Visual Basic 2005 Express Edition - ENU: dlmgr: entering CDownloadJob::Complete() [01/31/07,14:22:31] Microsoft Visual Basic 2005 Express Edition - ENU: dlmgr: leaving CDownloadJob::Complete() [01/31/07,14:22:32] Microsoft Visual Basic 2005 Express Edition - ENU: dlmgr: FVerifyTrust.Trust ...Show All

  • Visual Basic Making a window appear at the mouse

    But I want the bottom-right hand corner to appear at the mouse popint. How would I do this Ok .. is this what you were after Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim pt As Point = Windows.Forms.Cursor.Position Dim size As Size = Me .Size Me .Location = New Point(pt.X - size.Width, pt.Y - size.Height) End Sub Richard ...Show All

  • Visual Studio Debugging VS2005 Dialog Box

    I want's to debug what happen when VS2005 "Add new item" dialog box is click and what function were called when we create any file VIA this dialog box. What Can I do. When you click the Add New Item menu, VS 2005 shows a dialog with the item templates installed, scanning ItemTemplates folders like: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates C:\Program FIles\Microsoft Visual Studio 8\SmartDevices\Projects\ItemTemplates etc. which are also cached, AFAIK. When you select an item template, a wizard is invoked which adds the file to your project, or at least this was so in VS.NET 2003. The wizard typically receives a ProjectItems collection as parameter and it calls the AddFromTemplate / ...Show All

  • Windows Forms Window class name is not valid

    When I create a new WindowsApplication project, add any control to the main form and run the project - I get the following exception on Application.Run(new Form1()); I am using VS 2005 beta2.050215-4400. This haven't happened until now. What went wrong Any help will be appreciated Gabriel The exception data follows: System.ComponentModel.Win32Exception was unhandled   Message="Window class name is not valid."   Source="System.Windows.Forms"   ErrorCode=-2147467259   NativeErrorCode=1400   StackTrace:        at System.Windows.Forms.NativeWindow.WindowClass.RegisterClass()        at System.Windows.Forms.NativeWindow.WindowClass.Create(String className, In ...Show All

  • SQL Server Merge Replication Mysteriously Deleting Rows

    I am running a simple merge replication in SQL Server 2000. I have one database that is the publisher, and a second database that is the subscriber. When I add a new row to the subscriber it will replicate to the publisher as expected. However, the new row at the subscriber will then be deleted without explanation. The row will remain at the publisher though. Does anyone know why it is doing this THen you need to provide more information about the article and values so we can help you. IS this article part of a join filter ...Show All

  • Visual Basic Iterating through a given component type in a VB form

    Hello all, I am looking for a way to iterate through a given component type in a VB form. For example, if I want to go through all the buttons found in a given form and change their text to "XYZ", is there perhaps a "For Each" technique to do that The alternative is an ugly hardcoding of the button names, in the above example, and changing their text one by one ... not what I want. Cheers all. N. Farr Don't catch the exception for something like this (if you know it's going to cause an error, resolve the problem in code: throwing an error is 'expensive'):         For Each ctl As Control In Me .Controls       ...Show All

  • SQL Server Web Synchronization wizard

    Thanks Mahesh, the above su ggestion did work. However, I have a new problem with SQL Server mobile subscription. I use SQL server 2000 and SQL server management studio from SQL 2005. After the Synchronization start, I have following error “The constraint cannot be removed because it is referenced by another constraint. [ Constraint name = specCategories ] HRESULT 0x80040E90 (25077) The SQL statement failed to execute. [ SQL statement = drop table "specCategories" ] HRESULT 0x80040E90 (28560) “ But there is no constraint for specCategories, it only has foreign key in table "Specs" Please help, I appreciate it. Eddie Are you replicating only sp ...Show All

  • Visual C++ unresolved external symbol because of a further function

    Unfortunately I have one more problem, I have now the following: the header file: [code] #include <iostream> namespace main_savitch_2C { class statistician { public: void next(double r); private: bool operator ==(const statistician& s1, const statistician& s2) { return true; } [/code] and my testfile: [code] #include <iostream> // Provides cout, cin #include "stats.h" using namespace main_savitch_2C; using namespace std; int main(int argc, char* argv[]) { statistician s1, s2, s3; if (s1 == s2) cout << "s1 and s2 are equal." << endl; else cout << "s1 and s2 are not equal." << endl; } I know that the operator== function is not ...Show All

  • SharePoint Products and Technologies re u familiar with RenderPattern for custom field type definition

    I created a custom field type that inherits from SPFieldMultiLineText. I can display and update the values without problem. But in the display list items allitems view It displays with those crazy characters like this: <I> <DIV class=ExternalClass50EF9330DBF94CC78D7EC5B2F947897C> <DIV><A href=" google &nbsp'> http://www.google.com/">google</A>&nbsp ; sxs</DIV></DIV></I> Do u know how I can modify my render pattern in order to get rid of those characters and leave only the link google  without the extra tags. Here is my render pattern: <RenderPattern Name="DisplayPattern">       <Switch>       & ...Show All

  • SharePoint Products and Technologies Upgrading WSS to version 3.0

    Good day everyone, Currently I have WSS V2.0 (unserviced pack) + WSP 2003 (unserviced pack) + MS Project Server 2003 (unserviced pack) on a single server. I'm considering upgrading WSS to ver. 3.0. I know that I'm few service packs behind in all thsese applications. Any suggestions/advices on where I should start and on which order Thanks in advance. Mohamed Mohamed, Cant give you a great answer on the Project server bit as its been a few years since i dealt with that but for the other two.... Get the OS Updated first then proceed with the WSS SP. Once you complete that you should be in a decent place to start your upgrade to WSS 3.0. I hate to guess with ...Show All

  • SQL Server Rebuilding System Databases on a cluster

    I am having trouble rebuilding the SQL 2005 system databases on my cluster. The Cluster hardware failed completely and I am recovering from scratch (but only 1 node at this time) The Win2K3 OS is recovered and communicating with the domain. Cluster services have started and the quorum is online. The clustered SQL instance is offline because there is no master.mdf present. I run the setup command as per BOL: start /wait setup.exe /qn VS=<VSName> INSTANCENAME=<InstanceName> REINSTALL=SQL_Engine REBUILDDATABASE=1 ADMINPASSWORD=<StrongPassword> SAPWD=<NewStrongPassword> SQLACCOUNT=<domain\user> SQLPASSWORD=<DomainUserPassword> AGTACCOUNT=<domain\user> AGTPASSWO ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Making XNA sing in 2D

    I'm new to managed code as far as using it for anything but tools and other applications where speed doesn't matter. I'm playing with XNA and looking to have some fun in 2D. I know this is the beta and all but the performance of using spriteBatch to draw sprites is really lacking. 5000 unlit, perfectly opaque square sprites using the same texture shouldn't run at 5 fps. 1000 sprites runs at just under 30fps, that's without any other game logic going on. Woof. I am looking to squeeze performance out of 2d mode, however I'm thinking that perhaps the best thing to do is just render in 3d mode and use large triangle lists to draw my sprites. Would that be the best course of action, or are there yet lots of tricks to rendering in ...Show All

  • Visual Studio i lost setup.exe file of en_vs_2005_pro_dvd plz help

    does anyone have en_vs_2005_pro_dvd setup.exe file plz upload it VS2005 90 day trial: http://www.microsoft.com/downloads/details.aspx FamilyId=B2C27A7F-D875-47D5-B226-E2578A116E12&displaylang=en ...Show All

©2008 Software Development Network