Rhodan's Q&A profile
Visual Basic Identify a person with his picture
Hi, If I have a picture with a person in it how can I separate the person face from the picture I want to develop an application that can identify a person with his picture. What I’m thinking to accomplish this is doing some steps: 1. Separate only the person’s face from the picture and draw it in points and lines. This will help find a match that is similar with points and lines. The pictures that are with the person’s data have to be treated the same way. 2. If the person in the picture is facing some side (left, right, down or up) the face has to be draw straight. If there is some other way of doing this or if is already a sample code that does this, please tell me. ...Show All
.NET Development database to b converted.
m havng an access file which i want it to b converted to MySQL ..anything can help me thx in advance .. ya frnd..there is an straight way to do so.. visit the site .. http://www.bullzip.com/products/a2m/info.php ...Show All
SQL Server How to connect SQL Server Mangement Console to Adventure Works
This may not be correct request but I have SQL Server Management Studio Express. How do I connect the Adventure Work Database to the console How do you use Access to connect to the SQL Server Express Thanks for your help. Follow the instructions available here to install the AdventureWorks database: http://msdn2.microsoft.com/library/ms310325.aspx Thanks< MJ ...Show All
Game Technologies: DirectX, XNA, XACT, etc. .X features supported in XNA?
Hi, I'm currently working on a .x exporter for XSI with shader support. However I have some questions regarding exactly what features are supported in XNA. Setting the technique in the .x file does not seem to work: EffectParamDWord { "technique"; 3; } XNA always renders using the first technique in the shader, unless you manually set it with Effect.CurrentTechnique :( Also what part and version of DXSAS is supported It would be nice if semantics used in e.g. FxComposer just worked with XNA, e.g things like: float4x4 WorldIT : WorldInverseTranspose; float4x4 WorldViewProj : WorldViewProjection; float4x4 World : World ; float4x4 ViewI : ViewInverse ; Or do you have to manually parse all effect param ...Show All
Visual Studio Tools for Office Microsoft Access and Databases
Im trying to create a shift Schedule that seperates officers into there working shifts by criteria of Seniorty and Rank. There are 5 shifts... Days:(6am-2pm, 7am-3pm), Afternoons(2-10,4-12), Mids:(11-7) Officer places a bid of the 5 shifts they wish to work to the least wanted.... Example: Ofc. Example Choice#1 2-10, Choice#2, 7-3, Choice#3 4-12 .... and so on Senoirty is based off of Date of Hire, and if Officers have the same Date of hire, then the officers are ranked... 1, 2, 3 *Not all Officers are ranked* Im trying to make a database where you place officers name, Date of Hire, Rank (if applicable) and then choices compile up the date and place into the 5 shifts and have about roughly 30 Officers for each s ...Show All
.NET Development Launching url by means of Start method
Hi everyone, Running Framework 2.0. I can't work out with this snippet of code. Ultimately it says me: "system could not find the specified file" Dim sURLS As String = String .Empty Dim sRead As New StreamReader(System.Environment.CurrentDirectory & "\" & "URL.txt" ) Dim devolucion As Process = Nothing Dim miProceso As New Process Do While Not sRead.EndOfStream sURLS = sRead.ReadLine miProceso.StartInfo.FileName = "iexplore " & sURLS miProceso.Start() Loop According BOL when you set a value in filename property is the same when you d ...Show All
Microsoft ISV Community Center Forums bracketing "ifs" and "ands" and "ors" in VBA over Excel
How would I write this in VBA if (code1 = 13 and answer1 = 15) or (code1 = 14 and answer1 = 16) then do ...... it seems not to like brackets and if answer1 has several possbilities if (((code1 = 13 and answer1 = 15) or answer1 = 20) or answer1 = 24) .... where do the brackets go Thanks again, Hamish Nice. Thanks. What about displaying messages on screen that relate to a value netered by the user. Needs to hold 100 words or more in the message. Dialogues but how Thanks agina. H. ...Show All
Visual C++ How do you make a single file compile without making a whole project in vc++ 2005?
Now this is totally absurd. I am learning C++ as a beginning programmer and bought vc++ 2005 and installed it but its so freaky complicated further more inroder to make simple programs such as heelo world, adding 2 integers, etc you have to make them into projects for them to compile when i used a new file option there wasnt any option for building or compiling. Everytime i have to solve an exercise from my book i have to make a new whole seperate project with there headerfiles,source files etc how can you make a only single .cpp file and get it to compile in vc++ 2005 There is an option inside the project properties under the c\c++ folder called "enable minimal rebuild". This should only r ...Show All
SQL Server Small values on charts y axis
Hi! I have a chart that sometimes might show small values (less than one). When this happens, my y-axis label only shows 0, and doesn't show the decimal value. If the values are greater than one everything works fine. How can I "split" the y-axis in small values Thank you! ...Show All
Windows Forms Invisible Column
Hi all, I want to prepare 2 columns in my DGV: 1 column for displaying "text" and another one displaying "value". E.g. ColA ColB First Name firstname In the backend, I'll loop through all DGV row and I want to obtain the "value" from ColB for further processing (ColA containing space and for display only). I set the ColB.Width = 0 and DataGridViewAutoSizeColumnMode.None, but the column still visible. If I set the ColB.Visible = false then I can't loop through that column value programmatically (e.g. at the CellFormatting Event). Any solution to this situation Thanks, Any Microsoftee or expert know where I can ask this question to Can I bubble this question up to the ...Show All
Visual C# Navigation Bar not showing Types, Navigation Bar is enabled
Hello, My navigation bar is not showing available types for C# files. I do have Navigation Bar checked for C#, and still nothing. Any clues Hello All. JoeProgrammer: Alright, this an ASP.NET Web app Well, then I'm afraid the short answer is : Yep, you're right. ASP.NET has its own forums, here . See this thread on those forums for more info. From what I gather, it is simply a question of different language implementation teams at MS. HTH. ...Show All
SQL Server AS2005 MDX-Question (Grouping while ignoring intermediate level)
Hi, I'm quite new to MDX and try to solve the following problem: given is a dimension having the following hierarchy: Business Unit A Sales Area 1 Customer X Customer Y Customer Z Sales Area 2 Customer V Customer W Customer X Business Unit B Sales Area 3 ... ... Now I need the sum of each business units' revenues grouped by customers. In the above example the result should look like: Business Unit A Customer V Customer W Customer X (sum of Sales Area 1 and Sales Area 2) Customer Y Customer Z Sales Area 2 Business Unit B Customer ... ... Is this possible with MDX Thanx for any help and kind regards, Gerald Gerald, Can you explain the meaning of revenue(X1) and revenue(X2) in relatio ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Missing effect.Name and effect.Tag
Hello I’m getting stucked in designing a ResourcenManager for XNA GS. Some basic thoughts : - For bigger scenes it is not wise to load just models and manage them, because they hold Effects and Textures. It would be a better idea to manage Effects and Textures separately, so that you can share them between ModelMeshes. In some cases it would be even better to share ModelMeshes too. - To export a model, for example from a model tool to a x-file, you have to handle the material convertion problem (since the time of shaders). Maybe your model tool supports fx shader, but these are mostly not compatible with those in Game ...Show All
Visual Studio 2008 (Pre-release) Mouse Position During Drag-And-Drop
What is the recommended way of getting the mouse cursor position during a drag-and-drop operation Using Mouse.GetPosition() or DragEventArgs.GetPosition() always returns some incorrect value. I just noticed that Dan Crevier circumvented this issue by Pinvoking into userland ( http://blogs.msdn.com/llobo/archive/2006/09/06/Scrolling-Scrollviewer-on-Mouse-Drag-at-the-boundaries.aspx ) but I would prefer to avoid that. Is there a reason why the WPF APIs for retrieving the mouse position do not work properly during drag-and-drop operations Mouse.GetPostion(element) gets the mouse Coordinates *relative* to an element. Most people assume mouse coordinates are absolute and write buggy mouse logic. For instance code that drags an el ...Show All
Visual Studio Upgrading to v10
Hi How would one go about upgrading to version 10 for crystal reports for Visual Studio.NET Thank you Depends what version of .NET you are using. Visual Studios 2002 & 2003 (professional or above) come with Crystal 9.1 - you can upgrade to Crystal 10, XI or XI release 2 Visual Studios 2005 (professional or above) comes with Crystal 10.2 - you can upgrade to Crystal XI release 2 You can buy online from: http://store.businessobjects.com , or visit http://businessobjects.com for more details. ...Show All
