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

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

waywar405368

Member List

FannwongCindy
Tijnars
Pavel Nechai
MaqboolHussain
Alessandro Camargo
GraemeP
JS TCS
rxg
Solk
satya999
varunsagii
Wasting Body
jschroeder
Furqan Farooqui
DzheiZee
xanadont
kidwidahair
Indigo Cowboy
mario.muja
sjstreeting
Only Title

waywar405368's Q&A profile

  • .NET Development Warning: There are updated custom wrappers available for the following referenved components: Office.

      Hello everyone, I converted a vb.net 2002 project to vb.net 2005 and I continue to get the warning message: There are updated custom wrappers available for the following referenced components: Office . If I dbl-click on the message I get: One or more custom wrappers for COM components have been installed on your machine after you added references to those COM components.  These wrappers may provide additional capabilities not offered by the auto-generated wrappers currently in use. Do you want to replace the auto-generated wrappers with the custom wrappers   If I click YES then I get 102 ERRORS++. If I click NO then the project runs just fine but the warning shows in the IDE. Without turning ...Show All

  • Windows Search Technologies What to do with a ISearchQueryHelper?

    I've got a ISearchQueryHelper. All looks good, but what does one do with it I can't find a .execute() method kicking around How does one run a query Have a look at this thread and let me know if it helps: https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=640921&SiteID=1 Cheers. ...Show All

  • SQL Server Merge Replication with SQL Mobile 2005

    We are using SQL 2005 (SP1) and mobile agents with SQL Mobile. We are seeing an excessive number of updates after a device's database is reinitialized. My understanding was that if I generate a new snapshot or reinitialize all subscriptions (from the server), the devices would only get what the database looks like right now (inserts only) after syncing and/or reinitializing, but they are actually getting the right number of inserts and a huge number of updates in Replication Monitor. Any ideas Thanks! Mike Update: Found a weird thing with the updates: On our test server, the number of updates, after generating a snapshot and reinitializing the mobile db, exactly matches the number of inserts. On ...Show All

  • Visual Studio Team System New Project Creation Problems

    I have a couple of problems that I suspect may be related. When I attempt to create a new top level Team Project on my local development machine’s Team Explorer, the project creation fails as the “Groups and permissions created…” message briefly appears on the wizard. After the problem occurs, I see the following error message in the New Team Project wizard (I included an excerpt from the log file further below): Error TF30170: The plugin Microsoft.ProjectCreationWizard.Groups failed during task GroupCreation1 from group Groups. Explanation Plugin error text: “TF50608: Unable to retrieve information for security object $PROJECT:vstfs:///Classification/TeamProject/5150e28f-d381-4c04-891d-f36b8de47c8b, it does not exist. ...Show All

  • .NET Development Make mutiple threads, for loop?

    With an inputbox on a form the user is able set the number of threads to use. for 1 thread I've got this: Dim et1 As System.Threading.Thread = New Thread(AddressOf ThreadFunc) Dim t1 As Thread = New Thread(New ThreadStart(AddressOf ThreadFunc)) t1.Start() t1.Join() But if a user wants 20 threads how should i do this for loop I hope this is for academic purposes because you would never want to do this in a real application. If you were to start 20 threads you would spend more time doing context switches then performing any real work. In this type of situation you would create several threads (based on the # of processors) and then queue work requests (20 in this case) to the threads. Nevertheless ...Show All

  • Smart Device Development PostKeybdMessage

    can any one tell me how the PostKeybdMessage function works. i want to post the enter key on the current window/form. could anyone please help and provide some sample code to help thank you in advance Take a look at this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=624210&SiteID=1 ...Show All

  • Software Development for Windows Vista Invalid schema node '<xs:element>'

    Page 293 of the book "All-In-One MCAD/MCSD Visual Basic .NET Certification" gives the following example for an XML schema: < xml versionfiltered="1.0" encoding="utf- 8" > <xs:schema id="Sample" targetNamespace= " http://tempuri. org/Sample. xsd " elementFormDefault= "qualified" xmlns=" http://tempuri. org/Sample. xsd " xmlns:mstns= " http://tempuri. org/Sample. xsd " xmlns:xs=" http://www.w3. org/2001/ XMLSchema "> <xs:element name="book"> <xs:complexType> <xs:element name="title" type="xs:string" /> <xs:element name="author" type="xs:string" /> <xs:attrib ...Show All

  • .NET Development populate access database from a TableCollection

    Hi, I need to ask about how can I populate an access database tables directly with the tables in a TableCollection that already exist in my application. Thanks for any help, Aya. Thanks for reply. It is the collection of tables contained in the DataSet. Can I binding the access database tables , that have the same structure, directly without getting the data raw by row Thanks. Aya. ...Show All

  • Smart Device Development [C#] Read the phonenumber

    Hello, I'm french, sorry for my english. I try to read the phonenumber in my SimCard, Can you help me Thanks Well I don't know the answer myself but a quick search of msdn library... http://search.msdn.microsoft.com/search/default.aspx siteId=0&tab=0&query=sim+card+phone+number ...turns up this site that has your answers... http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/netcfphoneapi.asp -Noah Falk .Net Compact Framework ...Show All

  • SQL Server Any other way but Cursors or While loop

    Hi all, I have a bit of a challenging on my hands with this, i have a result set in a table which i am trying to iterate through the rows one by one i.e Values Values Dates 1.10 1.20 1.30 1.40 2006-03-31 00:00:00.000 2006-06-30 00:00:00.000 2006-09-30 00:00:00.000 2006-12-31 00:00:00.000 go to each row get the value and the date perform some calculation with the value and the date and insert it into another table(which sounds easy enough) my problem is how do i iterate through the result set one by one without using a cursor or a while loop do i have any other options at all Sorry that I rushed this, Shadow. I ne ...Show All

  • .NET Development .NET 2.0 Real Time Requirements

    Hi. Probably .NET 2.0 and realt time requirements shouldnt be on the same sentence. I'm trying to control a machine that set's me some real time requirements, the machine fires events,  inside those events I have to do some processing. On one of them I have less than 200ms to performs the work that I need. 200ms is already very thight I cant waste more than 180ms. Per minute I have fired at least 120 of these events I have to handle all of them and can't stay on them for longer than 180 ms. My question is, is the .NET Framework suited to this kind of work Another thing that I must say to help on the discussion, if I waste more than 180ms the machine stops, and that can't happen I really have to meet the time!!! Even if ...Show All

  • Visual C# DLL Returns object {string[]}

    Greetings, Calling a DLL method that returns an array of strings, but I can't cast to string[]; object o = myMethod(); string[] s = (string[])o;    //generates "Unable to cast object of type 'System.String[\*]' to type 'System.String[]'. (I had to put the \* in, without the \, it treats it as a different [\*] as a different char) The Autos window shows the data properly; [1] "String1" [2] "String2" Thanks, that was in the first post, though. The call returns an array of string pointers "string[\*]" as seen in the Autos Window in VS2005 (the \ keeps HTML from reinterpreting the asterisk). But the compiler doesn't let you cast the "object" return value to that. ...Show All

  • Visual FoxPro Error when opening Foxpro build-in database application: Open File - Security Warning

    Hi I upgrade the latest version of Internet Explorer. I received the error (as mentioned in header) when opening the database system. In the box, The publisher could not be verified. Are you sure you want to run this software Name: job000.exe Publisher: Unknown Publisher Type: Application From: \\Server\documents\Jobsys How to verify the publisher Thanks / millbear. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=971214&SiteID=1 ...Show All

  • Visual Studio 2008 (Pre-release) How to disable Undo/Redo tracking in a FlowDocument?

    I have a FlowDocument which I'm displaying in a FlowDocumentReader . I'm dynamically altering the content of the document by adding and removing Sections. When I remove Sections I get a StackOverFlowException (caused by a huge number of recursive MarkupWriter.RecordNamespaces calls). It would appear this is caused by the document trying to record the deleted sections using  XamlWriter . It digs through the removed section, into a BlockUIContainer , into my view model in the datacontext etc etc before blowing up. I'm still stuck on RC1 for the time being, so maybe this has been addressed. But in the mean time, I'd like to just disable Undo/Redo tracking for the FlowDocument , I don't need it, even if it was working it would just ...Show All

  • Visual Studio Tools for Office How to create new mail account in Outlook2003

    Hi, I need to setup a new Outlook mail account programmatically and add new folders to that account. I am able to add new folder dynamically but, not able to set up a new mail account dynamically. Can you suggest any way to setup new mail Account I am using VSTO and VisualStudio.NET 2005 Any help appriciated... Thanks in Advance Rama Hi Rama - If you want to create a new outlook mail profile to connect to an existing account in Exchange server, for example, you will need to use MAPI or some tools built using MAPI ( http://support.microsoft.com/kb/306962 ) If you are talking about creating new mail account on Exchange server, you can use ADSI (Active Directory Service Interface API) together wit ...Show All

©2008 Software Development Network