yjm's Q&A profile
Smart Device Development about a schedule like app
hi all,i want write a schedule like app for sp2003 se, when the scheduled time reached ,the app will notify the user by sound now my question is should i only use a timer or need to write a backgroud service Hi Windows CE already provides a set of API for this purpose. Have a look at the following APIs: CeRunAppAtTime ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/wceui40/html/cerefcerunappattime.asp ) or CeSetUserNotificationEx ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/wceui40/html/cerefCeSetUserNotificationEx.asp ) This forum thread might be of interest to: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=346577&SiteId=1 ...Show All
SQL Server How to check whether SSIS is installed
I'm using the import wizard to create a new table from a flat file source. The table gets created but no data gets copied. What's wrong Here's the report: Operation stopped... - Initializing Data Flow Task (Success) - Initializing Connections (Success) - Setting SQL Command (Success) - Setting Source Connection (Success) - Setting Destination Connection (Success) - Validating (Error) Messages * Error 0xc00470fe: Data Flow Task: The product level is insufficient for component "Source - inSsrc_txt" (1). (SQL Server Import and Export Wizard)   ...Show All
Visual Studio Team System MS Project 2003 Dates not retrieved from TFS
When retrieving work items using MS Project, dates are not retrieved correctly. The dates can be viewed using Excel or Team Explorer. Any ideas Hello Alyaru, Start Date and Finish Date cannot be changed outside MS Project and MS Excel. In VS these fields are read-only. You say: "I went back and Changed dates in VSTS" Which client did you use to make the changes Thanks, Smitha ...Show All
Visual Studio Team System Visual Studio Team System Multiple check out of files
As we know VSTS allows multiple check out of files. How does it handle multiple check out of files. How does it merge the changes made from multiple locations. VSTS uses diff & merge tools to do the merge. When a file is checked out, TFS notes the base version from which it gets checked out. After edits in that file now we'll have a local version. If server version gets updated by someone else's checkin, we have a server version from base version, and TFS does a 3-way merge when you checkin. See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=96947&SiteID=1 for pointer to diffmerge tool and how merges are done. ...Show All
Visual Basic Import txt file to DGV export DGV to dB
Not sure if this is possible or not but, I have a comma delimited text file that I am succesfully reading into a datgridview. I am trying to take the data imported that is in the datagridview and put it in an access db, and an excel file based on the results returned from a combo box (ie. combobox selection is xml, xls, or mdb, etc...) What I have done so far is set up an acess file, the datatable, and the tableadapter for it. I also creadted another datatable that is bound to the datagridview column names. I then linked the two datatable column names together. It didn't work. Is there another wat to do this Any help is better than where I am now. I appreciate all your input. Thanks! :) Here is part of my code... Dim fileEx ...Show All
.NET Development Folder Copying
Hi, i have a requirement where i have to transfer files between two pcs and also update the transfered files in both pcs whenever they are updated in any of the pcs. Am able to transfer the files. but now i have to monitor the files for any updates(i.e.renamed,changed).There is a component Filesystemwatcher in .net to monitor changes occured to files in a directory(It monitors all files in a particular directory).But i want to monitor a particular file in a directory. Is there any other method other than filesystemwatcher to accomplish this task If there is no alternative then how to accomplish Folder copying instead of file transfering Try to send the file in Try/ca ...Show All
Visual Basic Vb.net calling VB6 Application
HI, I have a VB.net (2005) Application which is converted from Vb6 Application. The Vb6 Application is calling another Vb6 Application on button click and performing some action, once the second application closes, the control is back to first Vb6 application. Can I use / call Vb6 application from Vb.net application let say user information change screens I have in Vb6, and i want to call it from Vb.net.. Is it possible if so, once the Vb6 application closes, how to tell vb.net application that external application is closed Thanks Dim P As New Process P . StartInfo . FileName = "PathAndNameofVB6App" P . WaitForExit () P . Start () ...Show All
Smart Device Development how to load dll file in smartphone?
Hi all, I'm using C# to write the windows mobile 2003 application and deployed on the smartphone. I used the method [DllImport ("vam.dll")] public extern void detect(string xmlFile, string imgName); to import the dll into the application "Debug" folder. i call the dll funcion using detect("xmlFile", myImage); My application is to detect the region on the image file automatically on the desktop and it runs successfully on the desktop version. Now, i have to migrate my existing automatic detecion of region on desktop to the smartphone. I using the same method mentioned above, there is no compile error found. But, when i run on the smartphone, I get the error while running. The error is "NotSuppo ...Show All
Software Development for Windows Vista How to record from 'Wave' or 'Stereo Mix' in Vista?
Hi all, I wrote the following question in other forum space but some MSFT guy told me to try this forum for my question. I hope I could get right answer as soon as possible here. On Windows XP or earlier, I could capture the audio stream to the speacker not from the external device (maybe endpoint device in Vista) like the microphone. In other words, D irectSoundCapture was able to capture from the selected recording device/source line in the Windows record control utility or mixerXXX APIs. And if "Wave Out Mix" or "Stereo Mix" or something similar was selected as recording source line, D irectSoundCapture was able to record the audio stream to the speacker. However, I could not find the way to do tha ...Show All
Visual Studio Express Editions Putting as default browser
I have been making a internet browser in visual studio and I would like to know how to make my browser be set up so I can put it as my default browser and the same for my friends when they use it. Another thing I would like to know is how can I make my internet browser open up a new window. I have the menu set up but I need to know the code, so when you click on new window a new window will open. I'm still confused and I've had a lot experience with the web browser. By "new window" do you want it on the same form replacing the old one or a new copy of your webbrowser process running separately ...Show All
SQL Server Use an ActiveX module from a view/stored procedure?
I was wondering if it is possible to use an ActiveX module from a stored procedure or view I have a table that contains some biochemistry, in particular, glucose and insulin as floating-point values. I have an ActiveX module (as a DLL) that takes these two values and returns some measures of insulin resistance. (I didn't write the module - it is available (without source code) from a university). The university provided a spreadsheet that does what I want to do. I am wondering if I can use the ActiveX module and the function in the spreadsheet in a view in my database instead. Here's how you'd convert glucose and insulin in the spreadsheet: =HOMA2_Insulin(A1,B1) And here's the source code of the function th ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Moving the view in 2D games
Hello, I'm not sure if this will make sense but hopefully it will. Essentially I working on a 2D platformer as a way to develop a small 2D engine I'm working on that will hopefully help me when creating games in the future with XNA. The game is much like Mario, and like in Mario I need the view to follow the main character while moving non-player characters/enemies off the screen. I was wondering if anyone has developed a view-handling class or other code that would allow for a view to follow my main character on the X axis atleast while moving other objects off the screen while still allowing them to move relative their location. So while my character is running to the right of the screen, all objects are being pushed to the left until ...Show All
Visual C++ smartbridge Alert
How do I remove the smartbridge alert I have read many post, but still having trouble understanding what is the SBC Self Help tool. How do I retrieve the tool. Rather, where should I look to find it. Payday There's a very long thread on the topic. I would read up on that and if that doesn't help, then please clarify what's different in your case. Thanks, Brian ...Show All
Visual Studio Private fields, properties, and methods
Is there a way to display private fields, properties, and methods Thanks. If this is in reference to Sandcastle, you can specify the /internal+ command line option for MRefBuilder to have it generate information on the private members too. Eric ...Show All
Visual Basic can Serial device data be transmit to web_page.aspx directly?
Hi there, Please help me. I have a serial WiFi device connected to a barcode scanner. Is it possible to create a "web_page.aspx" which can "talk" to the serial device to transmit the captured data to the "web_page.aspx" It's something like this... Barcode scanner (connected to serial WiFi device) --> [Transmit data via WiFi] --> "web_page.aspx" Previously i've used HyperTerminal (HT) to try out the connection. HT uses TCP/IP to connect to the serial device and the transmittion of data is possible. If it is possilbe to replace HyperTerminal with web_page.aspx, how can i do it Becuase of the isolation in which IIS runs, it would be tricky (i ...Show All
