Software Development Network Logo
  • Visual FoxPro
  • Windows Forms
  • Visual Studio
  • SQL Server
  • Smart Devicet
  • Microsoft ISV
  • IE Development
  • .NET Development
  • Visual C#
  • Visual Basic
  • VS Team System
  • Visual C++
  • Audio and Video
  • SharePoint Products
  • Windows Vista

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

Shortty

Member List

search and deploy
Buddy Funny
Damien fromOZ
texan149142
Victor Egbe
WayneSpangler
Milzit
Floubadour
Wahl04
David S. Anderson
James Bannan
curtKauf
dumian
FredMunro
Riyadh Calling
Pr0fess0rX
killfr0g
Alexey Rokhin
Arne Claassen
jwize
Only Title

Shortty's Q&A profile

  • Visual Studio How to display Bitmap in Image ReportItem (Local)

    Hi, I am new to vs2005 and C#. Chart is not good for my requirements. I draw the graph in Bitmap mybmp in form1. I have image1 in Report1.rdlc I have set Source of image1 as External. How do I get the value property of image1 to show mybmp Also how to set image1.hidden at runtime from form1. Thanks ...Show All

  • Visual Studio 2008 (Pre-release) RichTextBox How To!

    Hi, I have searched the net and the documentation that shipped with Beta 2 and have not found any results or information that was able to aid me.  Hopefully there are some RichTextBox experts that could please help me with the following things: How can I make the RichTextBox single line   (this was possible in Win32, and no, changing the control template to a textbox does not work!  Because then it essentially is a textbox!) Why is it so difficult to control drag/drop operations in both the textbox and RichTextBox   I would like to control over what is dropped onto the textbox, for instance if images is dropped or texted I would like to be able to Is it possible when doing a drag/drop operation, I de ...Show All

  • Windows Forms Get Item in ListView

    Before posting this i did search but couldnt find a solution so i am asking for help........ again Lets say you had on a ListView 5 Items(user names) and each have 2 SubItems (age, gender). The view is set to Details with click event enabled. Ok if i click on a user name (Item) in the Items list, how can i make the name i clicked on appear in a textBox1 Any useful links would also be great. thanks Im using VC++ with C++ instead of using ' . ' you use ' :: ' and ' -> ' I never realised that something so simple could be such a headache to do. Im still a newbie learning so errors are to be expected i guess. at this rate i shall hit the worlds record for getting the most errors ...Show All

  • Visual Basic Change Location Of Label

    How to change the x, y location of a label Thank you ...Show All

  • Visual Basic MAKING .NET CONTROLS - OCX VB6 COMPLIANT

    Hi all, I have to create a .NET control. It have to run in a vb6 app. I'd like to use it like a standard OCX control. I've found in the net that it's possible. there's anyone who can tell me in which way I can do it It's simple: have a .net control and import it in a VB6 controls list by "add control". and have it working right. Dario TIA for any suggestion! Jon's link above contains a start. Again, we hope to have something significantly easier for people to use. You should see something shortly from us in early November. Toddap_MS ...Show All

  • SQL Server SQL Server 2000 Max outs Memory even with 32GB RAM

    Hi I am joining the thread that initially Mike started. We have a x64 bit SQL Server with 32GB RAM. On start up sqlserver.exe starts with 15 to 20MB of RAM. After that the memory gradually increases at a step of 100MB and reaches 31.8 GB at the end. We don't see a out of memory situation so far and the memory remains the same, once the sqlserver.exe reaches that level we are facing application in stability issue. There is no other application running in this server. At present the database size is 28GB and we have employed the following, There is a database replication running A weekly maintenance plan to reindex, backup and other maintenance is running. There is a log back up job which runs once in 2hrs time. The temdb s ...Show All

  • Windows Forms When I open win form app project via VS.NET, controls will be bigger...

    Hi, When I open win form app via Vs.Net, I found the main form larger and all controls that it contains will be bigger and gone to other positions. I have very little experience with win form app development and I could not even understand the problem. Thank you Yes. I found sth interesting that is relevant to the problem. Form gets its and controls' properties from resx (attribute Localizable=True). I dont think resx is working properly. This seems the problem. But I still dont know the solution. I hate microsoft resx and their other solutions which MS says they will ease development time... ...Show All

  • .NET Development how to make asp.net websites to clear all accessibility Levels ?

    Hello every body, Does websites developed in asp.net 2005 or in asp.net 2003 clear all the levels of accessibility If it does , please provide me an artical or any guide lines which help me in future for developing websites that clear all accessibilty levels and passes w3c validation. Regards I think the community at http://fourms.asp.net will be better able to answer this question. Thanks. ...Show All

  • Visual C++ Owner-Drawn ListBox

    How to make an owner drawn listbox transparent I have tried with following code. but it's not working :( DWORD dwStyle; dwStyle = GetWindowLong( m_hWnd, GWL_EXSTYLE); dwStyle = SetWindowLong( m_hWnd,GWL_EXSTYLE, dwStyle|WS_EX_LAYERED); SetLayeredWindowAttributes(0, 250, LWA_ALPHA); CListBox::PreSubclassWindow(); Sahir, The article helped me, but it's "true" transparent. Let me try for alpha blending support. Please let me know if you get something related to Alpha blending for ListBoxes ...Show All

  • Smart Device Development the teach document of the vc.net 2005 native code

    hi where can download some the teach document of the vc.net 2005 native code I want to study the develop technique of vc.net 2005 for the handsets plat. Thank you MSDN help articles and the following starter kit should be useful http://msdn2.microsoft.com/en-us/windowsmobile/bb264330.aspx Srikanth Bogadapati ...Show All

  • Community Chat Yes i'm working on my site looking for new and exciting ideas

    looking to drive more traffic on my site called www.applyquotes.com Really looking for a Data base programer to be a partner. You can get in touch with me at david@applyquotes.com looking forward to hearing from ya. have a great day David PentagonMaster wrote: PentagonMaster wrote: looking to drive more traffic on my site called www.applyquotes.com Really looking for a Data base programer to be a partner. You can get in touch with me at david@applyquotes.com looking forward to hearing from ya. have a great day David So you're looking for ideas ......Curently i give most of my ideas to www.Rsvpfirst.com but i'll give you the same thing tha ...Show All

  • Visual Studio 2008 (Pre-release) How to enable tracing in code without using configuration?

    Hi All, I am trying to enable MessageLogging on my client without using a configuration file. In my situation i dont have an configuration available for my client. I tried adding to following code to my client but no go... i am probably missing something very obvious... XmlWriterTraceListener l = new XmlWriterTraceListener ( @"C:\wcf.log" , "ServiceModelMessageLoggingListener" ); l.TraceOutputOptions = TraceOptions .DateTime; TraceSource s = new TraceSource ( "System.ServiceModel.MessageLogging" , SourceLevels .Warning | SourceLevels .ActivityTracing); s.Listeners.Add(l); Can anyone point me in the right direction You can us ...Show All

  • SQL Server SQL Replication: 2005 (Publisher) and a 2000 (Subscriber)???

    Hi, I was wondering if it is possible to setup replication between a 2005 SQL Publisher and a 2000 SQL Subscriber Is there any special setup steps I need Thanks so much, David Hi David, Yes. It is possible. For things to consider, you may check out this document: http://msdn2.microsoft.com/en-us/library/ms143241.aspx . You would need a 2005 SQL distributor. Peng ...Show All

  • Smart Device Development Reading emails from windows mobile 5.0 ppc pocket outlook

    hi, can u help me reading emails from pocket outlook in windwows mobile 5.0 pocket pc device Are there any managed libs for reading emails...or else we have to go for unmanaged code i am able to send emails using the managed libs given in the 5.0 sdk thank u Aditya. It appears that this question can better be answered by someone on one of the newsgroups for Windows Mobile or Windows CE. In order to get a quicker and more accurate response, please consider reposting this question to one of the following newsgroups: Windows Mobile API : microsoft.public.pocketpc.developer microsoft.public.smartphone.developer Windows CE API : microsoft.public.windowsce.emb ...Show All

  • Visual Basic adding handler to a button generated at runtime

    everytime I try to add this code: AddHandler btnLogin.Click, AddressOf mybutton_click it gives me the following error: name 'mybuttom_click' is not declared. Here is the code that I am using to create the button: Imports System.Drawing Module formsLogin Public Function loginForm() Dim btnLogin As New Button With btnLogin .Location = New Point(55, 75) .Text = "Login" .TabIndex = 3 End With Dim btnCancel As New Button With btnCancel .Location = New Point(175, 75) .Text = "Cancel" .TabIndex = 4 End With D ...Show All

©2008 Software Development Network