Software Development Network Logo
  • VS Express Editions
  • Visual C++
  • Visual Studio
  • VS Team System
  • SQL Server
  • Windows Vista
  • Windows Forms
  • Visual Basic
  • Game Technologies
  • Visual FoxPro
  • Architecture
  • Visual C#
  • Visual J#
  • Microsoft ISV
  • .NET Development

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

OmniLogix

Member List

Phillip Putzback
Mohanad Ahmed
umberto21
SecurityAdmin
hullracing
Dr. NO
Amitkumar
LanceDelano
HyperC
Greg Czechowicz
tgif_sf
Cloakas
vnapoli
RunRockRide
NoelAnthony
SQL DBA
calvinkwoo
Brian Clark BCBSMT
gabix
zomg123
Only Title

OmniLogix's Q&A profile

  • Visual C++ What control can I use to let specify directory path???

    Hi, I am now writing MFC program in VS .Net 2003. I like to have include a control by that user can specify any folder(directory) where a collection of their files are stored. Any idea what control will work for me Thanks, vcboy Thank you for your answer, but I tried with the following codes: char LocBuffer [MAX_PATH]; BROWSEINFO browseFolder; browseFolder.hwndOwner=theApp.m_pMainWnd->m_hWnd; browseFolder.pidlRoot=NULL; browseFolder.pszDisplayName=LocBuffer; browseFolder.lpszTitle="Browse for Help folder..."; browseFolder.ulFlags=0; browseFo ...Show All

  • Architecture XMI to Model

    Hi, If we have an XMI file generated by a tool (used ArgoUML), is there a way to construct the model back from the XMI file (i.e. visually). Is there any tool or plugin which does that Thank you. It would be great if you could be more specific about which models are you working with, and where you want to construct the modul back. Dependening on your specific details, there may be ways of using DSLs to do that. If you can provide more details, I'll try to come up with a more specific answer... Deal :-) Mauro ...Show All

  • Microsoft ISV Community Center Forums Avalon Adaptation

    Scenario Lets say that Avalon is released for XP (and in Longhorn) on time, Holiday season 2006, and that it is accepted as “wonderful” like we all know it will be. Question: How rapidly will it make its way onto the corporate desktop What percentage of corporate desktop machine will have Avalon install one year later, two years Are there any moderately reliable figure that we can use in our sales projections Anything will be helpful Thank you Mike Greenway Thanks Vikram. I think WinFX/Longhorn is going to put .NET on-the-map in a real way. Right or wrong..... I'm going for it. Mike Greenway ...Show All

  • Visual C++ OPOS DRIVER

    Hi, did somebody already programmed a opos driver   I am in a project for building a opos  driver and I don’t know for where to start.  If somebody has some code that can help me, I would been thankful! Thanks! my e-mail is honae1@yahoo.com.br Honae This forum is specific for VC2005 issues, I believe you can find better answers at the Win32 development newsgroups at http://msdn.microsoft.com/newsgroups/topic.aspx url=/MSDN-FILES/028/201/015/topic.xml Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Software Development for Windows Vista WF version packaged with WinFX Beta 2

    I saw that WinFX Beta 2 was released today. From the online documents that are available, it wasn't clear which version of WF is included with the WinFX runtime. Does it contain WF Beta 2.2 If so, is it the same WF Beta 2.2 that has been available as a standalone download Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 Workflow Foundation Beta 2.2 is the version contained within WinFX Beta 2 released today. This is the same version of WF that was available in a standalone form. ...Show All

  • .NET Development application idle state handling

    hi, I'm writing an application that display in .net MDI (c++) style 3d models (from my own file format), with some animation in it, so I need to handle my application idle state. I can write idle event handler, but it's not exactly what I need, because it only execute once when application turns to idle state. I need some function that is executing all the time when idle state is active, or I need to know when application is going to exit idle state, in this case I could make some loop and check when I need to break this loop and end execution of idle state handler. or maybe there is some other solution thanks for reply. Hello szary, ...Show All

  • SQL Server Javascript Error When trying url access

    Hi, i have a problem with the rs 2005, using url access to call a report: --------------------------- Error --------------------------- Error: 'RSClientController' is undefined Calling a report from the reportmanager works. The rs2005 runs on a machine with a parallel installed rs2000. I configured the virtual directory to machinename/reports2005 & machinename/reportserver2005. When i debug the clientscript i see that he requests a "/ReportServer2005/Reserved.ReportViewerWebControl.axd OpType=Resource&Version=9.00.1399.00&Name=Scripts.ReportViewer.js" and it seems that he doesn't get the jscript file. ...Show All

  • Visual Studio Team System Issue for printing out work item

    Hi: I tried to print out the work item as the record to be kept in folder.  I found that I could not see the detailed information in History category.  Under History, it always printed time, Edited by or Created by, but no detailed information. I did print out a detail in history.  This happened in MSF for CMMI Task WIT.  After expanding in History textarea under Summary tab, right-click to print, I saw the detailed information but without other information like ID, Title, etc. I think exporting to Excel or Project might solve such issue, but I still want to print them out directly from Visua ...Show All

  • Visual C++ How do use conventional C++ Code with Visual C++

    Goodday I cannot seem to create any programs with Visual C++ I am not getting anywhere the only program that works is Hello World: #include <iostream> using namespace std; int main() { cout<< "Hello World\n"; return 0; } Not even the test win32 application want to run and i did everything like you explained Please Help Peder Really Because for other hundreds of thousand of programmers it works. So, can you explained what you tried to do and what exactly doesn't work ...Show All

  • Visual Studio Team System Code analysis vs FxCop

    I'm current trying out a conversion of an FxCop project to Team System to bring over existing exclusions. However, I've noticed that Team System Code Analysis seems a poorer relation, have I missed something No spell checking - FxCop uses a dictionary (plus custom dictionary) to check the names of methods, classes, etc. Code Analysis doesn't seem to do that Help - FxCop not only complained when something was wrong but provided a great deal of help/hints to resolve the probelm. Code Analysis just seems to present the problem with no sign of a hint. Seems like a backward step, what have I missed For more information ...Show All

  • .NET Development strongly typed dataset

    Hi, The following line populates a datagrid using a strongly typed dataset. dsEmps is the .xsd file in the foreach line I would like to loop through each record I get an error on the foreach line and it says: specified cast is not valid I think this line has to be somehow casted employeeDetailsData.Employees.Rows EmpBusRule.EmpService.dsEmps employeeDetailsData; EmpBusRule.Employees br = new EmpBusRule.Employees(); employeeDetailsData = br.GetDataEmployee(); if (employeeDetailsData.Employees.Rows.Count < 1) { throw new Exception("No record found."); } grdEmps.DataSource = employeeDetailsData.Employees; forea ...Show All

  • Visual J# J# URL setup

    Hi  everyone, Got a problem here I am tearing my hair out over. Am creating a J# windows app in which I am trying to declare a URL. My declaration goes as follows. import java.net.* URL url = new URL ("http://localhost:8080/soap/servlet/rpcrouter/"); When I try to build the solution I get the MalformedURLException. The declaration came from a console application which worked perfectly so I know that it cant be the declaration. Any help is greatly appreciated. Mike Hi Mike, The source code you have mentioned is just asking you to catch the MalformedURLException. You can get this compiling by just putting a try catch blo ...Show All

  • Smart Device Development RenderFile() error on smartphone

    Hi, On smartphone my application call RenderFile(_T("MyMusic.mp3"), NULL), but it return 0x80040218. The smartphone support .mp3 file. Why don't the Filter graph connect relevant filters any ideals appreciated! Likely because your smartphone lacks necessary directshow filters. Most WM5 devices do (don't ask me why). The Media Player 10 does not use directshow internally, so it works ...Show All

  • Visual Basic lost on final steps of project.

    I am trying to learn Visual Basic on my own and would like to create small one window programs that can be run independently on any windows machine. I created a simple math program that runs fine in visual basic 2005 express beta 2. I want to build it as a simple application I can load on another machine by way of a floppy disk but I can't get it to work. I'm  missing something basic but I don't know what it is. I followed the steps in chapter 8 of the book "Visual studio 2005 deployment project types" and I can't get the program to load on another machine (windows2000). Can someone give me a good resource for walking through the proced ...Show All

  • Windows Forms App activation issue: won't show as foreground or as activated

    I have a MDI application, but that isn't important, and why I posted it here instead of the MDI forum. I have class "App Loader" that contains Main.  It loads a splash screen that shows up before the main window, and it runs on a background thread.  It shows up while the app is loading. Once the app has loaded all the required  ...Show All

©2008 Software Development Network