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

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

ReneeC

Member List

amagino
He is Cool
SachaVDK
Gulden
GlennZarb
Angelo Fraietta
Luis Simões
Martinp23
AmitKGupta
zhihao
NeW2VB
Safar
Suresh .M.V
James Bannan
Daikoku
Keith Chapman
ejn76
Erik Bertrand
Wolfgang Kamir
Barnaby
Only Title

ReneeC's Q&A profile

  • .NET Development how to retrieve from existing file

    hi, I'd like to get data from existing file. I downloaded yahoo! logo to my computer. Then I go back to Visual Studio, go add item, existing item, then yahoo.jpg. Then go to Form2.cs I'm trying to something like shown below; m_BrowserLogoPictureBox.Image = Image.FromFile("yahoo.jpg"); But if I run it, it says "FileNotFoundException". When I test the other project, I successfully compile. I though I did the same thing but it doesn't compile. If anyone can help, I appreciate it. Thanks. Thank you for the tip. I could surely get logo data if I did what you told. It's a bit difficult for me to understand the code from "Image.FromStream(System.Reflection.Assembly.GetE ...Show All

  • .NET Development Problem retrieving Serialized Data

    Actually, I'm serializing a Class (marked with [Serializable()] attribute) with a BinaryFormatter, but the problem is, when the thread that serializes the object is disposed I can not retrieve the Serialized data !! ... But right after Serialization I can simply retrieve the serialized graph !! ... And even when the program is disposed and spawned again, In case of calling BinaryFormatter.Deserialize(stream serializationStream) I'll get an instance of the serialized object but all of the properties are nulled !! ... I'm sure that I'm missing something ... !! Here's the Implantation of the BinaryFormatter : public static System.Runtime.Serialization.Formatters.Binary. BinaryFormatter bf = new System.Runtime.Serializati ...Show All

  • SQL Server Thanx for response.

    Hi, I have one problem in my project. Generating the report plz help me. I have one table called Emp, which consists of fields, empid,tdate,attn,reason. Emp ---- empid | tdate | attn | reason 2281 6/3/2006 Present null 2282 6/3/2006 Tour Hyderabad 2283 6/3/2006 Present null 2281 6/4/2006 Present null 2282 6/4/2006 Present null 2283 6/4/2006 Tour null I want to generate a report as given below based on the date submitted by the user. Frm Date: 6/3/2006 To Date: 6/4/2006 empid Present Tour Absent No.of working days 2281 2 2 2282 1 1 1 2283 1 1 1 Please write the query and reply back to m ...Show All

  • Visual Studio Documentation for Scc config

    I'm trying to find out decent documentation from MSDN to Scc configuration presented in .sln and .prj files.. It seems that I'm quite often need to edit them manually so I need decent documentation.. typical sln: SccNumberOfProjects = 2 SccLocalPath0 = . CanCheckoutShared = false SccProjectUniqueName1 = IED2LDConverter\\IED2LDConverter.csproj SccLocalPath1 = . CanCheckoutShared = false SccProjectFilePathRelativizedFromConnection1 = IED2LDConverter\\ typical prj <SccProjectName></SccProjectName> <SccLocalPath>..</SccLocalPath> <SccAuxPath> </SccAuxPath> <SccProvider></SccProvider> So I need good descriptions of these..... Hi, The problem is that when I need t ...Show All

  • Visual Studio Condition for output (verbosity) level

    Hello, the Exec task does not have a Condition attribute. I want to execute a command producing diagnostic info only when verbosity (importance) is set to high. How can I accomplish this (I am looking at wrapping the exec task in choose/when but I cannot find how to test on verbosity in the condition) Best regards, /marcus Hi Marcus, Tasks can't see logger verbosity. Verbosity is purely something the engine passes on to loggers, they can choose what they do with it. The reasoning is that if tasks understood verbosity, I couldn't write a logger that logged everything on low verbosity, for example. Also in future verbosity might be per-logger. I suggest that you have some other toggle for your exec t ...Show All

  • Software Development for Windows Vista VIDEOINFOHEADER does not update image dimensions

    I have some DirectShow code that loads video clips and plays them onto OpenGL textures. The problem I have is that the VIDEOINFOHEADER returned from the SampleGrabber does not update the bmiHeader.biWidth when changing from a 640x480 to a 720x480 clip. I release the SampleGrabber and all DS filters before rebuilding the chain and clear out the AM_MEDIA_TYPE structs before calling the SampleGrabber's GetConnectedMediaType method. I have the Windows Server 2003 SP1 Platform SDK, have built the DS samples as debug and develop on XP SP2. Any insight into this problem would be greatly appreciated. This may actually be a codec specific problem. I'm using ffdshow for MJPEG decompression and it has this problem. ...Show All

  • Visual Basic Need some help please. Not able to debug!!!!

    When I try to debug, VB goes therough the usual steps, but the project never appears and no error message comes up. Any ideas as to why What can I do It looks as if it is going to load and then nothing happens, it will let me debug again without stopping, as a matter of fact, it doesn't even appear that I have run the program at all. This is all that appeared in the build output window.  I am a lowly high school teacher, so please help!!!-- ---- Build started: Project: WindowsApplication1, Configuration: Debug .NET ------ Preparing resources... Updating references... Performing main compilation... Building satellite assemblies... ---------------------- Done ----------------------     Build: 1 succeeded, 0 failed, 0 ski ...Show All

  • Visual Studio Express Editions idiots code book

    hi everyone, i am a beginner to vb as are many who post here, i am putting together a book that explains all code statements and explains how they work and what they are doing better then some of the books i have read. i there is anyone who can submit their error mesages and solutions that will be great, also i will be posting all kinds of command questions as i have already done to others on other posts and i would be gratefull for yoiur explanation comments. i want to start with accept changes why do i use it and wehn dio i use it, what is it for thanks chaza, what books do you already have What about them don't help you to learn visual basic It appears to me, that you don't really u ...Show All

  • Microsoft ISV Community Center Forums Extracting an embedded document within a cell in a table in a Word document

    Hello, I need to extract and save files embedded in cells of a table in a Word document. I have bookmarked my table, I already have a a macro to find the table based on this bookmark and parse the content of it, except the embedded files inside the table cells. Here is how I parse the cell content: 'I find my Table in the Word doc based on a bookmark Set idTable = RetrieveTable("myTableBookmark") XlRow = 0 XlCol = 0 WdRow = 1 WdCol = 1 'Copy each cell in XL Workbook (CharCleaner prevents multiple lines in a Word table cell to be interpreted as multiple rows in Excel) Do     ' --> HERE I NEED TO STORE ATTACHMENT ON A REMOTE FILE SYSTEM IF THERE IS ONE IN THE CELL     Wkb.ActiveSheet.Ce ...Show All

  • Visual FoxPro Some thing like edit box with picture control support???

    Hi there experts. How can I make a control like editbox where can I type in and phrases like ":)" will automatically change into o graphical picture(best will be gif file). I mean something like. Or is there an control which can do it without creating a difficult code Thanks in an advice . Bye I see... Is there another control like editbox, that support displaying animated gif files Maybe a paid control from internet I was looking for some controls but unsuccessfuly... :( ...Show All

  • Windows Forms StringCollection.ToString?

    I want to show the contents of a StringCollection in a RichTextBox,and i used StringCollection.ToString() which i would expect to work,but it doesn't.It shows the class name.I'm confused.How to convert a StringCollection to string or array One way would be to inherit the StringCollection class and then override the ToString function to return what you want returned. You could also add your own ToArray function if you needed that. You might also look at using Generics instead to see if they're a better fit for your application's needs. ...Show All

  • Visual Basic System.Net.Sockets.SocketException was unhandled

    Can anyone help with fix this error. I am new to VB.NET System.Net.Sockets.SocketException was unhandled ErrorCode=10022 Message="An invalid argument was supplied" Source="System" Code: Imports System Imports System.Windows.Forms Imports System.Net.Sockets Imports System.Net Imports System.Threading Imports System.Text Public Class Form1 Public Listener As Thread Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load CheckForIllegalCrossThreadCalls = False End Sub Public Sub Run() Dim len_receive_buf As Integer = 4096 Dim len_send_buf As Integer = 4096 Dim receive_buf() As Byte = New Byte(len_receive_buf) {} ...Show All

  • SQL Server Using IN and LIKE together (multi-value startswith)

    I use Oracle as the database and my problem I faced occured on the Crystal Reports' to SSRS migration. We can select multi-value for our parameters and I declared the parameter in the pl/sql query as below. Let's say our available values in the list are: BIOS DBH ERPA GUNDEM IBRAHIMA We select BIOS and ERPA SELECT * FROM PROBLEM_TABLE WHERE CLOSED_BY IN (:paramclsby) There is no problem with that query, it queries the table with the field CLOSED_BY includes BIOS or ERPA. But there are also records the field contains starts with ERPA1, BIOS-AS etc I want to get these records but I cannot produce the query. In Crystal Reports, the Select Expert has expression; {PROBLEM_TABLE.CLOSED_BY} startswith ["ERPA&quo ...Show All

  • Visual Studio Express Editions Visual Studio C# problem

    Hi All, I have an issue with Visual studio 2005. I add a private ArrayList arrayList to my main form class. This arraylist is used to dynamically change collection values of certain toolbox items used on the form. However, after co0mpiling a couple of times, Visual Studio removes all statements that include 'arraylist' except for the the declaration of arraylist. This has happened many times now and I find myself replacing the same lines of code continuosly. I htink that this is pretty strange and I am wondering if anyone knows how this can be resolved so that 'arraylist' isn't removed Thanks, Rachad Are you by any chance writing this code in the Form1.Designer.cs file   This is one way that ...Show All

  • Software Development for Windows Vista InkCanvas exception

    Help! I am using .NET 3.0 Beta 2 and VS2005 on Windows XP Tablet PC 2005 edition. Whenever I try and use the <InkCanvas> element I get an unhandled NotSupportedException as soon as the mouse/pen is moved into the ink canvas area. Full details of xaml used and exception below. The exception occurs in the app.Run method. < Grid >< InkCanvas /></ Grid > System.NotSupportedException was unhandled Message="DLL version not correct." Source="PresentationCore" StackTrace: at MS.Internal.HRESULT.Check(Int32 hr) at System.Windows.Media.FactoryMaker.get_ImagingFactoryPtr() at System.Windows.Media.Imaging.FormatConvertedBitmap.FinalizeCreation() at System.Windows.Media.Imaging.Fo ...Show All

©2008 Software Development Network