Hema Chaudhry's Q&A profile
Visual Basic Context Menu - Adding an Item in the Windows explorer context menu
i want to add an item in the explorer context menu like winzip. so when i right click on a file my program should appear for all file types. how to do this by adding to the registry ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Maya plugin not working
I just installed the april '06 sdk and have tried running maya. The plugin is there, but I get an error that says Direct X extensions for maya - error loading dxcc: dxcc.dll not found I browsed all the SDK plugin information and could not find this. After looking on the forums for a while it seems that no one has really had the problem either. Where is dxcc.dll and where do I put it so maya will recognize it Ja ...Show All
Visual Studio Express Editions Making a call to a shared Shared Method
Hi, Can not workout answer to this problem: I have, for example, a MDI form (Form1) a child form (Accounts) and a Class (Add_Account) Within Form1 I have a shared method as follows: Shared Sub testshare() MsgBox( "testshare" ) Form1.Text = ( "Test Share" ) End Sub I call this shared method from the Add_Account class like this: Form1.testshare() '\\Calls shared method in form1(MDI form) ...Show All
Visual Studio 2008 (Pre-release) AsyncCallback threw an exception
I have created WIndows Service & deployed it on Win 2003 Server. This service just has Add/Multiply function. My WCF client is noramal WEB App. which is consumming this service the Service returns me the Result but after proxy.End MethodName ( IAsyncReslt ) gets executed it gives me the Error saying AsyncCallback threw an exception. Can anyone please help me on the same. Following is my Web Page Code. public partial class _ ...Show All
Visual C# Grrr
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "x3d2") { this.Hide(); Form2 form = new Form2(); form.Show(); else Whenever i do that it says else is invalid. Not a very informative subject title. Anyway, your problem is that your else is in the { } block. Try if (textBox1.Text == "x3d2 ...Show All
Windows Forms Small problem (MDI form, ToolStripContainer) but very urgent
Hello to everyone, I have a small problem but it is a very urgent one. I have an MDI form which contains a ToolStripContainer for ToolBars and some others. The problem is appearing when I am trying to open a new child form. I cannot see this ChildForm because it is behind the ToolStripContainer of the MDIForm. Can you give a solution to this Thanks in advance and HAPPY NEW YEAR. ...Show All
Windows Forms Terrarium communication problems
Recently it seems that I had to restart my terrarium quite often because it somehow got stuck when communicating with other peers. When this happens, I see one of the lights (either receiving or sending) is forever yellow without being able to ...Show All
SQL Server [OLE DB] how to use CCommand::Excute()...
i want to set up a rowset with CCommand<CDynamicAccessor>::Execute(), but the CCommand do not provide me any function to set the CommandText. is it the only way the i must do with the ICommandText interface myself i tried to use ICommandText::SetCommandText to set up this command, select * from authors where state=@state , and it returns S_OK. then i tried to use ICommand::SetParameterInfo to set the parameter info, and it al ...Show All
Visual C++ LNK2019
Hello, I am getting these horrible Link errors. I have seen some information from other threads, but I am not able to reach those theads today. I get an error message when i do a search for LNK2019... AuditLogDlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class ATL::CStringT > > __thiscall CEFTDBRowSet ::GetError(void)" (__imp_ GetError@ $CEFTDBRowSet@VCEFTAuditLog@@@@QAE AV $CStringT@DV $StrTraitMFC_DLL ...Show All
.NET Development New System.Net.Mail.MailMessage Body Square characters
I am trying to create multiline body using VB 2005. I dynamically build up the body with the following code: If strLine <> "" Then msgBuilder.Append(strLine.Trim() & Environment.NewLine) End If After converting to string, the final result results are added to the Message.Body and the email is sent. There are no problems sending the message. The problem is that carriage return and linefeed appear as square boxe ...Show All
Windows Forms How to get ContextMenuStrip to show windows explorer style menu items?
I have a fairly simple windows form app with a DataGridView control on the form and the grid will contain names of files from the file system - similar to way windows search works. I would like to be able to allow the user to right click ion a row in the grid and display a context menu that contains the windows explorer context menu items (like Open, Open With, Send To, ...). I know how to build my own context menu with my own contex ...Show All
Visual Basic Shell function in visual basic 6.0
Hi everyone, I`m trying to make var = shell(comando,0) work out, but it doesn`t work. My program ran well in a windows server 2000, but we changed to windows 2003, since then, my program is not working anymore. In the function I send, comando, comando has got a string with bcp. comando ='bcp ... table ...... .txt' //put data from .txt file to table in sql server 2000. The var, returns no zero, what means, t ...Show All
Visual C# using ADAM to authenticate a user
I am writing a C# service that authenticates a user. I was wondering if there was a way to authenticate users via Active Directory Application Mode (ADAM) If not, how would I go about doing this in Active Directory, for example, what functions are available for doing this Thanks in advance, DW ...Show All
SQL Server Remove "top of report" when published via ASP call
Sorry the subject is a little vague! I am issuing reports via ASP pages. I inherited this setup from my predecessor, who has a cycling "Sales Board" that calls reporting services pages from a script. All other pages do not have the light colored band across the top in which you can add parameters, click the "View Report" button etc. I have now created a new report and this band is there - can anyone please tell me how I ca ...Show All
SQL Server Create a table of temperature
Hello, I don't know how to make this : 1 table containing list of cities 1 table containing date and temperature both linked by IdCity how can i create a table to display cities in rows, date in colums and temperature at intersections Thanks ! Please take a look at the pivot operator in Books Online. You can generate the cross-tab type of report using that. This however requires knowing the values of date since that needs to be used ...Show All
