EnginAVCI's Q&A profile
Visual Studio Express Editions Email
Hi, I'm very very new to visual basic express 2005. I would like to use a link that will generate an email to me. Like if someone visits my site, and wants to email me, I would like to include a link that would do this. Frontpage, is easy to do that, but I'm lost in this application. I am also using a starter kit, and it has a contact page, but I cant seem to configure the 'send' button either. Any suggestions would be greatly appr ...Show All
Visual Basic Pls help me. my job is on the air, binary interpretation doubts
Following is the VC++ source code uCrc = (unsigned short) (m_CRCTable[((uCrc >> 8) & 255) ^ (*pData)] ^ (uCrc << 8)); Can some one give me a explanation, if possible how to implemant in vb.net. need help Pls help me. my job is on the air, binary interpretation doubts vc++ Sample data: *pData=27 // CRC-16 checksum unsigned short CRCChecksum (unsigned char *pData, unsigned short uSize) { unsigned short u ...Show All
Windows Forms Custom Control Click Event
I Have created a custom control which has a couple of labels on it and a progress bar. When i use it on a form, i want to assign a click event to it, so that if you click anywhere on the control, its registered as a click on the control. Adding the control.click event to an eventhandler doesnt seem to work. What am i doing wrong What do i need to do to get it to do what i want Cheers Hi I came across thi ...Show All
Windows Forms Deleting row from windows datagrid.
I have added a data grid to windows form. I have added a table style to the grid & assigned a data source to the data grid. Initially there is no data in the data grid. But we can add it using a button provided outside the grid which adds a data row to the data source of grid. The code for adding data row to the grid is as follows: 'Define a new row. Dim dr As DataRow = _dsLeaseDetails.Tables(0).NewRow 'Add new ...Show All
Visual C# Bitwise comparison problem
I want to perform a bitwise comparison in C# .NET and cannot get it to work. This is what I want... int i; i = 2; if(i & 1) { ...do something } if(i & 2) { ...do something } if(i & 4) { ...do something } So, if i is 7, it will do all three actions. Of course, I get an error saying that I cannot convert int to bool. Does anyone have any advice Thanks in advance! Paula ...Show All
Visual Studio Team System WSS issue list and TFS Work Items, any integration?
I suppose there's no way to update the issue list in the WSS site with the work items entered into TFS and vice verse ...Show All
Visual Studio Tools Options Page under Projects node
I have a managed VS2005 package and want to add a tool page to the Options dialog. I want to stick my page under the "Projects and Solutions" category. However, I need to supply a category and category ID with the ProvideOptionPageAttribute for my package. So if I put the following to my package [MSVSIP. ProvideOptionPageAttribute ( typeof ( MyDialogPage ), "Projects" , "MyOptions" , 0, 107, true )] an reg ...Show All
Visual Studio Express Editions how to limite data displayed in a listbox?
I have a listbox "listboxServices" and an ACCESS db table "services", when i set the listboxServices' databinding to the default dataset, the listbox will show all the data in the services table. Instead, I want to list all services that have a null value in "DatejobDone" column in table "services" (i.e. all pending services). please help. btw, I created a new query for table "services" --- ...Show All
Visual Basic System.IO locking my files preventing another Sub to run properly
Once I get to this point and call this function below, I get a lock error on the incoming .mnt and .naf files that it tries to move. here's my entire code: http://www.webfound.net/allcode.txt Here's the Error System Error Information: The process cannot access the file because it is being used by another process.Place: 6 System.IO.IOException: The process cannot access the file because it is being used by another process. at System.IO.__ ...Show All
Software Development for Windows Vista Deploying WWF Beta 2...
Hi, I've got a problem - my workflows work on the development pc but not on the production server. I'm using WWF Beta 2, both machines are in a very similar hardware configuration. The error message that i'm getting is: "Cannot create more than one WorkflowRuntime per AppDomain". The way that i'm creating WorkflowRuntime object is as follows: public WorkflowRuntime WFRuntime { get { if (_runtime == null ...Show All
Visual Studio Express Editions Do I need to Uninstall VS.net 2003?
My PC currently installed VS.net 2003. Do I need to uninstall VS.net 2003 before trying VS.net 2005 Hi, The .NET Framework is built to support running multiple versions of the Framework side-by-side and same is the case with Visual Studio. So it is not necessary to uninstall VS2003 before you install VS2005. Regards, Vikram ...Show All
Visual Studio Team System Subscribing to Events
Hi, Apologize. For lack of a better forum I am placing my query here. If there is a better forum which I am not aware of, please let me know the same. Regarding my query : I need to subscribe to TFS ProjectCreatedEvent and this is the code I have public bool SubscribeToTFSEvents( string TeamProjectName, string WSUrl) { if (m_TFSVariablesInst == null ) { m_Logger.WriteLog( "ERROR: TFS variables instance is n ...Show All
.NET Development Regex Help
Hi, I have a String like this string s = @"<Body>\r\n<Font face="Arial" size=10>\r\nwelcome to Csharp Regex\r\n</Font>\r\n</Body>"; I want to Replace the string "<Font face="Arial" size=10>\r\nwelcome to Csharp Regex\r\n</Font>" to " some text";I Use the following regex. string s = Regex.Replace(s, @"<Font (.* )>(.*)</Font>","some Text", RegexOptions.Multiline ); ...Show All
Visual Studio 2008 (Pre-release) Rotate Window
Hello Is it possible to rotate a window with WPF. When i have this on my main window <Window.RenderTransform> <RotateTransform CenterX="0" CenterY="0" Angle="45"/> </Window.RenderTransform> i get Error at element 'BamlAttributeInfoRecord' in markup file 'Window1.xaml' : Transform is not supported on Window.. kind regards Dieter You cannot apply any transforms ...Show All
Visual C++ Writing all listview elements to file
hi. i am using ListView and i need to save all list view elements to file :S is there any way to save whole ListView i am writeing to list this way: Meritve is the name of listView this->StatiskitaNalisti= gcnew ListViewItem(this->EditImeRobota->Text->ToString()); this->StatiskitaNalisti->SubItems->Add("NE DELA"); this->StatiskitaNalisti->SubItems->Add(this->VCasi->PovprecenSpeed.ToString()); this-> ...Show All
