Software Development Network Logo
  • Windows Live
  • Windows Vista
  • Visual FoxPro
  • Smart Device
  • Visual Basic
  • .NET Development
  • Visual C#
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • VS Express Editions
  • Architecture
  • Visual C++
  • Visual J#
  • SQL Server

Software Development Network >> weiblec's Q&A profile

weiblec

Member List

Prashant jain
Ralph G
wilson george
John Calcote
codemanwa
Gushie
rhoule
Sun Haiwei
Bill Horsley
RAMPRAKASH
zakoops
RodMcLeay
Sam Fasten
Saurabh Nandu
AnotherRick
wfsCA
Gumbatman
Brian Matuschak
Graham Parker
Jose Garcia-Cordero
Only Title

weiblec's Q&A profile

  • Visual C# Threading in C#

    Hello Everyone, I have a tab application, which initially I made single threaded....I added a dll which has a form. Now when I change to a tab method in that dll gets fired and form comes up, which makes everything else unresponsive.... Whats the best solution to implement thread to solve that problem.... Secondly, I tried doing something this way..... namespace something { public partial class Some : Form { public Some() { } // Then here more procedures } // Here I created another class which fires the method from dll.... public partial class Test { public DLLFire() { } } Now If i ...Show All

  • SQL Server Digitally Signing

    I have two questions. 1. Has anyone ever digitally signed a PDF coming out of Reporting Services 2. When will you be able to generate a Word document from a Reporting Services Report Dave Currently there is no real way to sign a PDF in the true sense of the word - The best you can really do is generate a hash off of the fully rendered PDF and then store the hash somewhere else...later you can use the hash to make sure the report hasn't been modified. There is no ETA on SSRS being able to render to Word...SoftArtisans has a product which will do this now, though ( http://officewriter.softartisans.com/ )   ...Show All

  • Visual C# How to set Background Image in a multiline textbox/richboxcontrol or any other control

    Hi, I need some pointers on how to go ahead with it. Thanks, No, you cannot override OnPaintBackground. The events are not fired by default by TextBox or RichTextBox, so even if your custom control can override them, nothing is accomplished. The only way I know to get the Paint events is to set the UserPaint style for the control, but at that point the control will never redraw itself... which means that if you want to change the background you also have to reimplement the entire painting of the textbox (which IS a pain). The only thing I ever found that comes close to a solution is in this article ... which is very cl ...Show All

  • Audio and Video Development Help! Installation not working

    I downloaded the HD DVD Programming Guide, installed it, but then couldn't find the program file or document anywhere on my computer. Is it a document or is it a program I went to Start:All Programs on my XP Pro PC and couldn't find it. Is it somewhere else on my computer Thanks, David Hi David, The current download is just some documentation and an object model diagram. You can this in: C:\Program Files\Microsoft\HDDVDProgrammingGuide (Assuming you used the default install path) Stay tuned for more interesting downloads soon... Peter http://blogs.msdn.com/ptorr/ ...Show All

  • Visual Studio Express Editions cannot open form in design view

    Hi i saved a visual basic 2005 project containing two forms. When reloading the project the next day, i could not get the design view of those forms anymore. I only see the code in form1.designer.vb, i do not see the form with the usercontrols itself. In the solution explorer i see a node form1.vb with an icon which looks like a small textfile and "VB" in its corner. When i click on this node two files appear: Form1.designer.vb and Form1.resx. I also noticed that in a project where i do see the form in design view, the icon of the node form1.vb looks different from the icon in this project. What has gone wrong here or do i need to ...Show All

  • Visual Studio Express Editions Hi I need a math expert

    Hi i need some help building an advanced calculator using vb .net 1st i want to calculate the logarithm and the ln; i used math.log(x) but it returned a number different than the one i get using the windows calculator. Also i need to calculate sin^-1(x) but i cannotmake it 2nd i need a help with keypresses. i made my codes in the form_keypress but when i click on any button it focuses and then the keypress doesn't work and when i press enter the button focused is clicked, i wrote Me.Focus () in each button sub but it didnt work. but when i wrote it under form_lostfocus it worked but i had another problem which is i cant select any item in t ...Show All

  • Visual Studio Automatic check in

    I'm running VSS 2005 with VS 2005. 1) When I open a project under source control it used to ask me which files I wanted to check out. Now it just opens the project. 2) When I close a project it used to prompt me to check in my changed files. Now I have to remember to manually check in the files before I close the project. How do I get it to prompt me again Cheers, Ben You need to set this options in Tools->Options->Source Control->Environment Select: On Edit -> Prompt to check out Select: “Check in everything when closing solution” ...Show All

  • SQL Server Connection Timeout - Need Help

    Hello, My app uses sql express on the client work station and has been installed by our application installer as a part of the prerequisites. The sql express install in standard and we've not changed any settings or brought in any tweaks. All is well in our dev center. However, some of our clients are experiencing a problem when the app starts up. After the PC has been restarted, running the application causes it to crash with a connection time out. However, running it a second time will work with absolutely no issues. Overall - after a restart, the first sql express connection will time out. I had a post on this earlier here -> ...Show All

  • SQL Server What are user instances?

    Hello, I want to know whats the difference between managing the databse with management studio or directly putting the MDF file on the app_data folder in visual studio 2005. I tried to put one MDF file and tells me that users instances are not enabled. If I put an mdf file onto my project it will be part of the installer and it will automatically install my database on the remote server If not why its useful if I can go to server explorer and see all my databases, tables and so on. Tks    In a nutshell, "user instance" allows a non-admin user to start an application which start a sql server instance. Here are some explana ...Show All

  • Microsoft ISV Community Center Forums ODMA

    ODMA is a standardized, high-level interface that enables you to transparently access a DMS from your desktop program, such as Microsoft Word. We have a DMS product we would like to integrate with Microsoft Word and Outlook.  We understand that Outlook isn't fully ODMA compliant.  We would like to know whether future versions of Microsoft Office will still support ODMA. Hi Barb, Per the Word team, they have not removed ODMA support from Word and have no plans to. If I find out more on this I'll post it. -brenda (ISV Buddy Team) ...Show All

  • Windows Forms Accurately setting the font size

    Hi, I have a Rich Text Box in a windows form and I set the font type and size by grabbing information from a database. This rtb eventually appears in a Crystal Report. I use various methods to make sure the comment in the rtb fits into the box on the Crystal Report when printed. I have noticed recently that it is not 100% accurate. I am not expecting it to be 100% but I need it as close as possible. One problem I am having is that if, for example, I set the Rich Text Box font type to Comic Sans and the font size to 8, the text is appearing slightly smaller in the Crystal Report. I have noticed that if I copy the text from the RTB into Word, ...Show All

  • Windows Forms Component Creation/Deletion bound to PropertyChange Problem

    I have a custom enum property Parts for my custom containercontrol declared as below: [Flags] public enum Parts : int {    None = 0,    Header = 1,    HeaderDetail = 3,    HeaderFooter = 5,    HeaderDetailFooter = 7 } Depending on the Parts configuration chosen at designtime, I will be creating/destroying the associated components (Header, Detail or  ...Show All

  • .NET Development how to output system.byte data?

    hi,friends my data readlly encrypted,but i can't normal output the encrypted data(system.byte type data).i can output base64 type, response.write(ExampleValue) like this can output base64 encoding value,but i can't output byte[] type value,please how to output the byte type data like J8-D3-DJ-LO-OK-N4......... thanks for you. Like this byte [] data = new byte []{ 10 , 50 , 200 }; StringBuilder sb = new StringBuilder(); for ( int i= 0 ; i<data.Length; i++) { sb.Append(data[ i].ToString(" X2 ")); if (i<data.Length- 1 ) sb.Append(" - "); } Co ...Show All

  • Windows Forms how to find the active form

    hi VB6 had property to find the active form's active control - Screen.ActiveForm.ActiveControl.Text .... how this is replaced in .net.. i want to create a child form in an MDI application that can search for empolyee code and set the code in the combobox/text box (the user clicks F3 button)... i need a general form that can be used in all forms... thanks Regards If you're creating a child form and you want to send back information to the main form, a delegate would be the way to go. ...Show All

  • .NET Development Large Result Sets and Datareader

    I have a small vb.net application that I only need to log how long the query took to execute and the number of rows returned. Using the datareader it appears to be buffering the result set which is a problem for queries returning large result sets. Is there a way to limit the amount of data the datareader buffers MyODBCCommand.Prepare() ' MyOdbcRs defined as an OdbcDataReader MyOdbcRS = MyODBCCommand.ExecuteReader(CommandBehavior.SingleResult) Do While (MyOdbcRS.Read) FETCHCOUNT = FETCHCOUNT + 1 Loop MyOdbcRS.close This is application is being used for regression ...Show All

©2008 Software Development Network