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

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

ngaisteve1

Member List

csalsa
Socrates Kapetaneas
MiXen
John Lieurance
Bryant Likes
RichLeyshon
Romantic_touch
kymaita
Saiboro
sapaplanus
Zulusu
Jonesj3599
Lars E.Nes
Price Brattin
Raghuraman_ace
CharlieDigital
Tonito01
shahidferoz
DazlerD
Peter Peter
Only Title

ngaisteve1's Q&A profile

  • Visual C++ MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup

    Hi Justin! i am completely new to this and have to learn the language fairly rapidly, got myself a decent book, but when i try and compile a simple hello world program i get the error:      Linking...    MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup    Debug\dont know.exe : fatal error LNK1120: 1 unresolved externals    Build log was saved at "file://c:\Documents and Settings\Justin Pyfrom\My Documents\Visual Studio 2005\Projects\dont know\dont know\Debug\BuildLog.htm" dont know - 2 error(s), 0 warning(s) the hello world code is in a .cpp file format and t ...Show All

  • Visual FoxPro Foxpro memo field in ado (or ado.net)

    I see that this question in various forms has been asked and answered here before, but none of them address my needs...:-( What I need to do is a simple vb6 or vb.net (or even c#) oleDB read from the foxpro database where the table contains memo fields. I get data in the field, but its garbage. I suppose I need to get the field contents in another way but have no idea how to.. I have the latest foxpro drives sfrom MS Any help out there example code VB6 sConnString = "Driver={Microsoft Visual FoxPro Driver};SourceType=DBC;" & sSourceDB & ";Exclusive=No;NULL=NO;Collate=Machine;BACKGROUNDFETCH=NO;DELETED=NO;" Set oConn = New Connection oConn.CommandTimeout = 300 oConn.ConnectionTimeout = 5 o ...Show All

  • SQL Server I want to build a Directory... How what approach should I take

    I would like to build a business directory like yellow pages but a whole lot smaller for my home town. How should a approach this Thanks much! Yes I'm sorry, I will be buildiing a site based on xhtml, css, asn some asp.net for the dynamic functions but as for the database, what approach should I take in starting to build the database, would it be possible to build a database with limit knowledge of building one Thanks! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Console.Write on 360

    Simply silly question... anyway of getting the output of Console.Write to somewhere nice (like the Output pane of VS) on the 360 Yeah I'm just porting code that already exists and works on PC... I just wonder why Console.Write doesn't do Trace.Write at the end... I just hate API calls the go nowhere... Had a similar issue with printf on Windows apps why go nowhere either remove the API or make it do something... Not a biggy, just wondered if there was a way ...Show All

  • Windows Forms List of database-records in form application

    Hi! How can I dynamicly generate a list of datasets of a sql-database in a form-application in c# Datagridview It's important, that a cell of each dataset should generate a button with an link in this list. thanks matti Hi, The problem is to display the database-rows in the form application, not to get them out of the database. Each dataset in the form application should include: - a text-cell - a cell with a hyperlink or better a button (starting the link) - a cell with a checkbox thanks, matti ...Show All

  • .NET Development Allocating buffers using callbacks

    Hi, How can I allocate buffers using callbacks in pinvoke to allocate memory as needed. Can someone provide an example for this. Thanks! OK then I guess you'll want to use one of the Marshal.Alloc methods to allocate the memory. You may have to store the pointers to the memory blocks you allocate somewhere so you can read the contents after the API returns and finally free the memory. ...Show All

  • Visual Studio 2008 (Pre-release) How to disable Undo/Redo tracking in a FlowDocument?

    I have a FlowDocument which I'm displaying in a FlowDocumentReader . I'm dynamically altering the content of the document by adding and removing Sections. When I remove Sections I get a StackOverFlowException (caused by a huge number of recursive MarkupWriter.RecordNamespaces calls). It would appear this is caused by the document trying to record the deleted sections using  XamlWriter . It digs through the removed section, into a BlockUIContainer , into my view model in the datacontext etc etc before blowing up. I'm still stuck on RC1 for the time being, so maybe this has been addressed. But in the mean time, I'd like to just disable Undo/Redo tracking for the FlowDocument , I don't need it, even if it was working it would just ...Show All

  • Windows Live Developer Forums More points in routeItinerary?

    Hello people, i ' d really appreciate if someone can help me with this one. I need to get more intermmediate points in a routeItinerary object after querying directions with getRoute() method. Sometimes, when there is a long way on the same route, one step could be several hundreds long. I need to get steps like 25 miles long. Is there any possibility to do this with this control, or work around, or even if not, do you know of some other way to do it Any other service Thanks very much Dario Thank you Derek, but my first option is to try all possibilities over free solutions. Any other suggestions ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Tutorials Thread

    If it's not too much trouble, could this topic be stickied I am just wondering if we could have a main thread that carries links to all the tutorials. In other words, someone makes a thread with a new tutorial, and then, they post the link to it here with a description of the tutorial. That way, others don't have to search through a whole forum for just one topic. Just an idea to make it easier on everyone.   On a side note, I plan on linking this thread to another thread titled: First XNA Program Development Team (FXPDT). Take a look at it. Thanks for your time. Also, I've added some tutorials for you all for now.   P.S. Since the tutorials are publicly viewed and linked to, I don't think you need permission to ...Show All

  • .NET Development Creating a object without type information

    Hi all, Is there any way i could create an object in a server application and send it to the client which doesnt have type information Thanks, Suresh. You shouldn't bind to remote objects, only to local ones. Of course the data source object could come from a remote service, but that's another story (see the "Data Transfer Object" pattern). ...Show All

  • Visual Studio Express Editions Multiple transparent colours?

    I'm wondering is it possible to have more then 1 color set as transparent on a form stallion_alpha, I think it is possible to have more than 1 color set as transparent on a form. There is Form.TransparencyKey Property in Windows Form, I suggest you to have a look at the instruction on the property and try to change the Opacity value in your test form. Just have a try. :-) ...Show All

  • Windows Forms OnRenderToolStripBackground - ToolStrip Issue

    Hi, I am using the following code to display the Gradient effect on ToolStrip by overriding the Function and using the Renderer property of the ToolStrip.When i do this the seperator controls on the toolstrip are not displayed.Does anyone know why And is there a better way to do this than using the GradientBrush protected override void OnRenderToolStripBackground( ToolStripRenderEventArgs e) { Brush backgroundBrush = null ; base .OnRenderToolStripBackground(e); if (backgroundBrush == null ) { Color clrStart = Color .FromArgb(237, 239, 215); Color clrEnd = Color .FromArgb(183, 190, 103); backgroundBrush = new LinearGradientBrush ( e.ToolStrip.ClientRectangle, clrStart, ...Show All

  • Architecture When should I create another instance?

    If I have a loop and I have to use another object each time I iterate. Should I instantiate this object for each step, or should I instantiate it outside the loop By doing it outside the loop I might have some problems concerning getting "ghost" information from the previous iteration. But, by doing it inside the loop (for each step) I would slow down the whole algorithm, besides consuming more memory... Any opinion on this CanUHelpMe wrote: Hi, I didn't got the answer yet. if i am using c# 2.0, should we instantiate the variable inside or outside the loop. my major concerns are performance(highest priority) and less memory usage(middle priority) regards' Without the knowledge of what the ...Show All

  • SQL Server ODBC Access Driver error in Vista

    I am migrating my development environment from XP Pro to Vista, and my website is now serving up the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] Disk or network error. The code in question is as follows: set dbConn = Server.CreateObject("ADODB.Connection") szPath=Server.MapPath("../../../") szProvider="Driver=Microsoft Access Driver (*.mdb); DBQ=" & szPath szProvider=szProvider & "\database\" & szDir & "\" & szDB & ".mdb;" if bDebug then fpDebug.WriteLine("szProvider: " & szProvider) dbConn.Open szProvider The error happens on the last line where I ...Show All

  • Visual Studio Adding Solution items

    Does anyone know an easy way to add solution items e.g. readme.txt, log4net config files to a solution using gat. I dont think the normal vstemplate method supports this. I also need to process the files to replace parameters in these files Yes, unfortunately there is a bug in VS causing the "auto-open" of added files which is really a pain if you're adding multiple items at the same time. Although I seem to recall that my team used an alternative way that didn't opened the files, I'll check this tomorrow and give you an update if there may be a way to avoid this. ...Show All

©2008 Software Development Network