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

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

Rollin561

Member List

artoaper
Stubey
Aaron Oneal
corbin
R_S_Chandrashekar
Marko Tekavc
RingOfFire
Deanboy
Flam3h
Vinci
porters
english_d
Andreas Asterlund
Martin00
Argenta
AndrewBadera
overthetop
Priyanka Choughule
EIUTYRONE
Louis Y
Only Title

Rollin561's Q&A profile

  • .NET Development Saving a website WITH images by using the system.net.webClient

    How can I save a website including the imagefiles an not only the htmlfile by using the system.net.webClient I tried a few ideas but no one really worked well. No, you don't replace the strings in the HTML file. What you need to do is parse that html file, get where exactly the .jpg are stored and then issue separate request for downloading each of those jpg file Mariya ...Show All

  • Gadgets new XMLHttpRequest() - I'm at a loss

     I have programmed a gadget and it works great. I uploaded it to the Live Gallery and then I tested it and it doesn't work anymore. var xml_request = new XMLHttpRequest();  xml_request.open("GET", url, true);    <----- breaks here! the url variable is valid. It just stopped working all of a sudden with no code change. All the other gadgets in my sidebar can access the internet just fine. I have no idea why it just stopped working. If I replace it with: location.href = url; it opens the url in IE just fine. It's possible that the .gadget file has been blocked due to being from the interwebs. Find the file, right-click and go to Properties, and look at the botto ...Show All

  • Visual Studio Team System TF31001 and TF31002 Errors on TFS

    Hi, Logging on TFS as TFSSetup for creating team project causes the error TF31002 when trying to connect to available TFS. The TFS is online, name(TFS),port (8080) and protocol (http) are correct, also the password is correct because i'm logging on the TFS via Remote Desktop with the same Password. When trying to log on the same TFS with another name ( TFSService ) and trying to the the same action (creating Team project), the error TF31001 occurs with message (The request failed with HTTP status 404:.). This occurs also when trying to connect to the available tfs. Anyone can help! Thanks a lot! N.B.: Trying the server connection with http://localhost/default.aspx works correct (the share point server portal is displayed!!!) ...Show All

  • Visual Basic save option on the MenuStrip

    I have already written code to save a items from my form by clicking a button. The code can be seen below: Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click 'Save the order and display feedback Dim Details As New ArrayList Details.Add(cbxItem1.Text) Details.Add(txtQty1.Text) Details.Add(txtPrice1.Text) Details.Add(cbxItem2.Text) Details.Add(txtQty2.Text) Details.Add(txtPrice2.Text) Details.Add(cbxItem3.Text) Details.Add(txtQty3.Text) Details.Add(txtPrice3.Text) MessageBox.Show(Controller.Save(txtID.Text, txtName.Text, txtDate.Text, txtStreet.Text, txtCity.Text, txtState.Text, txtZipCode.Text, Details)) lblFoodTotal.Text = Order.Foo ...Show All

  • .NET Development Embarrassing Problem with inserting record...!

    Hi How can I insert record R1 to Person Table Record: R1 ID: 28 Person_Id: 28 Name: Sara Family: Iranmanesh Table: Person ID: Autonumber Person_Id: number Name: Char[30] Family: Char[40] Note: This table belongs to an mdb file. Regards, Elham I cannot insert that record because there is a recursive relationship in my table. So I have to insert that record without Person_Id. I mean I must leave it with null value. And then try to update that record and set the Person_Id to its value. These processes might be occurred in a procedure. If I wanna insert that record with null value in Person_Id you must change some op ...Show All

  • Smart Device Development Where is the stand alone emulator now?

    The link that used to point to the stand alone emulator has been replaced by the "Windows Mobile Emulator Images" page. http://msdn.microsoft.com/mobility/windowsmobile/downloads/emulatorpreview/default.aspx It lists the Microsoft Device Emulator as being available, and links further down the page to " >> Coming Soon! Download Microsoft Device Emulator 1.0 " The stand alone emulator has become a really useful tool for many people. Where is it now OK, good progress. Based on the above information, the WM5 emulator can be run. Should I be able to get a WM2003SE emulator running using the "Emulator Images for Windows Mobile 2003 Second Edition software for Pocke ...Show All

  • Smart Device Development Newby question about Syncronization

    Hi, I made a small application to a PocketPC 2003 that creates a xml file. I want to copy that file to a specific folder in a computer... Anyone knows how can I copy that file (by code) to the computer Thanks for your help. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Extending the content pipeline for model loading...

    Hi, I'm sorry if this has been answered before, I've searched a bit and not really found anything too helpful. My basic question is how do you go about extending the model loading pipeline I found this example in the help files but it did not want to compile: [ContentProcessor] class ScalingModelProcessor : ModelProcessor { public override ModelContent Process( NodeContent input, ContentProcessorContext context) { MeshHelper.TransformScene(input, Matrix.CreateScale(10.0f)); return base.Process(input, context); } } I put this in the spacewar starter game, and got some errors like so: Error 2 The type or namespace name 'ModelProcessor' could not be found (are you missing a using directive or an assembly refer ...Show All

  • Windows Live Developer Forums i need some help on nick changing

    the problem is i can't change my display name in windows live messenger, and my current display name is my email address, it just remains the same display name no matter how i change it. just recently, i tried to log in my account using windows messenger. i change my display name there and it did work. however, when i back to windows live messenger, i encounter the same old problem again. by the way i can neither change the personal message in windows live messenger. anyone know why on earth does this happen oh...btw.. i changed my contact card information and then i was able to change my display name and personal name.... thanks for the tip :D ...Show All

  • Visual C# Exported Class

    Is there any way using the VCCodeModel to obtain if a class is declared to be exported in a DLL #define TEST __declspec(dllexport) class TEST { }; ...Show All

  • Visual Studio UNC path of a local folder on Server??

    I have installed VSS 2005 on a WinXP Pro box (Server). I created a database at C:\VSS. I open SSAdmin, Server > Configure > Enable SourceSafe Internet for this database. It says, open the DB in UNC path. The folder is shared as "VSS". It is not accepting the "VSS" string in the create new database wizard.  It says, its not a valid UNC path. What do I need to give the UNC of a folder which is in the local file system of Server and shared as "VSS"   I tried "<computername>\VSS".. its not working because the server is looking for the computer on the network while its the name of the server itself. Sorry if I am dumb, but I couldn't find any documentation on this. TiA. I am trying to access this VSS folder from ...Show All

  • Visual Basic How to use cookies with inet.execute [msinet.ocx]

    I'm having trouble setting cookies while using the execute subroutine in the msinet control. msinet.execute " http://www.mywebsite.com/ ", "POST", "variable=value", "Badname: blarrr!" & vbNewLine & "Cookie: name=value" I've tried all different ways but can not figure out how to make msinet use the cookies I put into InputHdrs. All of the headers I put are used except cookies. I've been trying to find a solution for hours.. Any help would be greatly appreciated! ...Show All

  • Visual Studio Express Editions Drop down box question

    I have a drop down box that is populated via SQL with department numbers ie 0110,0115,8903,8905,8910,8911. I want the user to be able to when they start typing lets say "8" I want all of the departments that start with 8 to show up in the prodown box. and lets say further along when the get to "891" only two will show up. Now if they were to start typing a number that does not exist like "7" nothing will show in the drop down box. I have seen somthing like this in a MS Access box, Is this possible to do in Visual Basic Thank you sorry i think i didn't understand your problem well..let me see if i understood it this time...so you want to see the existing items in your dropdownbox that starts with t ...Show All

  • Visual Basic Val() function returning an error

    I am trying to use the Val() function to filter what is supposed to be numeric input from a textbox.  In testing various input combinations I came across the strings that generate an Invalid Cast Exception.  I am using VS2005 SP1 on both XPSP2 and Vista. This behavior is not documented in the Val() description.  Does anyone know why "%" and "&" would cause this error Ex: Dim test as double test = Val("6.5%") test = Val("6.5 %") test Val("6.5&") All of these patterns will cause the error.  The basic pattern seems to be a number that has at least 1 decimal place followed by either a "%" or a "&".  I have not found any other special characters that generate the same error. Tom ...Show All

  • Windows Forms PropertyGrid Reset context menu

    Using the property grid and custom PropertyDescriptors to gather user settings. All works fine - except where is the "Reset" context menu when right clicking a property - as when using the property grid in a designer. Why missing when used in application code I'm pretty sure I'm providing the correct attributes etc. Many thanks, Guess I was treating the PropertyGrid as a 'packaged control' and expecting it to provide the context menu - as you or I would when distributing user controls for example. I'm assuming ResetSelectedProperty solved the repaint problem Ok, I'll give it a context menu and post back. Again, thanks. ...Show All

©2008 Software Development Network