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

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

malkie

Member List

RPW
Horst Klein
Ed Hazell
Tony Maresca
Vesigo
Anand S N
Jocker23
quikssurfer
Midnight Conjurer
PCSQL66
UmerTahir
tm9t9
radarman
RayCan
Penny Ong
Samoyed
.net sukbir
brokenrice
perf101
SonAsylum
Only Title

malkie's Q&A profile

  • Smart Device Development a popup box that takes in arguments

    how can i do a popup box where it will ask for input (textbox/combobox) 1. Add new form. 2. Drag and drop textbox/combobox and whatever else you need on to that form. 3. Show that form using ShowDialog(). ...Show All

  • SQL Server Beginner's questions

    Hello, I have two database servers that I am interested in sending messeges between them. I am not interested in security or encryption at this point, only a simple message sending and recieving. Can someone please provide simple scripts for object setup (certificates, queues etc) and message send and recieve a link to such a script will be great as well. I am just a bit lost understanding all the new concepts (certificates, service, service binding.....) Thank you I. I think I deleted your post by mistake. Ilan D wrote: ok. for some reason 'End conversation @CoversationHandle WITH CLEANUP' doesnt clean up the sys.transmission_queue table. any suggestions I tried to ...Show All

  • SQL Server script

    Hello I want to create sql script for my database. I know about “ Generate SQL Server Scripts Wizard ” but it just give me script for structure of my database and I want all records of my tables too. And I’ve tried “Script table as / Insert to“via right click on my table too and it doesn’t give me a script to insert all records! How can I create script to insert all records of a table to another table with same column properties does exist any things to do it for me Thanks in advance. Best to just create a database backup and create a TSQL script to restore it. Or, you need to bulk copy the data out into a file and use bcp.exe or bulk insert to re-populate the table. ...Show All

  • Windows Forms how can i change the source code of a webpage with webbrowser control??

    i want to add some source code to a webpage to add some functions for my own uses.... for example a webpage has a javascript function a(str){ ..... } i want to add an other function b to filter out some text.. so function a(str) {b(str); .... }.. thanks for your reply,, i can change the source(actual its not changing the source, it writes a new html page with the url=about:blank), but the problem is,, after i change the source,, like webbrowser.DocumentText = "<a href='menu.htm'>test</a>"; it will change the source,, but the menu.html is linked to "about:blankmenu.htm" is not the url it should be... and the script from the child frame can't access its parent javascript function,, ...Show All

  • SQL Server Calling SSIS package from web service - Security issue

    I am trying to call a SSIS package from a web service hosted on the same machine as the package file is sitting. All that the package does is a simple Execute SQL task with one datasource connection. I have set impersonation as true. When I run the package from the web service on the virual port (through Visual studio IDE) it runs fine. http://localhost:4609/WebServiceRunSSIS/LaunchSSISPackageServiceCS.asmx In the above case I don't think impersonation means anything coz it runs successfully even when there is no impersonation set! I then run the same service (asmx page) from the browser after making it a web service on my machine http://localhost/WebServiceRunSSIS/LaunchSSISPackageServiceCS.asmx I get an error indicati ...Show All

  • Visual C# go to definition

    In VS2005 when Goto Definition displays a source file (from metadata) ie from an external dll, is there any way of telling which dll the metadata is from In VS2003 the could tell the dll from the object browser. I don't understand what the Object Browser would tell you that the metadata in conjunction with your Project References listing wouldn't... ...Show All

  • SQL Server How to To transfer SQL server Express to web hosting Provider

    Hello, FYI, I'm using Visual Studion 2005 with SQL server Ex Edition in my developer PC. So the problem now is how i can migrate the database into my web hostin provider . The provider also use the same version of SQl server. What i noticed the express editon dont have function to import or export. Anybody iin here know how to solve Right now, i'm create the databse using my controll panel in my web hosting then i create tables using management studio express, this way i must do twice works, 1st in my developer PC then into my web hosting..please anybody give a hand please I already copy web site include the app_data into my web hosting, but unfortunately i dont know the connections strings when i ask the provider they told m ...Show All

  • .NET Development How do you trigger another program or software from an existing C# program?

    Hi, i'm very new to C# programming and i was hoping if someone could help me with this problem. I need to trigger a program/software from my existing C# program using a button but i don't really have an idea of how to go out abt doing this. I think that i'll have to look through the directory of the software in order to trigger it from my program. I hope i'm making sense here. Would really appreciate it if someone could provide some feedback.  So sorry i have another silly qn to ask. I got this error:  An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in system.dll Additional information: The system cannot find the file specified Do i have to add the referenc ...Show All

  • Architecture OOP Design Question - Need an opinion...

    I know there is no "100% correct" way to design the following but any suggestions or shared opinions would be appreciated: I want to create a Customer business entity. Should this Customer class only contain properties and simple validation or should it also contain all the business logic and CRUD functions Should I create a separate class called CustomerService that handles logic by passing around and working with the Customer entity Example: How to add a new Customer 1) All domain logic in one Customer object . Customer.Name = "Bla" Customer.Save OR 2) Customer object to hold properties and Service object to perform business logic. Customer.Name = "Bla" CustomerFactory.AddCu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Collision Detection

    Ok, i know this has already been posted on but after going through that i still couldn't get it to work. So here's my code and plz tell me what's wrong. Texture2D _paddle1; Texture2D _paddle2; Texture2D _ball; Vector2 _paddle1pos; Vector2 _paddle2pos; Vector2 _ballpos; Vector3 _p1box; Vector3 _p1box2; Vector3 _p2box; Vector3 _p2box2; Vector3 _bbox; Vector3 _bbox2; BoundingBox bb1 = new BoundingBox (); BoundingBox bb2 = new BoundingBox (); BoundingBox bb3 = new BoundingBox (); SpriteBatch spriteBatch; _paddle1pos = new Vector2 (50, 300); _paddle2pos = new Vector2 (1000, 300); _ballpos = new Vector2 (400, 300); _p1box = new Vector3 (_paddle1pos.X, _paddle1pos.Y,0); _p1box2 = new V ...Show All

  • Visual Studio 2008 (Pre-release) Problem with DataBinding which has no effect

    I use WPF RC1. I try to save the position and the size of Window. In order to that, I bind Top, Left, Width and Height property to my settings class like: Binding binding = new Binding("WindowWidth"); binding.Source = Settings.Default; mainWindow.SetBinding(Window.WidthProperty, binding); But when I move / resize my window, settings are not updated. Why Thanks The property you are binding to may be OneWay. Most are by default. Try something like this before you set the binding. binding.Mode = BindingMode .TwoWay; ...Show All

  • Visual Studio 2008 (Pre-release) Peer Channel: Internal exception in PeerFlooderSimple.IsNotSeenBefore

    Hello, I am trying to get the peer channel to process received messages and have run into a real snag. When I call an operation on the mesh locally, everything works (message received, operation invoked). When a remote machine makes the same call, it also works locally on that machine, but locally on this machine I get an exception when the remote message is received. I can see via tracing that the full message from the other machine was received, but it doesn't get processed. Instead, I get a NullReferenceException in PeerFlooderSimple.IsNotSeenBefore. Can anyone explain this Below is the error I'm receiving, followed by the message that caused it. The message just contains a contact record and some endpoint information. < Messag ...Show All

  • Visual Studio Express Editions textbox math

    i want to be able to do basic math problems using a textbox example if i type 1.000+.500 in a textbox and press the enter key the 1.000+.500 would change to 1.500 how can i do this Take a look at the Math Class.... http://msdn2.microsoft.com/en-us/library/system.math.aspx Hope it helps in some way ...Show All

  • SQL Server could i have missed Reporting services during installation

    I recently installed SQL Express advanced and came across something thats confusing me. When i look at my running services i see the advanced features like SQL Server Full Text Search and the like ,but cant seem to find the reporting service. Is there a chance i skipped over it in the insall I had assumed i would have a service running that would say something along the lines of SQL Reporting Services. I havent come across directions on how to turn it on, so i assume that i missed it during installation I definitely messed up the first install. I went back and re-ran the SQL express advanced install file and got the reporting services to show up. It walked me through setup options for the reporting serv ...Show All

  • SQL Server Deserialization failed

    I am installing SSRS for the first time. I tried to create a simple report and I am getting the following error: Deserialization failed: The type initializer for 'Microsoft.ReportDesigner.Drawing.RptStyleConstValue' threw an exception. Line 2, position 2. Does anyone know how to fix this error Thanks, Patrick You have a problem http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=811976&SiteID=1 ...Show All

©2008 Software Development Network