Phizz's Q&A profile
Visual Studio Undocumented add-in option
going to tools -> options -> Environment.add-in there is an option for enabling add-in components from a url. Does anyone konw how to setup this feature In Visual Studio 2005, you can register addins using the old way (through registry + COM) or through an xml file (.addin files). One of the things you can set in the .addin file is the location of the addin assembly which can be a URL (e.g. http://www.website.com/myaddin.dll). See the Visual Studio topic "Add-In Registration" in the MSDN docs for more details. ...Show All
Visual C# Modify compiled class
hi , i need help, i downloaded a class that its for login and encryption. but is compiled and i need to customize it, is there any way i can add some lines of code to the compiled class :s... mig16 Yes, you can decompile it with tools like Reflector, and then recompile the result. I'm not sure what tools actually give you the source code, reflector just lets you browse it, I thought. It also depends on if the code was obsfucated, just how difficult it will be. http://www.google.com.au/search hl=en&q=decompile+C%23&meta = Looks like there are lots of options, probably only some are free t ...Show All
Windows Forms Initial control settings in a composite control
I am building a composite control that has a panel placed to the left of a label control. The panel is used to indent the label control. If indentation is turned on, then the Panel.Visible() is set to true, and the label is pushed to the right by the width of the panel. If the Indent is turned off, then the Panel.Visible() is set to ...Show All
Visual Basic how i can get info for anther app ??
Hi i make this code i have form and textbox1 and textbox2 and Button1 Dim yourpro As New System.Diagnostics.Process yourpro.StartInfo = New System.Diagnostics.ProcessStartInfo(textbox2.Text) yourPro.StartInfo.CreateNoWindow = True yourPro.StartInfo.RedirectStandardOutput = true yourPro.StartInfo.UseShellExecute = false yourPro.Start() dim myR as System.IO.StreamReader = yourPro.StandardOutput textbox1.Text = myR.ReadToEnd() myR.Close() i don't do yourpro.Close or myR.Dispose . My Question is how i can ReSend and ReGet info for yourpro ...Show All
Windows Forms is there any way to force a control to receive focus?
i have a custom control inherited from panel and i need to be able to handle Enter/Leave events for it..any idears First off, yes, nested controls should raise Enter and Leave events all the way up the parent hierarchy. If this isn't working for a given scenario, it is a bug. Secondly, in your drag scenario, you would want to h ...Show All
Windows Forms FolderBrowserDialog to select machines on network.
I'm trying to use the FolderBrowserDialog to select mchines on the network but have come across a problem. The FolderBrowserDialog can select folders on my local pc but when I move to the "My network Places" I am no longer able to select a machine name as a folder, I can only select a folder on a machine. How can I force the FolderBrowserDialog to allow selection of machines on the network hi, Please go through the below link, Hope this helps. Link: http://weblogs.asp.net/psteele/articles/7536.aspx Thank you, Bhanu. ...Show All
SQL Server 264] An attempt was made to send an email when no email session has been established
Is there any way I can get sp1 please. I'm getting the same error no matter which email method I use. Thanks Sam Basically restarting SQLAgent after setting MAPI profile will solve this issue ...Basically this is incorrect (nice guess) ...Show All
SQL Server Documenting a reporting services site
Does anyone know of a good tool that will help with documenting a reporting services website I inherited a prebuilt site and I am trying create some documentation about it. I have tried Visio, but it documents down to layers I do not need to go to. I just need the folder heirarchy and the reoprts within each folder. Thanks for you help! frank Sorry - we don't have such a tool in the box. You can use a script to do this pretty easily. Create a VB.Net based script to call the ListChildren API recursively. Run it in rs.exe. You can format the output into a tree pattern to make it presentable. -Lukasz --- This ...Show All
Visual Studio Express Editions how connect a Visual Basic express edition application to an Oracle database
Hi, the title of this message, says quite everything I want to know. I'm developping a human ressource tool and the database I have to use has been developped with Oracle 9i. And I don't know how to connect my application made with visual studio 2005 express edition to Oracle Tkanks everybody -) You can use the System.Data.OracleClient namespace. ...Show All
Visual Basic called form hangs upon exit & and does not return to calling form - what can I do?
Hi, I'm having a difficult time with an occassional hang on a form that is being exited back to its calling main form and would like some guidance. The problem is occurring every once in a while and is difficult to locate and would like some help on where to look and possible remidies. I'm calling the Close() routine when an exit button is pressed. The form appears to be exiting but return to the main program is not reached. I have to stop the program and restart it which will run for a period of time and then will hang again. This is a new language for me and am wanting to learn the best ways to call a form and exit a form properly ...Show All
SQL Server The Trash Destination Adapter - Really needed?
Quick question... I have a conditional split transform in a dataflow... One of the outputs of the conditional split will take records that are just not needed... Do I have to send that output into the Trash Destination adapter Or can I just let those records hang Will there be a memory leak if I don't use a trash adapter I'm just thinking about if I move the package I'd have to go reinstalling the trash adapter every time... Thanks To be clear, don't use anything, including Row Count, unless you really want to. If you will use the Row Count then fine, otherwise just ignore it. It does ...Show All
Windows Forms crystal regwix2003
hi everyone....... i think most of you heard about this problem many times, but still i want to ask again. actually, i have already did the things that i have to do to solve this problem based on solutions that i've got from websites and forums but still the problem occurs. the solutions are: - Register Crystal Report - Register crqe.dll usin ...Show All
Windows Forms Simple Add New Record
I have a simple win form which has a few text fields bound to my dataset i designed in the dataset designer. I am able to view, edit, and delete records no problem using the bindingsource.EndEdit() and the tableAdapter.Update() or Delete(). However i am at a loss when it comes to adding a new record to the database. I have spend days looking at articles on the internet but very few cover the inserting of data from a databound form. Here is what i think should happen. Form fields are cleared ready for new data to be entered. Data is entered by the user. Save Button Is Pressed Data is loaded into the new row Any miss ...Show All
Visual C++ sqrtf under 24 bit floating point precision
Hi, While trying to estimate performance impact of using 24 bits floating point precision versus 53 bits, I've noticed that sqrtf function was 6 times slower in 24 bits control mode. Every other operation I've tried (divide, exp, cos, ...) are all faster or equal in 24 bits mode compared with 53 bits mode. How could this be explained Are there other math functions or instructions that will suffer using 24 bit mode Regards Guillaume Unfortunately, I don't believe there is a list somewhere. I believe default mode should take care of the perf issue per the above description of the issue by the ...Show All
SQL Server Triggers
I have a stored procedure that inserts multiple records at a time as a batch. I have one column whick is DateTime datatype which keeps track of the last time the row is affected. So, I want to update this column for each single insert statement in the batch. In other words, is there any way that we can separately access each insert statements in the batch job Thanks chale Datetime granularity is limited to 1/300th of a second. So if you are trying to generate datetime values for each row it is not quite possible for all rows. It is best to use a sequential identity column along with a dateti ...Show All
