delma's Q&A profile
Smart Device Development Live Video Processing on Windows Mobile 5.0
I'm currently doing image processing on a smart phone's captured images via the CameraCaptureDialog. I was wondering if doing live video processing would require lot of code. You can set the capture dialog mode to Video or VideoWithAudio but you only get the whole video after it's been recorded... You don't get frame by frame, images comming in (what I would like to have). Any way it's doable Thanks. mgaur_MSFT wrote: I think this is going way beyond WM programmability. I'm going to mark this post as answered and good luck in your search. Manav he should be able to do facial recognition, I've heard of others doing so on wm5.0. not sure the capacity exists in managed code though, it may need to be a C++ dep ...Show All
Microsoft ISV Community Center Forums Applying InsertBreak to a style?
Hi, Using Word 2003 and not fluent in writing macros. I'm trying to write/string together a macro that would insert a page break in front of a style called H1 if H1 is on an even page. I've tried dozens of different pieces of code and can't get it to work. What I've tried is to find all occurences of H1 and when found, applied this: Selection.InsertBreak Type:=wdSectionBreakOddPage Unfortunately I'm not skilled enough to do this fully, and haven't been able to find any example macros that would do even something a little bit similar, so that I could modify that to my needs. Any suggestions/help you can provide will be much appreciated!!! Thanks, Laura Laura - this should do what you w ...Show All
Visual Studio Team System Solution Load Indefinite Delay
I have been using a solution that is bound to the VSS having about 15 projects. It was loading in 20 seconds before but now it keeps loading and never finishes. Is there anyway i can know from some log or something what is holding up the solution load I am using Smart Client Software Factory in my solution and it takes like 3-4 hours to open a solution. The solution is also bound to the VSS. I cant figure out what is making it take so long to load. :( Thanks for ur time ...Show All
Visual Basic Problems with WebBrowser objects...
Hi there! Could someone please explain why the following three functions return the same value WebBrowser_instance.Document.Body.GetAttribute( "scrollHeight" ) WebBrowser_instance.Document.Body.GetAttribute( "clientHeight" ) WebBrowser_instance.Document.Body.GetAttribute( "offsetHeight" ) I really need the object to return the right scrollHeight values. Regards, O I guess that's why people hate webpages that have frames in them No need to send me beer, because I think my postman drinks all my beer-mails (they never get through to me, anyway) ...Show All
Windows Forms HELP - Ultragrid ComboBox columns
Hi, Can anyone tell me how solve this problem.. i have an Ultragrid bound to a dataset, which returns some columns with ids. i need to make these cloumns dropdown. the id columns are taged with another table and column ( which will replace the ids). i need to replace the ids with the ids name column to have readable data. I also need this to be filled with all customer names, if a new row is added we want to be able to select from a list of existing customers. table 1. -------customerid --------- 1234 table 2 customerid | customername 1234 john smith table 1 -----customerid----- john smith Thanks. ...Show All
SQL Server Avoid blank spaces in Grouping subreports
hi In Main Report i got Several subreports.when i kept the subreport in grouping.blankspaces coming in between .i tried rectangle and adjusted page height and width nothing turned out.Pls help me. Developer ...Show All
SQL Server sql express bootstrapping question...
I need to install my own instance of Sql Express, so I copied the bootstrapper for sql express. In package.xml I found this line < BypassIf Property = " VersionNT " Compare = " VersionGreaterThanOrEqualTo " Value = " 5.1 " /> Should this be there Why would we bypass sql installation if VersionNT is >= 5.1 My installation of sql express failed because of this. Thanks a lot I installing sqlexpress with the instance name sqlexpresscm. I have made some changes to package.xml to change the instance name to sqlexpresscm, but when I reinstall my application it doesn't find sqlexpress, because it look for the default instance name "sqlexpress" instead of "sqlexpres ...Show All
SQL Server No Item showed
Hi gurus I have sql server 2000 that was working fine until today(figures), today I opened EM and under sql server group where used to be all my information now there is NO ITEM, nothing shows(database,Nothing) The server is working as I had no complaints from my user on data not been saved or getting data from but its strange that I can not see all my info like I used to.- If I go into sql query analizer, it ask me to connect to local which I do and I can see all my databases from there but once I close that window ,on my EM nothing shows. I checked all services andevery one of them seems to be up and runnig Thanks forall the help I can get Hello, Sounds like you just need to re-register ...Show All
Visual C++ Combo Box Question
hi I'm making my first 'simple' application to get me started. its the basic windows Form with just a combo box containg just 3 options ' a or b or c ' ok it works fine but how can i make it remember my last selection i mean when i run the application again it shows nothing and you have to select the option all over again. Good move. However, you'll run into trouble after you have VS2005 convert the project because you'll now mix old and new managed C++ syntax. You'd better redo your project from scratch... ...Show All
SQL Server Why is data mining use too little in business?
Hello everybody, There have been a lot of promising words around about data mining for (at least) the last decade. If one investigates how much data mining is applied in business, it can be concluded that this is rather limited. Currently I am investigating the possible causes of this limited data mining usage for my Master Thesis of Industrial Engineering and Management. This investigation includes a literature study and input a couple of experts from the data mining field. Currently I want to check my results for two aspect with aid of other data mining practitioners: Is my analysis of possible causes complete (iow: what is missing ) Are the identified causes recognized confirme ...Show All
SQL Server Create Database with Visual Basic (Urgent)
can i run such a transact SQL script with VB use master go create database Ayhandeneme on (Name=AyhanDeneme_Dat, FileName='c:ayhandeneme.mdf') go Ayhan Yerli wrote: can i run such a transact SQL script with VB use master go create database Ayhandeneme on (Name=AyhanDeneme_Dat, FileName='c:ayhandeneme.mdf') go Wait...you can't USE a db to CREATE a db What are you trying to do Adamus ...Show All
Visual C++ MBCS, Ascii, Unicode
I have three options in Visual Studio for "character set." They are "not set," "MBCS," and "UNICODE." From those options, I evidently could not enforce a strict Ascii build even if I wanted to (I notice the _MBCS switch is set on the compiler options, even if I select "not set"). Furthermore, since "UNICODE" refers to the UCS2 form of UTF-16, I'm left wondering three things: 1) Is the "MBCS" setting UTF8 Or is it UTF-16 (non-UCS2) 2) All the windows and kernel routines that end with "A" or "W" now are confusing me. I thought the "A" meant Ascii (even though I now know I can't enforce Ascii with VC++ in any setting). So I guess the trai ...Show All
Visual Basic cut and paste a control
when i cut and paste a button in vb.net the name of the button changes and i need to write the code for it again If you cut a control and paste onto another form and the control already exists it will rename the control. If the control name doesnt exist on the form then it should stay the same. Demonstration Example Create a form with 4 buttons called Button1 - 4 and a second form with Button2 on it. If you cut / paste buttons1,3 or 4 from the first form to the second then they will retain there names. If you try cut/paste Button2 onto the second form then as the button already exists when the pate action occurs it will rename the button to whatever the next free number is for the control default name. So it would a ...Show All
Visual C++ How to check the user defined lib of a vc project?
I am upgrading a project from vc6 to vc2005, I use the Dependency Walker to check the dependent dll and lib, also I checked the additional dependency in the linker tab of project property. But I find that some libs which are in the latter part are not in the former part (Dependency Walker)'s list. why does this happen I appreciate your help. The libraries missing in Dependency Walker are static libraries which don't require Dll. All their code is linked inside of client executable. ...Show All
Visual Basic .net dll used in vb
many times i used vb dll in .net but i can not used .net dll in vb, one of my collige used .net dll in vb so he face many problem like whenever we give dot it show all properties but in vb it can not show even when i write manually it works, so i can not understand how to used the .net dll in vb application This section of the documentation is a good place to start learning about this. http://msdn2.microsoft.com/en-us/library/zsfww439.aspx The fact that you don't see any members in Intellisense could be because of inproper use of the ClassInterface attribute. http://www.dotnetinterop.com/faq/ q=ClassInterface There are plenty of other articles and books out there. Here are links to some of them http://www.dotnetinterop. ...Show All
