GWBasic's Q&A profile
SQL Server Update , insert ,delete option from the database ? Help
Hello, Where can i give on the sql server Management studio that i can insert and update, delete. Thenks for you help I don't know hat you mean but I'm prett sure you're on the wrong forum. Try here: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=84&SiteID=1 -Jamie ...Show All
Visual C++ [], malloc and free
hi! i have a doubt. when i use 'malloc', i need to use 'free' function to dealloc the memory, right ! so... when i declare an array using [], is the 'free' function needed That's correct, but it's not a matter of "declaring an array using []." Here's a summary of the ways you might allocate an array, where the array lives, how long it lives, who can see it, and how you would free it. I don't go into class data members here, ...Show All
Visual C++ Microsoft COM Components on 64 bit ?
I tried to port my application over to 64 bit. I was unable to port the code that used the standard Microsoft Data Grid Control (6.0) or any other microsoft COM component while running on 64 bit. I did not get any compiler errors, just at run time i got the Debug Assert Error... Can we not use any of the MS COM Components for developing apps on 64 bit Thanks Hi Kang, Based on my previous 2 posts, I was wondering if you found any mor ...Show All
Software Development for Windows Vista Printing with a PrivateFontCollection
I'm tring to use a PrivateFontCollection (part1) and then print it (part2). I've created the PFC and can use the font without problems, except when I goto the 'windows printpreview' and pass my printdocument to it. the font shows up as the Default-Font, but when I send the preview to the printer, it prints using the correct font. Would I need to pass the FontFamily to the graphics object so it knows how to use it That would not seem n ...Show All
Visual C++ error lnk2019 when calling a function with wchar_t param
hey guys, my problem is i have a static library (native). and i have a class that takes a wide character ("wchat_t") as a parameter. now when i did my win32 mfc application, i come to use that function inside my class and it results in a link error to that function: error LNK2019: unresolved external symbol "public: void __thiscall NBaseStaticMesh::LoadModel(wchar_t *)" what do u think is the problem ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Reading compressed textures
Hi, I have been working on a small 3d project for myself and i was wondering if anyone can help or point me in the right direction. Im trying to read in dxt compressed textures, i have been reading about the format in msdn and have been looking for some source code or tutorials on how to read these formats in. Im using C# and MDX i have posted the the source code that i have been playing with so far, this is to read a DXT1 compressed im ...Show All
Visual Basic maths function!!!!!!!!
I am new to vb, as you will see below. I am constructing a simple form which requires some basic maths, whem I try to multiply, the compliers states " C:\Documents and Settings\Jones\My Documents\Visual Studio Projects\VB EXAMPLES\stock2\frmorder.vb(168): Operator '*' is not defined for types 'System.Windows.Forms.TextBox' and 'System.Windows.Forms.TextBox'." What do I need to set to get the cmdcalc_click function to work. It will not hand ...Show All
Windows Forms HScrollBar and VScrollBar question
I am using a the HScrollBar and VScrollBar controls in my application to navigate a DataGridView (I was having trouble getting the auto ones to work properly) ... both scrollbars have the same issue, but I'll use the VScrollBar as an example. I have this handler: Private Sub VScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles VScrollBar1.Scroll &n ...Show All
Visual Studio VC 2005 does not copy files when publishing a web site
I have recently converted a .net 1.1 web application to .net 2.0. The conversion went very well. I was very pleased with the wizard. The application runs well from inside the development environment. Problem is when I try and publish the web site... no files ever get copied to the output directory. Any ideas would be appreciated Bill I'm assuming you are using "Publish Web" to publish a web site ...Show All
Visual Studio Team System Error using Code Coverage
When i try to view code coverage after a test run, i get the following error (In a message dialog): --------------------------- Microsoft Visual Studio --------------------------- Code Coverage Analysis engine threw exception(s): Error when creating coverage info: Error loading symbol file. Symbol and binary files should be in the same folder as the coverage file or on the symbol path: C:\PathToMyProject\bin\Debug\AssemblyName.dll. ---- ...Show All
.NET Development How to set the web controls disabled by JavaScript embed in HTML?
I use a panel to contain some buttons,now I want to set all the buttons disabled.How should I do Can you offer some code sample Thank you! Rok Yu. I got it in javascript like control.disabled = true. ...Show All
Visual Studio Tools for Office Adding an outlook toolbar button
Using VSTO 2005 and VB 2005 I want to add a toolbar button (or a custom button with an image icon) to Outlook (Programmatically when outlook starts may be inside ThisApplication_Startup procedure ) and when a user click on that button do some e-mail processing. Any sample code c_shah, Download the Outlook Add-in Samples for Visual Studio 2005 Tools for Office sample package. This sample is the one you ...Show All
Windows Forms Looking for an unhandled exception reporting component/service
I'm looking for a component/service that will log unhandled exceptions to a Web service. While there are numerous frameworks and examples that can log exceptions to a log file, the event log, or send an e-mail, these approaches don't work for&nb ...Show All
.NET Development Run an Access query from C# using ADO.NET
Hi I have Access database queries (in SQL), how to run them from C# using ADO.NET What's the code like thanks yuelin Use inline queries to execute the queries. Try the following link http://www.intellectualbrains.com/DiscView.aspx mid=161&forum_id=4 & ...Show All
Visual Basic Passing Parameters ? and LIKE with Table Adapter
The following examples DO work in Query Builder (dataset designer) but DO NOT work in Preview Data for the tableadapter or at runtime using "FillBy". There seems to be an issue when using , wildcards and LIKE together: SELECT ID, ClientName, AR_ID, ContactList, AssignedSalesRep, LastTicketDate, AddressList, PhoneList, State, City FROM ConXitClients WHERE   ...Show All
