Software Development Network Logo
  • Windows Forms
  • Microsoft ISV
  • Game Technologies
  • Visual J#
  • SQL Server
  • .NET Development
  • Visual FoxPro
  • VS Express Editions
  • Visual Basic
  • Visual C#
  • Windows Live
  • Windows Vista
  • Architecture
  • Visual C++
  • VS Team System

Software Development Network >> Firas Saltaji's Q&A profile

Firas Saltaji

Member List

kmhawkes
Luiz Fábio
tculler
andreipou
Danny_40
husseiny
bursteguy
scudrock
Todd Bannar
Aleksandar Vujic
SAGautam
Joshua Jon Williams
Harris YER
CWeeks
D.D.R.
GROTH
beatriz_da
JayR
RajanikanthM
Rob C
Only Title

Firas Saltaji's Q&A profile

  • .NET Development application idle state handling

    hi, I'm writing an application that display in .net MDI (c++) style 3d models (from my own file format), with some animation in it, so I need to handle my application idle state. I can write idle event handler, but it's not exactly what I need, because it only execute once when application turns to idle state. I need some function that is executing all the time when idle state is active, or I need to know when application is going to exit idle state, in this case I could make some loop and check when I need to break this loop and end execution of idle state handler. or maybe there is some other solution thanks for reply. Hello szary, ...Show All

  • Visual C++ creating exe's and running them

    this is probably an extremely obvious question... but when i type in my code How do i run it I have tried "building" my project but then i don't know how to run the app once it has been built/ Hmmm That's weird man. And the project built fine   Typical MS products. The whole thing has me pulling my hair out. Programming in Linux is so much easier. I have found that building the Help contents code examples consistently provokes unexplicable errors. I think I shall be returning to Unix soon. ...Show All

  • Software Development for Windows Vista Questions about my ASP.NET scenario

    I have some simple question about my asp.net scenario. My web app has to manage a thesis request, from a student against a teacher. For the moment I consider a simpler view of the workfow. A student can do a request of a thesis and a teacher can approve or reject the request. We consider only this simple scenario. The questions are: 1)I have something like StudentService and TeacherService. Do I add these services at the runtime each time before a workflow instance is started (only when the student request the thesis) or I have to add them to the webconfig of my web project and then siply do a wfr = WorkflowRequestContext.Current.WorkflowRun ...Show All

  • Smart Device Development System.Net.HttpWebRequest

    Environment : Windows CE.NET 4.2 .Net Framework 1.1 (without SP) Visual Studio 2003 If you used System.Net.HttpWebRequest and it worked fine, in the following situation, post me a message, please. (I used the samples in MSDN) Situation : POST of 60 bytes (alphanumeric bytes) to a website, LAN, HTTPS Scheme. Two different problems arised when i tried to write to the Stream returned by HttpWebRequest.getRequestStream() 1. In the emulator i got 10107, this is the problem: 10107 WSASYSCALLFAILURE A system call that should never fail has failed. *LOL This error is intermitent... the POST works mostly. 2. In the devi ...Show All

  • Visual Studio Express Editions Good and Free Tutorials

    hi, i hope if anyone encounter a good free tutorial for  C# to share it with us here in this thread.     very good tutorial for OOP's concepts very well organized tutorial for C# basics Index for many tutorials online arranged in groups this is the best free dictionary i found for computer terms note there are many tabs in the result but most of computer terms in technology or wiki   this is a list of terms that used in computer field  i still prefer the previous one hope that will be helpfull I found this resource to be very helpful.     http://cs ...Show All

  • Visual C# Serilization of a generic List of a custom type, how?

    Well, hi all. This is my first post here, since I haven't been able to find the required information anywhere else, so I will give it a go here... I am trying to make a generic list of a custom type and serializing it. Sounds simple but apparently its not. I have now boiled the problem down to a very simple example, and tried to get consistency in the problem. The problem occur every time the assembly holding the custom type is rebuild. Naturally, I can make a list of some .NET type and it works, and I think thats because the .NET assemblies are not rebuild in between. Is it a feature in .NET that it is not possible to do generic list ...Show All

  • Windows Forms Non border form control box

    hi ppl.. i have a non boirder form and im drawning the title bar an the borders my self,, but i dont have a clue of how to get the control box.. i mean in the windows bar u can see all the windows u have opened, and when u right click u get a menu displayed with options like close, maximize , restore,, but when i use non border form i dont get this,. is there any way i can get it mig16 Please reserve the C# forum for questions related to the C# language. Questions related to Windows Forms are more suited for the Windows Forms forum. I'm moving your question to the Windows Forms forum where someone can prov ...Show All

  • Software Development for Windows Vista How can I start instalation a Windows Vista os

    How can i start instalation of Windows Vista OS. I burn a DVD image, but i can not open it. I can read only a README file. What shall I do What does the Readme file say ...Show All

  • SQL Server SP_MONITOR DOESN'T WORK PROPERLY ON SQL25K TOO

    When you launch this sp appears a warning, as sql2k: Msg 8115 , Level 16 , State 2 , Procedure sp_monitor , Line 99 Arithmetic overflow error converting expression to data type int . Hi there, Does that error message keep appearing every time you execute sp_monitor or has it only appeared once Has it been a long time between executions of sp_monitor Remember that sp_monitor will show statistics for certain counters that it gathered between it's execution times. I've seen similar on SQL Server 2000 as well. When there was a long period between the times when sp_monitor was executed, the next time tha ...Show All

  • SQL Server Sql server Express edition installation (OS Windows Home XP)

    Hi, I am trying to install SQL Express on Window Home XP and SCC is returning the following error: The SQL Server Configuration Checker cannot b execute due to WMI configuration on the machine ..... Error 2147942405 (0X80070005). I tried running the following batch file which I believe resolved the same issue that someone else raised earlier (though I am not sure whether the OS was Home XP) Will upgrading from XP Home to XP Professional (academic version) help me install SQL express successfully> The Batch file I ran looks like this: FIXWMI.CMD ------------------------ @echo on cd /d c:\temp if not exist %windir%\syst ...Show All

  • .NET Development Howto: Setting DataSource Property of CheckedListBox?

    Hi! Is thers anyway to set the datasource property of checked list box, because in its documentation this is public property but I can't find it in intellisense. Has it to do something with Express Edtion of Visual Studio or MS forgot it or is it by design. I want to able to set two properties namely DisplayMember and ValueMember, since I can't set datasource I don't know anyother way of doing this. If someone else knows how to do that, then please do come to my aid thanx Sohail It doesnt show up in intellisense because, according to the documentation, "This property supports the .NET Framework infrastructure and is no ...Show All

  • .NET Development "Collection was modified; enumeration operation may not execute." error

    Hello I have the following foreach loop: foreach ( string variable in _variables.Keys) { double fx = ObtieneValorParametro(variable, poliza, periodo); if (_variables[variable] == null ) _variables[variable] = fx; } Where _variables is of Dictionary<string, object> type. The only modification to the collection I'm making is to change the value of an element from null to a value, as you see. I'm not removing nor adding elements, so, why I receive that error I tried by using a traditional for loop, but since the collection is a Dictionary<string, object> collection I couldn't access the elements ...Show All

  • Visual Studio 2008 (Pre-release) WinFX Beta 2 - ScreenSpaceLines3D: where did they go?

    As the subject states: WinFX Beta 2 - ScreenSpaceLines3D: where did they go I really like the speed of beta 2 but this is holding me back now... Thanks Are you serious ! If so, do you have any suggestions how I should continue with my 3D editor: http://blogs.infosupport.com//images/blogs_infosupport_com/ernow/151/o_Screenshot2.jpg As you can see I need a replacement. I thought about reflectoring the old CTP ScreenSpaceLines3D but soon found out they are dependent on some serious internal classes... Any suggestions Please ... I'll beg if I need to... ...Show All

  • Smart Device Development Dim WithEvents PicBoxArr(3) as PictureBox

    Hello! We are coding in Vb.net on the .Net Compact Framework 1.0, for a Pocket PC application. It is required the we use an array of Picture Boxes. Then again we need to handle their events (DoubleClick,MouseUp etc.) Dim WithEvents PicBoxArr(3) as PictureBox ErrorMessage : "WithEvents" variables cannot be typed as Arrays. How does one associate events with an array of PictureBoxes Thanks, You can not. You should hook up event handlers to each PictureBox in the array programmatically using AddHandler keyword. Please see this for samples: http://www.thescarms.com/dotnet/EventHan ...Show All

  • Smart Device Development TCPClient Connection Emulator vs. Device

    Hello, I am working on a project which enables a Pocket PC device (Pocket PC 2003) to connect to a server via a TCP/IP connection. Running the program from the emulator displays an error message about not being able to connect. The errror code is 10065. The error message is: System.Net.Sockets.SocketException: A socket operation was attempted to an unreachable host If I run the same program on the device itself then it works as expected. I am using Visual Studio 2005. Here is the sample I am trying to get to work: Try Dim Message As String = "SOME MESSAGE" Dim client As New System.Net.Sockets.TcpClient( ...Show All

©2008 Software Development Network