markovuksanovic's Q&A profile
SQL Server & character in Select statment
Hi Folks If I wrote this in QA what does it mean Declare @X INT Set @X = 2 Select (@X & 8) What & do in this select statment Thank you Hi, & is a bitwise operator it perform a bit operation on the operands. bit value of 2 is 01 & for 8 it is 1000 and after bitwise calculation it comes out as 0 ...Show All
Visual Basic Creating a view meter.
Hi, can someone tell me a tutorial to make a VU meter for Audio to monitor audio input devices volume level such as microphone and etc you also can provide link to the articles. thanks for helping me. Well, vb6 had the vertical progress bar. I'm not sure if you converted it to a .net it would remain that way. In either case, a really quick way of setting up a vu meter was to make a vertical progress bar, with values min-0 max-100, and set the .value property to the vu 'level'. ...Show All
Windows Search Technologies #msntb_toolbar_full_name#
I have the following sign come up on the screen. #msntb_toolbar_full_name# is unable to load config file. If you recently upgraded to a newer version of #msntb_toolbar_full_name # and have not restarted your computer since the upgrade,please try resarting your computer.If the problem persist,please reinstall the #msntb_toolbar_full_name#. I'm currently running WXP Home Edition,IE7. W Defender.This problem only occured after I completed system restore two days ago. Thanks to any person who can help. CEEBEE Hi Kat, Good questions. Basically I work for a software company and frequent a few sites related to this product as I use it on a daily basis. I've done Technical Support for Many ye ...Show All
Visual Studio Unable to build HtmlHelp2x files
Using the sandcastle help file builder UI to create help files I get the following error: Error HXC4001: File file://.../Help2x.hxc, Line 2, Char 77: XML syntax error: No data is available for the requested resource. Error processing resource 'MS-Help://Hx/Resources/HelpCollection.dtd'. Fatal Error HXC2056: Parse of the .HxC file failed. BUILD FAILED: Unexpected error in last build step. See output above for details. Does anyone know what would cause this error Kevin, Are you able to build them directly using Sandcastle without the Sandcastle Help File Builder GUI Is this issue limited to a project or is it happening in all your HxS builds Anand.. ...Show All
Visual C++ impossible mistake
I wrote a program with Visual C++ to find certain numbers in the Fibonacci sequence, any number you want to find. However, if you input any number over 46, it begins adding positive numbers and getting negative numbers. Someone please help, I cant't find anything wrong. Here is the code: #include <iostream> using namespace std; int main() { int T,A,B,C; A=0; B=1; cin>>T; cin.ignore(); T--; for (T=T; T>0; T=T-3) { C=A+B; A=B+C; B=C+A; cout<< "C=" <<C<< "\n" << "A=" <<A<< "\n" << "B=" <<B<< "\n" ; //this code outputs the variables throughout the program for ...Show All
Windows Forms Export table data in Access Database
Hi, I need to export a table data in Access Database into a text file using C# interface by a press of a button. I need advise on which method is required to use for this Tks. Did you read my last post CommonGenius.com wrote: Server and Request are properties of the ASP.NET page class. If you are creating a Windows Forms application you will not have access to them. Is this a windows or web application ...Show All
Visual Studio Team System Context menu for work item returns "Index was outside the bounds" error
Hi, In one of my team project, the "Add Work Item" menu item is giving me an error; it expands to " Error loading menu: Index was outside the bounds of the array " instead to a list of work item types. Anybody have any idea what might be causing this error Or where to get more information on this error Here are some additional information that might be useful: It is only happening in this one team project. Other team project are working properly This team project had been deleted and "recreated" (i.e. create with same project name). The original team project was using the MSF Agile template and the new one uses the MSF CMMI template. Nobody else in this team project is having this problem ...Show All
Visual C++ Trying to use function pointers in a class
Hi all, i'm having a bit of a problem understanding Function pointers, but i think i might be able to put them to a good use here. I have a class ( CCanCCM3 ) that stores data internally. It gets that data from other classes ( CCanRcvMessage ) that get their unpackmessage called by an external manager, upon data ariving on the bus it is listening to. What happens now, is that for each message that can come in, they inherited it and only changed the message for which to listen on the bus, and the function that should get called when that message is received on the bus. I would like to create a derived class that gets that message ID passed to it in the constructor, and also a function pointer to the function it needs to call. Could ...Show All
.NET Development ICorProfilerCallback::Shutdown not called
Hi all, I run NCover to get coverage results from my .Net assemblies. In some circumstances I get no coverage information. After some investigations I found that NCover uses the profiler callback and the shutdown callback is not called in this case. Which circumstances may lead the CLR not to fire the shutdown callback I read the profiler.doc, but the few hints are not true in this case. Unfortunatelly my test envrionment is too complex, thus I'm not able to figure out the root cause. Having some hints I possibly can figure out what may lead to this problem and how it may be handled. Ciao Thomas Hi, Thomas! Shutdown of an app is extremely tricky and has lots of cases. ...Show All
Visual C# Run exe from command prompt
Can i create a console application to run a exe in the ms-dos prompt, on a timer application Has anyone every done this before If so can someone shoot me a link thanks Is there anyway i can write the results to the console Let me be a little clearer Is there a way i can check to see its running or did run like when i do it manually it shows Microsoft (R) Windows Script Host Version 5.6 Copyright (C) Microsoft Corporation 1996-2001. All rights reserved. anyway i can get that to print to the console ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Draw 1 Line?
How can I draw a single line in XNA LineList dosent seem to work with a single line. Here is a simple class that should draw a single line(rest of the code missing). It gives unexpected results. If I increase the number of primatives in the DrawPrimatives call it draws more lines, even though I sent the buffer only 2 vertices. It must be using old data from the buffer. Can you just draw a single line Thanks public class Line : IGeometry { public VertexPositionColor [] vertices; private VertexBuffer vertexBuffer; public Line( VertexPositionColor vertex1, VertexPositionColor vertex2) { vertices = new VertexPositionColor [2]; this .vertices[0] = vertex1; this .vertices[1] = vertex2; } ...Show All
Visual Studio Express Editions incremental linking is impossible, help please
hi, I have been struggling with this problem for over 2 weeks, and i was told in one of the forums to try here. so here is my problem: I installed visual c++ 2005 express edition, and it works fine except the fact that it seems it has not incremental linking, it seems that for some reasons, it can't access the .obj files and update them (when I check their modification date, it shows the one from the last REbuild). I even disabled Norton antivirus and Zonealarm, thinking that they might have something to do. I have no clue what to do, and the size of my project makes impossible for me to live with this problem anymore. I can't wait for the whole source to REbulild after each modification !!! please, do you have any suggestions. Clic ...Show All
Visual Studio Express Editions LINK : fatal error LNK1181
Hi, I am having build problems migrating from VC++ 6.0 to VC++ 2005 Express. I followed the necessary steps to install SDK and got the following error. What is this t/.obj I have no idea what that is Any help would be appreciated. Thanks. ------ Build started: Project: vefw_lib, Configuration: Debug Win32 ------ Compiling... Command line warning D4002 : ignoring unknown option '/errorReport:prompt' Command line warning D4024 : unrecognized source file type ' t/', object file assumed LINK : fatal error LNK1181: cannot open input file " t/.obj" Build log was saved at "file://c:\x265\X265\sw\sw_common\firmware\vefw_lib\Debug\BuildLog.htm" vefw_lib - 1 error(s), 0 warning(s ...Show All
SQL Server Rows in Pages
Hi everyone, I have a simple question about Rows in Pages for you. In my opinion, rows are the storage of the data in databases. I would like to ask that there are any important properties of Rows which I am not aware. Thanks Hmm, joeydj , I have some doubts about your MS tutorial. First y, I did not know that there is a specific type for texts and images. I supposed that texts and images are required more than one pages generally since their size generally involves this. So would you please explain this to me Thanks ...Show All
.NET Development client server communication exchanging of wide char over TCP sockets??????
hi , i have written a client server pgm . the functionlity of which is to download a file from another client via server. here im passing the file path of remote machine (the file name is in Chinese Char eg : C:\\使能 折.txt, this path i need to send it via socket send. how can i do it. i tried may ways :- --> converting the char to wide char using wcstombs etc etc but of no use. how can i do it it is very urgent .. Pls help me waiting .. Sandeep pls give me the code for the same. here is mine :- Client :- CString csPath=_T("C: \\ Downloads \\ 精 象 \\ 精 象件 .txt"); -- --how to convert to UTF8= -- int iSend=send(clisock,buffer,sizeof(buffer),0); Server:- int iRecvd=recv(msg ...Show All
