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

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

BobH

Member List

aliassce
Fabio B
sanjeevm
Jackuline
laqula
GaryR
AmrishDeep
4r09384r3l4kn
Keith Chapman
Brad Smith
HKEC
Adam Boczek
Rischa
Peter Tewkesbury
asalcedo
Kea
Jim Ward
Al Pie
Pooja Katiyar
kjudge1974
Only Title

BobH's Q&A profile

  • .NET Development Web Services & Partial Encryption

    i am developing a set of web service methods which return reporting data. ideally i do not want to use HTTPS due to the extra performance hit. what would be ideal is to encrypt only that data which is sensitive. for example, 1 particular report has 12 columns of data. but only 1 column of data really needs to be encrypted over the wire (the client name). at the moment my web service method returns a dataset. although i can change this, if it is easier to implement partial encryption by returning a different type. please could anyone advise if it is possible to perform partial encryption in .NET2.0 like this if so i would be grateful for any advice, URLS, etc. to get me off on the right foot. thanks ...Show All

  • Visual Studio Express Editions Installing Resources

    I have a .wav file and .exe file in my resources. When I install my program on other computers it won't play the .wav file and it won't open the .exe. How do I make my install so that it installs my resources with it If you have them stored as internal resources then you will have to write them out as a file before using them...the easy solution is to add them to your project as an existing item and set the build action to none and the copy to output directory to copy if newer...this will include the file as an external resource...and then you can reference the files through Application . StartupPath ...Show All

  • .NET Development sockets vb .net

    Hi! i'm looking for winsock control in vb .NET, but i can't find it. I need an array of sockets.. Is there any way to work like VB6 (Drag & Drop, and calling .DataArrival, .Connect and the other methods and events) I'm newbie in this area.. Thanks! the whole point on having another thread is so it can do a task from blocking the main thread, (UI/application). So if you kept on listening to the port on the same thread, your app would be non responsive. To avoid this problem, you spin up a new thread and keep listening to the port and recieve data and process it, which means your main thread will be responsive now, since work is being done on another thread. ...Show All

  • .NET Development How to extract info from tables in http files without too much custom code?

    I am working on Windows form and I am using some publicly accessible http files written by 3 party to extract info from the tables generated by xml and css files that maybe unaccessible for me. I am writing custom parsers to get neccessary for me info, but it looks like those tables created as a System.Web.UI.WebControls.DataGrids with readonly columns. It means that I am using System.Net.WebClient only to read (or download) those files. Can somebody sugest other ways without the direct access to corresponding server controls . ...Show All

  • SQL Server SP2 is available

    Here's the main page for it: http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/servicepacks/sp2.mspx Thanks Laurentiu ...Show All

  • Visual C++ Starting off with C++

    I keep hearing it's hard to learn, but that you should try and begin learning with C++...That being said I just downloaded Visual C++ Express and was eager to code for the first time   Only to be even more frustrated; I created a new file under Visual C++, C++ file, then started typing in code from tutorials.  The color of the text is changing, appearing like I'm entering code but there is no output.  Here is what I typed // my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!" ; return 0; } Output doesn't appear and when I click on "Show output from" it makes a noise that I can't do it. Do I have to create a certain type of file or ...Show All

  • .NET Development How do i retrieve my IPV6 Host addresses???

    Hi! I want to work with IPV6 and Teredo using C#. I need the IPV6 address of my machine. Following only gives me the IPV4 addresses and the IPV6 Loopback: String strHostName = Dns.GetHostName(); int nIP = 0; foreach (IPAddress ipaddress in Dns.GetHostAddresses(strHostName)) { Console.WriteLine("IP #" + ++nIP + ": " + ipaddress.ToString()+" IPVersion: "+ipaddress.AddressFamily.ToString()); } Please help me!!! Best regards Marek The correct way to retrieve this is via NetworkInformation namespace.. NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface ni in nics){ IPInterfaceProperties ipProps = ...Show All

  • Windows Forms how to to fill a combobox diplay property with multiple columns not only one datafield

    I have two fields : fld1 and fld2 I bind my ComboBox to the table: MyTable Butb I want both fields fld1 and fld2 to aappear in my displayed list of the combobox Any ideas thanks That's easy, You can't but with a bit of trickery and ownerdraw you can rol your own. you know what , here is some code for a combobox with multiple columns and autocomplete, it's written in vs vb.net 2003 : todo:     1. create a usercontrol    2 Replace all the code with the code below    3 build project, now on the my usercontrols tab on the toolbox there is a multicolumnCombo    4 drop a instance on a form, a set as usualy value,display member, datasource etc.    5 ...Show All

  • Visual C++ Getting an error RC2188 (Visual Studio 2005, C++)

    Hi, For some reason I'm getting an RC2188 error from the Resource Compiler when accessing the Resource View. There is no documentation for this error. Situation is, I have an RC2 file with my version info in, which is not to be edited by Visual Studio. When the message comes up, it has the path to the RC2 file with a (6) after it. Presumably this is the line number which is #error this file is not editable by Microsoft Visual C++ Anyone have any idea why this is now causing an error (has been working fine in this configuration for months) Thanks in advance Ian. Found those myself as well. Thing is tho the project is a pure bred VC8 one. I'm not using the libraries that's being ment ...Show All

  • Visual Studio Express Editions OTP: convert photo file to binary file

    hi all.... is anyone know how can we convert the photo file to binary file..........this is because there is quite a number of photo files in my system, and i would like to convert it to binary file to reduce its size.....and also convert it back from binary file to photo file for display purpose ..... please kindly post here if anyone have an idea or solutions......thanks First of all, you're in the wrong place. This forum is for programming questions Second - a photo file IS a binary file. What else would it be If they are bmps, turn them to jpegs. If they are jpegs, nothing is going to make them smaller, except making the actual pictures smaller. If that doesn't help, you need to find so ...Show All

  • Visual Studio my project name is not coming in Add Reference Dialog

    Hi, I have created a new project type along with a new language service. the output of my project is always a managed library. Now i want that i sould be able to add a project reference from other existing projects in the solution(a vb project or a c# project). My project never comes up when in the Add Reference dialog of other projects. Please help.   Thanks Rusty its working now. Its the same thing which I wanted. But when i am adding a reference to "my project" from any other project(say C# application). then an error is coming :- "A reference to "KProject2" could not be added. An assembly must have a 'dll' or 'exe' extension in order to be referenced. Please help. ...Show All

  • Visual C# Partial class inheriting from another partial class?

    Okay, lets suppose I have three pages - customsearch.aspx This is my main ASP.NET page. Lets suppose it has an asp:Literal called 'warningMsg' - searchtemplate.aspx.cs This is a 'base' class which defines some functionality and methods I want in all 'search' pages. It extends the 'Page' class, obviously. - customsearch.aspx.cs This extends the 'SearchTemplate' class, overriding a few selected methods and adding any custom ones I need. So first off, I do all of this using 1.1 style code behind: (only relevant code shown) - searchtemplate.aspx.cs [code] public class SearchTemplate : System.Web.UI.Page { public Literal warningMsg; //other controls here void Page_Load(Object sender, EventArgs e) { warningMsg.Text = "Page Load ...Show All

  • .NET Development regex newbie question

    despite reading many tutorials and such, spent 3 hours and no luck, i'm having a really hard time figuring out how to make this work.. the best i've been able to come up with is the following but it definately is no where close to working [^\"-_ !'.a-zA-Z0-9\040]+ I'm trying to figure out how to regex match the following: all alpha numeric characters, a-z A-Z 0-9 AND spaces are allowed AND the following chars are allowed: " - _ ! ' (double quote, dash, underscore, question, exclamation, single quote) i would very much appriciate a push in the right direction on this (Moderator: Thread Title changed from "regex newbie question" to "Basic Character Matching" for quicker thread understanding during a searc ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can one fill a polygon with a transparent color

    Hi all. I'm currently writing a GIS application in which I need to draw Polygons and fill these with a transparent filling so that the user to some extend is able to see the Map beneath the polygon. Is this in any way possible. Thanks Yes, this is perfectly possible - but it's very difficult for me to provide you with much more information as you've not given us much detail to work with Which languages/API's/technologies (e.g. FixedFunc or Programmable) are you using Basically it'll come down to using blending - under D3D9 you'd set the SRCBLEND and DESTBLEND render states and enable alpha blending. You can then provide constant, per-vertex or per-pixel alpha values that can vary the level of transparency. The SDK docume ...Show All

  • Windows Live Developer Forums "Ratemynuts" Worm?

    Can someone please help me out I received a message from my friend when I signed in that read: "lol, wtf! h t t p : / / ratemynuts. net/nuts.php msn=myemail@hotmail.com" With my own email address replacing "myemail" and there were no spaces (I just didn't want to make the link clickable, just in case). Has anyone heard of this worm I tried looking it up, but I couldn't find anything. Please help! -Sarah yea, i dont know but my friend got it and she had mcaffee and its screwing up her computer, so my advice is to just spread the word not to download it if it comes to you. Chances are if it comes to you its probably come to some of your friends. I hope this is useful... ...Show All

©2008 Software Development Network