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

Software Development Network >> Mitch Wardrop's Q&A profile

Mitch Wardrop

Member List

lwsimpson
FarReachJason
vasudupe
lnkaye
gumtoo
Vaft
oolon
mrobold
Nishith Shah
kyus94
Linda Shao
Andrew Kinloch
ŁukaszS
F.Ahlman
AnilK110285
Michael Herman - Parallelspace
Denisd
Richard Karner
MSNetDeveloper
pdDallas
Only Title

Mitch Wardrop's Q&A profile

  • Windows Forms Control to display images

    I am helping to develop an application which is essentially a chat area. For the most part, everything works well however I seem to be running into some limitations in the controls available. Or maybe more likely I am just not used to everything I can use... so many changes in the dot net side. Anyway :) If I use a VB form with a WebBrowser control for the interface to display received messages, I can easily scan the incoming text for various key words (i.e. :roflmao:) and then change them to a location where various images (jpg, gif, whatever) are located and display the image rather than the text. Reformat the layout to html specs and display that in the control. This works well, except that the WebBrowser control does not seem to sup ...Show All

  • SQL Server Create Procedu SQL Server 2005

    Hi everyone, I'm creating a online e-letter registration system. That saves 'temp' values to a 'temp' table, and then sends a automated email to the subscriber, from which he/she can then except, or decline the registration. bu now i want to create a procedure, or some kind of funciton in T-SQL that will be scheduled to run every 2 or so hours, to check and see if there is any values in the temp table that is older than 24hours, and if that values is greater than 24hours, it must delete that values from the temp table... so that the temp table doesn't become too full of old, outdated data. Please help. Thanks Then go straight ahead by creating a job, defining a schedule and inserting one step f ...Show All

  • Smart Device Development System.Thread.Timer help

    Hi, I was hoping some could help with a threading issue that uses a timer. I would like to have a piece of code execute every 10, 15 or 30 minutes. (users choice). So, as users are using the application every ten minutes I need to do write something to the database. Sorry I am so unfamiliar with the System.Thread.Timer object I do not even no wherre to begin. Any help would be greatly appreciated. A logical first step would be to get familiar with it, e.g. by reading MSDN article. I would assume you can't find it because your namespaces are wrong, so here it is: http://msdn2.microsoft.com/en-us/library/system.threading.timer.aspx Also please read this, item #7 and #17and ask specific question ...Show All

  • .NET Development TimeStamp Dataset DAAB

    Hi, What dbtype would I use for the addinparameter method of DAAB , when mapping to a timestamp column of a dataset I have tried DbType.Byte , but this will not compile Do I need to cast the value returned by the dataset Do I need to perform a cast at the database before returning the timestamp column , Please help! u You can use int64. For example Int64 rowVersion; rowVersion = Convert .ToInt64(p11.Value); here p11 is the parameter mapped to the parameter of stored procedure which returns the Timestamp. I didn't do any CAST on the stored procedure side. If you are doing the CAST on stored procedure then the returned parameter can directly stored in DbType.Int64 variable. Hope this resol ...Show All

  • Smart Device Development How to use PlaySound API to play sound from a Resource?

    Hi. I'm developing a Smartphone app using VB.Net 2005 and the Compact Framework v2. I want to play a sound that is in a resource of my EXE, using the PlaySound API. Declare Function PlaySound Lib "coredll.dll" ( ByVal pszSound As String , ByVal hMod As IntPtr, ByVal fdwSound As Integer ) As Integer To do so, according to the PlaySound documentation, the second parameter of the API - hMod - needs to be the "Handle to the executable file that contains the resource to be loaded." But I can't find a way to get the handle of my EXE. Any help is appreciated. Tony Unfortunately, there is a problem extracting sound (wav) files from a resource. It has been ...Show All

  • SQL Server SQL Server 2005 SELECT MAX function for multiple columns on the same record

    Hello, I am trying to figure out how to use the select maximum command in SQL Server 2005. I have already created a database and I have it populate it with multiple fields and multiple records. I Would like to create a new column or field which contains the maximum value from four of the fields. I have already created a column and I am trying to figure out how to use a command or SQL statement which is entered into the computed equation or formula in the properties for this field/column. Any help you can provide will be greatly appreciated! Thank you, Nathan You can create a UDF to get horizontal Maximum from your columns. Here is the function and a sample SQL: CREA ...Show All

  • Windows Search Technologies Problem crawling with a hierarchical custom protocol handler

    I have developed a hierarchical custom protocol handler that I'm integrating with Windows Search on Vista. The handler has a IUrlAccessor and IFilter implementation that enumerates the contents of a directory by returning the search URL of each "file" in the directory as a text chunk with the STAT_CHUNK structure specifying the GathererPropset and PID_GTHR_DIRLINK propid. My understanding is that the indexer should take these URLs and queue them for indexing, in which case I should see subsequent calls to CreateAccessor with those URLs. However, instead I'm seeing the indexer call CreateAccessor once to get the directory accessor, then it reads the dirlink text chunks, but it never make the expected additional calls to Create ...Show All

  • Smart Device Development Connecting multiple PDA to a desktop pc

    Hi Can i connect multiple PDA's to my desktop PC , so that the PDA app can cosume the webservice, Currently i am connecting single PDA to the PC using the bluetooth USB adapter Regards Gauls if the bluetooth stack belkin uses allows it to serve as a bluetooth modem, and the PDAs allow null modem connectivity, then yes, I believe you're able to do what you're asking. you'll also need the network card on the PC to be set up for internet connection sharing. ...Show All

  • Visual C++ Timer stops after a while

    I have an MFC application using 5 system timers with the following time-out values: 10 minutes 1 second 0.5 second 0.1 second 0.01 second It seems that all timers stop generating WM_TIMER after the program runs for a few days and everything else of the program works fine. Has anyone ever seen this kind of problem Am I using too many timers draining too much system resorce I have just combined the 0.5 second timer with 0.1 second timer into one to see if this helps. Since this is not a C++ language or compiler question I would suggest you ask this question in one of the MSDN discussion groups. Kernels is probably the best match. http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.publi ...Show All

  • Visual Studio Express Editions Newbe How to questions(loops)

    How do you place five choices from a combo box into a loop. In other words I have five items in a combo box that I want to place in a "for loop". For example, I have items such as choice1, choice2, choice3, choice4 and choice5 inserted into a combo box. Also I would like to know if it is possible to place these choices into a "do while loop". Any help welcome The controls has an items property which is simply a collection.   You can iterate around it using for each construct or determine how many items there are and then use any of the looping constructs. There is nothing special about the items collection in a combobox as against any other collection and iterating through the items. Is there an ...Show All

  • SQL Server import OpenSSL certificate with private key into sql server 2005 express edtion

    hey, i have a problem, to import a self signed openssl certificate into the sql server 2005. my final idea is to get encrypted columns from the database over an jdbc connection in a java client. when i use a certificate generated by the sql server 2005, i can encryt columns of a table. then i catch the the result in my java client. but in java, i need a keystore with the private key of the certificate. ok. i have export the the certificate and the private key of the sql server 2005. problem: in a keystore i can only import the certificate (signed public key) but not the private key. my new idea is to import an openssl certificate or an certificate generated by the keytool (java) into the sql server 2005 and encypt t ...Show All

  • SQL Server Design/load question

    Hi. I am redesigning a database to be more normalized. There are 4 columns that appear in many of the tables that I plan to add to a new table. Here is what the database looks like now: table1 uniquecolumn1 uniquecolumn2 uniquecolumn3 samecolumn1 samecolumn2 samecolumn3 samecolumn4 uniquecolumn4 etc. table2 uniquecolumn1 uniquecolumn2 uniquecolumn3 samecolumn1 samecolumn2 samecolumn3 samecolumn4 uniquecolumn4 etc. table3 uniquecolumn1 uniquecolumn2 uniquecolumn3 samecolumn1 samecolumn2 samecolumn3 samecolumn4 uniquecolumn4 etc. If I add a 4th table with the columns that are the same in each of the tables, I'd have this: table1 uniquecolumn1 uniquecolumn2 uniquecolumn3 uniq ...Show All

  • Windows Networking Development How to mesure bandwidth with QoS ?

    Hi all, sory if I do something wrong, this is my first time here. I want to know, can I measure end-to-end bandwidth between two computers in LAN by using QoS API I dont need high-precision values, I just want to know which path is more efficient for the time being. I know that qWave gives such ability by "QOSQueryFlow" function and "QOS_FLOW_FUNDAMENTALS" structure. But I want implement the measurement on Windows XP. Can I do this using QOS API Thanx. Correct; there is no API exposed via XP which provides bandwidth estimation. This functionality is only available on Vista+. - Gabe [MSFT] ...Show All

  • Visual Studio Team System Limit the allowedvalues list by validuser group

    Hi, Is it possible to limit the allowedvalues list by the validuser rule E.g.: a projectmanager can select other or more values than a developer. Thanks. Hi! I am a little confused about the field "Assinned To" and have a question about it. What I wonder is what is filling the field I thought it was all the users in the domain and that this was due to that the server belongs to this domain, but the list does not contain all users. When trying to restrict the list by for example stating something like: <ALLOWEDVALUES expanditems="true"> <LISTITEM value = "[Project]\Contributors" /> </ALLOWEDVALUES> this does not seem to have desired eff ...Show All

  • .NET Development how to zip an Xml Document

    Dear All, I found a library (name Chilkat ) through which i can easily zip(compress) xml file, but it has only 30 days evolution period, could any one please show me way how to compress xml. thanks Hi, if you are using .Net 2.0 or up then you can use the System.IO.Compression namespace to compress your xml, see: http://msdn2.microsoft.com/en-us/library/system.io.compression(VS.80).aspx Mark. ...Show All

©2008 Software Development Network