Software Development Network Logo
  • Architecture
  • Windows Forms
  • Visual C#
  • Visual Basic
  • Visual Studio
  • SQL Server
  • Windows Live
  • VS Express Editions
  • Smart Device
  • Windows Vista
  • Visual J#
  • Visual C++
  • Game Technologies
  • Visual FoxPro
  • .NET Development

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

xizzy44

Member List

gdb
SemtexCharlie
stf-developer
Mukul
Keir Gordon
m_edmondson
Michael Kiss
perryf
BobN
LukaszJ
AlexB-007
David75
SaintJimmy
tdmwlm
schallm
Christopher Mac
Ax
Shekhar Mahadevan
Augie
SeRya
Only Title

xizzy44's Q&A profile

  • Visual Basic Moving an imagebox

    Hi I have a form and on that form is a imagebox, how can I make the image box move from the left of the form to the right of the form Add a timer to your form. In the timers event move the imagebox a little to the right. Disable the timer when the imagebox is at the other side of the form. ...Show All

  • Visual FoxPro 64-Bit Compile Error (language type must be specified)

    I am using the 64-bit version of the Visual C++ 7.1 libraries and build tools and I am receiving an error when compiling the assembly files which I have been unable to fix and am hoping that somebody will be able to tell me how to fix. The ML64.EXE compiler will not accept .586p or .model. I believe the language type needs to be in the PROC statement.           ml64.exe /c /Cx ".\asm\MD4_asm.asm" ...Show All

  • Visual Basic How to open binary file ? ? ?

    Hello all ! ! ! I need some help plz . . . I try to make an ActiveX DLL that reading a midi file content and will creating a new text file with the midi content. How can i open the midi content and make the new one text-midi file Thanks a lot . . . I'm not sure how to parse or build MIDI files, but I think you are looking for File Streams. If you search the MSDN library for System.IO.Filestream , you will probably fin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Microsoft.DirectX.DirectPlay.Server tutorials

    Does anyone know where to get tutorials on the Server class in Microsoft.DirectX.DirectPlay Preferrably in C#. I have been playing around a lot with the network classes in C# and have collected a small collection of resources that may help. http://www.ircomm.net/forums/558/ShowPost.aspx ...Show All

  • Visual Studio Pagebreaks before/after report item are not occurring

    Hello, In my report I have two list items, one following the other vertically. I am requesting through the properties dialogs that a pagebreak follow the first AND that a pagebreak precede the second. You'd figure I'd get at least one of them to happen. Well, neither pagebreak is happening. The same occurs in another report where I have two tables vertically in the place of the lists. Is this a bug or am I missing something ...Show All

  • Software Development for Windows Vista A couple of questions regarding WF...

    I've just recently begun researching WF and I am very excited about the possibilities it offers for making Workflow applications. I have looked at all of the examples I can find, and I have just started looking through the samples included with the SDK, but I cannot find an answer to something that I would consider pretty simple. Let's say I have a helpdesk state machine workflow defined for dealing with incoming help requests. How would I prese ...Show All

  • Visual C# vshost

    Hello I'm working with VS2005 Prof. I installed it on my local-drive, but my Projects are on a network-drive (mapped via "net use p: \\server\share"). I make a new projekt, put a database (via Database-Solution), a Dataviewgrid and a Navigatorbar on the Form. When I starts the program the first time everything is OK. But when I change something and try to debug the program again, then I get an errormessage The operation could not be c ...Show All

  • Smart Device Development listchanged event on BindingSource

    The list changed event on and I binding source is fired only when i execute de endedit method and i have made previusly a change in the binding list(moved,delete,inserted etc..). Does anybody know a way to notice that a change its made in the bindingSource list and after that i could call the canceledit method to restore my list. notice that if I call the endedit method the cancel edit wouldnt restore my bindingsource becose the change ...Show All

  • Visual Basic VB2005 and webbrowser control

    Hi, I am trying to use the webbrowser control as a list view for viewing files on the disque. My main purpose is to use build-in fonctionnalities like thumnails view withaout having to write code (reinvent the wheel). It works great but I don't know how to programatically control the way the browser display files. I mean, how to control the "view" property (list, details, thumnails, etc) of the web browser. I also would like to remove that menu ...Show All

  • Visual C++ msvcr80.dll Problem

    Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin I am having the same problem... I even uninstalled i ...Show All

  • Visual Studio How to pass Report parameter in ReportViewer Control

    Hello Friends, I am using VS2005. how to pass the Report parameter in the reportviewer control I am using ther Remote mode for the report. till now i know that i can set the parameter is using the bellow method. This SetParamters method only accept the parameter like Microsoft.Reporting.WinForms.ReportParameter type. this .reportViewer1.ServerReport.SetParameters(). But can't findout how to pass that parameter in the method. please help me. Nil ...Show All

  • Visual Studio Express Editions Question about errors in Swimsuit Calculator project

    I just converted a second project to VB 2005 EE format from VB 6 called "Ami Mizuno's Swimsuit Calculator!" and there were 2 errors in it which are the following: ================================================================== Error 1 'Public Event Load(sender As Object, e As System.EventArgs)' is an event, and cannot be called directly. Use a 'RaiseEvent' statement to raise an event. C:\Visual Basic Projects\Ami Swimsuit Calc ...Show All

  • SQL Server Is (local) really local?

    I have one outstanding problem to address before I can ship my product. In all my searches, I have not seen this problem mentioned. It seems that you guys are my last hope. Sorry if it has already been asked and answered. When connecting locally to a named SQL 2000 instance (SP2, SP3, SP3a, and SP4), I am noticing a lot of network traffic that I can't explain. It happens on every machine I've tried. Here is the setup: Conn. Stri ...Show All

  • Visual C++ console from form

    Hi! How can I call a Console window from a form application Ok: I dug a little deeper and I think I know what is going on here. The problem is that by-default a Windows Form application does not have a console associated with it: so any calls to Console::WriteLine will send the output into a black hole (\dev\null). The case where the application will work is if you start it from a console window because in this case the application will ha ...Show All

  • Smart Device Development sqlcedatareader - how to detect a zero hit?

    Hi! I am querying a sql ce server database on a pocket pc receiving results as a SqlCeDataReader. How can I detect whether my query returned any rows at all withouth moving the pointer (Read()) and without having to execute a second count(*) query. Any clues kolya Actually SqlCeResultSet class has a "HasRows" property in NETCF v2. So you can just use that if you are currently using v2. I just tried it out and ...Show All

©2008 Software Development Network

powered by phorum