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

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

Nightmare_BE

Member List

sunny_savasxch
dezrtluver
Rob Thomson
donkaiser
Guy Baron
Shark_
OllySmith
VBGMan
John_Mac
Micael Baerens
MNDANG
VOC
wsaunders
Bobby K
tthellebuyck
AlexInToronto
hrubesh
David Kreps
Tryston02
Alex-MyRpg
Only Title

Nightmare_BE's Q&A profile

  • Visual Studio Team System What will happen if I remove the .dat file?

    Hi, If I remove the .dat file from my DBPro project folder, what will happen when I open the project Will it attempt to rebuild the design database from the scripts I know I could just try this but I thought I'd ask before I go ahead and break something. I'm scared basically :) Thanks Jamie P.S. Good luck with the release today! Richard Waymire - MSFT wrote: Yes, it'll be a rebuild of the project from the source files. Should work the same, just slower. That's all I need to know. Thanks Richard. FYI: This is because of a bug in CTP6 which can cause your project and design DB to get out of sync. -Jamie ...Show All

  • SQL Server insert image into database

    how to insert n image.jpg into the database what should be insert query Hi, It stores the value in this format only for image.... but this is not a best practice, you should rather store the location of the files / images only and rest work should be done from the Front End Application so that you want lagging behind performance problem refer a nice research @ MS for Blob or not http://research.microsoft.com/research/pubs/view.aspx msr_tr_id=MSR-TR-2006-45 HTH Hemantgiri S. Goswami ...Show All

  • SQL Server Diplaying information from database in a header

    Hi, Is there any way to out put the database field values in a header other than storing in body and reference the body fields as report items I am using reporting services 2000. Thanks, Siri ...Show All

  • Software Development for Windows Vista How does window media player pass the file to a push source filter?

    Hi,I'm new to DirectShow. Now I need to write a push source filter to open and parse a customized file. I'm wondering how did window media player pass the file to my filter I'm not totally understand the flow chart from window media player to source filter.Any input will be really appreciated.-Cecilia Thanks LGS for the info.Actually, I have my own file parser for my own file type. I need to get the file path from window media player and pass to my own file parser to open and parse the file. I don't know if window's media player will pass the file path to it's pin Any input will be appreciated.-Cecilia ...Show All

  • Internet Explorer Development IE7 marquee

    The actual code proving to be most irratic has the following inside the marquee: <A href="mailto:rklewi@company.com">click here for information</a> ...Show All

  • Windows Forms Problem with animated Gif in Richtextbox control

    With chat application, it's normal to display animated emoticons inside the chat message. I am using richtextbox control for user to enter their chat message. This chat also provide users with emoticons list, where they can pick any emoticons available. Once they click on one of the emoticons, it will be copied (using clipboard) and pasted on the richtextbox at the position of the caret. Everything is fine up to here. There are two problems that bugged me for 3 days without any solution. 1) Pasted image in the richtextbox is not animated (only still image pasted) 2) Pasted image is not transparent despite property of the PictureBox has been set to Transparent or even Color.White. Here is the code i am using: private void pictureBoxPic1_ ...Show All

  • Visual Studio Express Editions VB 2005 Express asks always for registration

    I am not sure what went wrong but VB 2005 Express Edition does not stop popping up on me via NotifyIcon Balloon Message, telling me that I should click there to register. I repeated this steps already several times and got even the THANK YOU email but when ever I open the program again I get the same ... I have no idea what to do about it! Any suggestions Glenn Wilson wrote: If you installed the package from the cd you do not have to register the product (As per the registration FAQ), but you will be asked. This dialog will continue for the first few times that you run the applications, over time this will stop. ...Show All

  • Internet Explorer Development Why does IE7 always popup the prompt window in vista?

    I have created a BHO and a Broker process, and I want the BHO can access the broker process without prompt. Therefore I add a key and values into the Registry , so that I can silently elevate the broker process to medium integrity level. more infomation for "elevate policy" ,please see " Understanding and Working in Protected Mode Internet Explorer ". 1. Add a key like this HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{AA467279-FAA8-4154-94C3-71FBAD2FE3FE} 2.Add some values into the key AppName REG_SZ "test.exe" AppPath REG_SZ "D:\test\debug\" Policy REG_DWORD 3 CLSID REG_SZ "{BBD113D6-28F2-467F-B8D5-5F9508FC23BB}" ...Show All

  • Visual C++ Multiple inheritance and function overloading

    class A { public : int f() { cout<<"A::f()"; } }; class B { public : int f(int i) { cout<<"B::f(int)"; } }; class C : public A, public B { public : int g() { f(); } }; Why does the above program give following error error C2385: ambiguous access of 'f' in 'C' error C3861: 'f': identifier not found, even with argument-dependent lookup Where is the concept of function overloading and method signature go PS: The above program code compiles if you give A::f() inside function g() This is by no means strange. I've already explained to you how the compiler behaves, aswell as the reason for this behavior. To repeat myself; they figured methods of different ...Show All

  • Windows Forms Making a custom tooltip (label) work correctly when form is moved

    Heres the deal, I have 32 inventory slots, which are actually panels, and when they are moused over, the Tooltip , which is an autosized label inside an autosized groupbox or panel, I wanted it so when one of these 32 slot panels are moused over, it will display the tooltip at that position, wherever you move the mouse, as long as its in that panel, when you leave the panel, the tooltip disapears, I got it to work perfectly by doing this, until a friend I am working with discovered that when the form is dragged, it will be off slightly, off a little more than what it is supposed to be at.... I figured that it was just a variable problem, since I was using the same ones, so I created a new variable, to limit down my options, but the prob ...Show All

  • Visual C# Capturing part of a screen

    Hi guys, hopefully someone can help me out here with a small problem I'm having. What I'd like to accomplish is capture part of my screen and save that image, but have this process be done without my presence. For instance, capturing the screen from bounds x1, x2 ,y1, y2 so (20, 50, 100 , 200) would go from (20, 100) to (50, 200) and give me that little rectangle. Any ideas Places to look for help Bryan Kardisco wrote: I just wish I could contribute and give back to the community I've taken so much from We all started small, don't forget that! Here is a little list of resource, you must use P/Invoke and some external methods to accomplishe you goal, but with these resources it isn't to hard: Screen Capture in ...Show All

  • .NET Development strange problem about the email encoding

    i got a web application. if you register there, system will sent a mail to your email. i use Jmail to complete my email function, and it works well. but sometimes, some user will report me that they recieved clobber mail. i checked these mail and found that there is Base64 encoding. so i cannot locate the problem, the error of my Application or JMail, or SMTP server. or email client please help me thanks and best regards Hi, Your thread seems to be more appropriate here and hope you find satisfactory answers. Thank you for understanding ...Show All

  • .NET Development How to connect two application via internet

    Hi Sorry for a new bee question :-) I want to make a application that have a blank board and allow two people can draw on that at the same time. Two people will use different computers and connect via internet. What is the best way of making this application Client - Server or p2p or other kind of structure In c# what is the class that support connect two application Thanks a lot for your help. I do appreciate it Best regard Ultimately you need to know when the other party moved or drew something on the board so you could replicate that on the other side. This is what I would do. 1. If you only need to involve two parties, a direct connection betwen them would do. So basically one of the machine acts as server and the second ma ...Show All

  • Visual Basic Byte Conversion

    I have two values, and cannot place what conversion is being done ... I start with a 3-byte message 00 35 6D and the result after conversion is 13677 Can anyone tell what conversion is being done here It appears that it is converting your 3 bytes to a decimal value. If you open up calc.exe and put in your 00356D as hex and convert it to decimal you will get 13677. What are you trying to convert this to and how are you converting it currently ...Show All

  • Software Development for Windows Vista WorkFlow RunTime web designer

    with Microsoft WorkFlow Foundation can have a windows run Time designer how Can I Have a web Designer for Example in an aspx file I Design My Work Flow Tanx Add your Workflow to your Blogs 1. Create or import your workflow at http://netfxlive.com and save it. 2. Add the following HTML code to your blogs or to any web page. Specify in Open method your UserName and WorkflowName: <div id="designerCtrl"></div> <script src=" http://netfxlive.com/includes.ashx " type="text/javascript"/> <script type="text/javascript"> var designer= new WorkflowDesigner(); designer.Initialize(document.getElementById( ...Show All

©2008 Software Development Network