Whoisit's Q&A profile
Software Development for Windows Vista Downloading RC 4 or RC 5
Hi Guys I am relatively new to WWF, so apollogies if this question has been asked. Need to download the WWF, My box currenlty has VS.NET 2.0 and SQL server 2005 on it. The box has a project on it that i am currently working on. I wanted to ask in order to get started what version of WWF should I download. is it RC 4 or RC 5 , also on the download page in the microsoft I also came across that .NET framework 3.0 would be required. I definitely dont want to have problems with my Current 2.0 project as this has been running for a while, after i download RC4 or RC5. would appreciate your advise. Thanks Sweety. If it was me, and I had a project that mattered on the machine, I would not ...Show All
Visual C++ linkage error when using _DEBUG with multi-threaded dll (as runtime libraries)
Hi, We work on a project and would like to be able to use some dll's in release and some in debug. There for and since we use stl we wanted to change our runtime libraries (for the debug build) to use the "multi-threaded dll" and not the "multi-threaded debug dll". doing so created a link error: error LNK2001: unresolved external symbol __imp___CrtDbgReportW as I understand things this shouldn't have happend (I guess it's new to VC++ 2005 due to the runtime checks of iterators). I have found 3 ways to solve it but none is what I would like to use. 1. removing the _DEBUG from the preprocessor definitions. 2. undef the _SECURE_SCL before every include to stl. 3. define _imp___CrtDbgReportW as our own function. here is an ...Show All
Visual FoxPro SELECT .... INTO TABLE <existing table>
G_TempDBF = "C:\scratch\" + SUBSTR(SYS(2015), 3) + ".DBF" SELECT field1, field2 FROM myTable INTO TABLE (G_TempDBF) USE (G_TempDBF) ALIAS CUSTOMER INDEX ON field1 TAG field1 I have created a temporary table, stores the retrieved records into it and alias it CUSTOMER How can i reuse this temporary table for other SELECT statements SELECT field3, field4 FROM myTable INTO CURSOR CUSTOMER ---> results in an error saying Alias CUSTOMER has been used. Hi Cetin Interesting little demonstration and I agree with your conclusion that it does look very much like the first creeation of a cursor is limited to the VFP session. Actually that would seem reaonable, ...Show All
SQL Server Error on Date Data During Insert
Hi Folx, I am new to SQL Server and I am struggling with source data for a table with two db_datetime columns. The data can be inserted using native SQL, but errors when I build a Data Flow Container. Versions: Microsoft SQL Server Integration Services Designer Version 9.00.1399.00 Microsoft SQL Server Management Studio 9.00.1399.00 Error: [Flat File Source [1]] Error: The "output column "extraction_date" (24)" failed because error code 0xC0209084 occurred, and the error row disposition on "output column "extraction_date" (24)" specifies failure on error. An error occurred on the specified object of the specified component. Source Row: 101|100|2006/12/19 23:50:01.00|2006/12/19 23:50:01.00||| ...Show All
Smart Device Development Bolding treeview nodes create problems..!
hi I am using vb.net 2002 actualy i want to bold some nodes depends on some condtions. i used this code for bolding nodes N.NodeFont = New Font(Me.Font, FontStyle.Bold) its working fine.. problem is ,suppose node text was "Microsoft Book" after bolding that node, it may loose some charactor .for eg. it will become " Microsoft Bo" its depends on its length.depends upon its length we may lose more charactors. how can i overcome this thanks in advance you may want to change the font size but even then it may still lose some characters, depending on the length of the string and perhaps if it goes over your screen size width. ...Show All
SharePoint Products and Technologies Restoral is so close yet so far
So here's the scoop: the server was lost but the config and content databases are available from backup. Server is 2003, Sql 2005, and WSS 2. When I rebuild the server and use the restored content database I can't access any of the content (tasks, lists, documentlibraries, etc.) I do not have the inetpub folders in backup, only the database. In SQL Manager I attached to the config and content databases just fine; no errors. I reinstalled WSS 2 and pointed to the original config database. After a few errors (app pool security stuff) it seems to be OK; setup finished and took me to the central admin webpage. Here's where it gets weird. When I setup a new site (e.g., http://mainsite/subsite ) I extend the server and point to the co ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Running XBox360 games made with XNA GSE without XBox Live subscription
Will it be possible to run games we make using XNA Game Studio Express on our own XBox360 without signing up for the XBox Live $99 yearly subscription Granted the "getting a Dev kit" part is where most of the trouble is. You have to be a recognized 360 developer and not just an indie or enthusiast. You probably have to jump through the normal publishing hoops ...Show All
.NET Development Need help with Properties.Settings.Default.. should I be using this or something else?
I've figured out how to set application settings in my project, and load and save them (Properties.Settings.Default.mySettingName = 1235; Properties.Settings.Default.Save()). The thing is, my app needs to have the ability for a user to create profiles. They can name the profile whatever they want.. so I tried to figure out a way to create a new application setting at run-time, not design-time. I couldn't find a way though. So maybe I'm better off just creating an XML file to store all this profile information the user creates And just loading that at run-time ...Show All
Visual Studio Team System is FxCop1.35 works for .Net 3.0 applications????
Hi I am not able to analyze .net 3.0 projects using FxCop 1.35, endedup with errors like Analysis Errors: Missing references for PresentationFramework Missing references for WindowsBase Missing references for PresentationCore I appreciate if anyone can help me to get rid of this, Thanks in advance Lisa Go to you C:\WINDOWS\Microsoft.NET directory and search for PresentationCore.dll. FxCop isn't resolving the new frameworks DLLs automatically for you. From within the UI, you can simply point FxCop to the proper location a single time, then save your project. FxCop will remember the reference directory location for subsequent runs. From the command-line, use the /d: switch to specify th ...Show All
Visual Basic VB.NET FTP
Hi!!! I have a program that i do in VB6 where i have to send files to an FTP server, and Receive other from there.... - It Works Fine... When in ReWrite the program in VB.NET i use the same COM component, its the Microsoft Internet Transfer Protocol (Inet)... It Works Fine too... Now In VB.Net 2005 i cant use... gives me an error: Error 1 Overload resolution failed because no accessible 'Execute' accepts this number of arguments. D:\Teste .Net\Vendors\fUpdate.vb 239 13 Vendors anyone knows whats happen ! or another solution ! Renee is correct int hat there are methods in the framework that implement netowkr functionality and these are probably a good bet to look at for .net development. That said for ...Show All
Visual C# Where did the Properties.Resources go?
Hi i have developed at UML modeling program i my sparetime. I'm curently moving all shapes to individual .dlls. (i.e. StateDiagram.dll, ClassDiagram.dll etc.) I want to store several icons in my .dll file. So i have added the resource.resx file to my Properties folder and added the icons. No prop. Now i want to access the resources. Normally i just go Properties.Resources.ResourceName, but the Properties namespace isent there. Any idea of what im missing here Thanks in advance Esben Rasmussen, student at Engineerig College of Aarhus, Denmark Actually not. I want to access the resources form my dll project. (the rescources.resx is in the same project) Reason: In my komponentclass i have at function that ret ...Show All
.NET Development XML extraction form
Hi ...I have used XPath to extract data relevant to a particular country,from my XML file..see below.. .c50HZ4 {color:#008080;} .c4ZSSG {color:#800080;} //country[@name = 'Albania' ] <country id="cid-cia-Albania" continent="Europe" name="Albania" datacode="AL" total_area="28750" population="3249136" population_growth="1.34" infant_mortality="49.2" gdp_agri="55" inflation="16" gdp_total="4100" indep_date="28 11 1912" government="emerging democracy" capital="Tirane"> <ethnicgroups name="Greeks">3</ethnicgroups> <ethnicgroups name="Alba ...Show All
Visual Studio 2008 (Pre-release) Error running Client and Service programs
Hi, I have been trying to run the client and service programs on two different machines which have different IP addresses. I was to run them on the same machine without any errors. But different machines i got this error Unhandled Exception: System.ServiceModel.FaultException: The request for security token could not be satisfied because authentication failed. Here r the config files of my Client and Service Service < xml version="1.0" encoding="utf-8" > <configuration> <system.serviceModel> <services> <service name="ProgrammingIndigo.ParcelService" behaviorConfiguration="ParcelServiceBehavior"> <endpoint addr ...Show All
Windows Forms hightlight item Listbox
How can i in code highlight a item in a listBox ...Show All
.NET Development Invoke Events with the webbrowser Control
Not sure if this is the proper forum, but it looked like the closest. I want to automate filling out a form on a web site (which I can do with the webbrowser control), what I cannot figure out is a way to submit the form (either by form.submit or the click event of the submit button). Am I missing something really obvious here, or does someone have a workable solution for this w/o using the webbrowser control Thanks Jeff I have tried the above code and all it does is take me back to a logon form The User name is in tack but the password is blanked. It is not like an invalid password or username. I have tried that and when the page is displayed with and invalid entry then an indication of a ...Show All
