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

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

fibonacci1123

Member List

Banhnam
HScottBuck
Alex Bibiano
tremault
Pseudocode
yxrkt
Michael_P2234
Nikkon
Bodylojohn
Quimbo
Dietz
phil9772
Kevin Dente
Evan Mulawski
Ole Brydensholt
Erkan Yilmaz
MrBrilliant
Mallyk
Sachya
Jeffn
Only Title

fibonacci1123's Q&A profile

  • SQL Server VOTING/RATING SYSTEM: HOW TO ADD POINTS AND UPLOAD SQL VALUE?

    I am trying to build a voting system. Website visitors will rate a pictures from 0-10. This value should update the amount of points already stored is SQL. I think the way to do it is passing the value of a field to a varible, performing the operation and updating the database, but I don't know how to capture a value in Sql and pass it to variable... Does anybody there could post a piece of code or point to a link where I could find this information thanks OK, what kind of code snippet do you want The one on the data access layer, or the one on SQL Server I impleneted a coting system on my site which takes the indiviual vote, adds that to the Votation table and whenever someone is requesting the Average on the particular Screencast ...Show All

  • Visual C++ IBindStatusCallback::OnDataAvailable and IStream

    Hi I am looking for implementation of IBindStatusCallback::OnDataAvailable and IStream My application is MailServer application. When a data is downloaded it should be downloaded in the chunks of memory using IStream. IBindStatusCallback::OnDataAvailable callback will be used to bind and check the remainders of data. Please get back ASAP. Thanks Alpana Dhole Please see h ttp://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1230522&SiteID=1 Thanks, Ayman Shoukry VC++ Team ...Show All

  • Windows Forms datagridview with dateedit column

    Hi, how to specify a column as dateedit like combo,textbox thanks venp-- Hi here is an datagridview calendar column sample; hpoe fit your requiirement:) http://dzaebel.net/CalendarColumn.htm Best Regards! ...Show All

  • Visual Studio 2008 (Pre-release) PropertyChanged not always honored?

    Here's an issue from Windows Forms that appears to have crept into WPF as well. Any solution/workarounds are welcome! Consider a class with a property that enforces a business rule - such as that the value must be all upper case: public class Test : INotifyPropertyChanged { public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; // ... private string _data; public string Data { get { return _data; } set { _data = value.ToUpper(); OnNotifyPropertyChanged("Data"); } } } Bind this to a TextBox and type in a lower-case value. The user continues to see the lower-case value on the screen, even though the object obviously has an upper-case value. The PropertyChanged event is bliss ...Show All

  • .NET Development AppVerifier errors understanding

    Hi, I'm trying to make an application pass the AppVerifier test, but I don't understand the resulting error messages. Perhaps someone can help me to understand the error, or even better, to debug it :) Here is the XML : - < avrf:logfile xmlns:avrf =" Application Verifier " > - < avrf:logSession TimeStarted =" 2007-01-26 : 16:51:44 " PID =" 5404 " Version =" 2 " > - < avrf:logEntry Time =" 2007-01-26 : 16:52:06 " LayerName =" Locks " StopCode =" 0x209 " Severity =" Error " > < avrf:message > Critical section over-released or corrupted ...Show All

  • Visual Studio 2008 (Pre-release) creating complex lookless controls

    Hey, What would be the best practice for collecting events from the template controls for a lookless custom control. Say I have 3 text areas on the custom control whose text is bound to some properties. That part is easy enough to do, but say I want to know if any of these areas have lost focus, and which one lost the focus Since these controls that are holding the text are defined in the template I don't have an easy way of discriminating between them. I can handle previewlostfocus or whichever, but to determine which was the control that lost fous means to me I'm left with the rather unsatisfactory solution of relying that they have some identifier in their control name, or something of that nature. Is there any way of rerouting an even ...Show All

  • SQL Server Problems with merging raw files opened as variables

    I have a group of parallel dataflow tasks that produce raw file outputs that I then want to merge together in a subsequent task. I use variable names for the raw file outputs because I want to the path to the files to be easy to configure for different deployment environments. Therefore, I've got a package scoped variable called pkgRawFileFolder and in each of my parallel tasks my raw file destination is derived from another variable scoped at the task level, called tskRawFileOutput which is evaluated as an expression equal to [User::pkgRawFileFolder]+"/RawFile_1" or similar (the name of the rawfile isn't important as long as each parallel task uses a different name). In the container task that performs the merge, I want a Foreac ...Show All

  • Visual C++ Comiple Options?

    Can Some one give a discription or point to a artical that discribes about compile options normally I just use build(F6) and all works, but it won't anymore. I have a C++.NET project and I am trying to import a dll in it using syntex #using "mydll.dll" however I get an error that I need to complie my C++ Main.cpp file with comiple option /clr. but when i right click on main.cpp and edit the property to comiple with /clr option i get an error /RTC1 and /clr are incompatible. I disable /RTC1 and i get error for /GM and it goes on without ending...... wut do i need to know to figure out how i compile this any useful links thx Sameep Hope this helps: http://msdn.microsoft.com/library/ ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. missing Direct3D device???

    Help! I'm working on my first XNA Project: Learning how to work with 2D images/sprites. I follow the directions completely and I get this in the Main() module when it tries to access the Game1 module: Could not find a Direct3D device that has a Direct3D9-level driver and supports pixel shader 1.1 or greater. I tried downloading the Direct3D 9.0 SDK extras package, but it didn't help. I'm stumped. Dan No, Pixel Shaders are required because XNA uses them as a foundation. However, why are you so worried Graphic Cards that support Pixel Shaders (3.0) are only like $50.00. Here is one I found on amazon, but every card is around this price, and PCIe cards are even cheaper. http://www.amazon.com/eVGA-GeForce-6200-256M ...Show All

  • Windows Forms Tab control and Bound textboxes

    I'm not sure if this is the right place for this question, but I'll try it anyway. I've got a tab control with textboxes on different tabs that are bound to a dataset. I am copying a row by using the loaddatarow method. Then I set the textboxes to display a few different values that what the row I copied had in it. This works, but when I change the tab before saving it, its like it reloads the textboxes to what is in the dataset. How can I keep it from 'reloading' these textboxes I want it to be enabled though, because I want to be able to view whats on the different tabs and also be able to change some of the values in the textboxes. ...Show All

  • .NET Development A specialized String.Split but on a location instead of a character

    I am looking to split a string at a specific character count and return an array of strings from that, with the smarts of not splitting on a word.... The functionality would somewhat mirror string.Split which is used to tokenize, but instead of a character it would have a hard minimum line size. Any existing functionality to tap into or thoughts on doing it advTHANKSance Thanks James, My post could use tweaking to make it a better design document <g>. Word wrap is the key as with laying out text on a page so to speak...one would not want chop a word in the middle but move it down to the next line. So I guess the rule would be no more words over the line size with the knowledge that lines returned would be smaller or equal to the ...Show All

  • Visual Studio Express Editions Following item failed to download

    Setup has stopped because the item listed above could not be downloaded... It dows that trying to install any Visual Studio Product. Reuomi wrote: I am having a similar issue with VC# express. The error I recieve is below. The following item failed to Download: Microsoft Visual C# 2005 express edition -ENU. I go through the trouble shootign page and it tells me my BITS Service isn't workign correctly so I go and set it to manual, try agian. nothing, then i try the last step to enable it's dependencies, and it doesn't seem to have any. Any ideas Reuomi, please check the logfiles in the %TEMP% folder. They will start with "dd_". You might be able to find a more precise error co ...Show All

  • SQL Server VB Express SQL Expert needed for Merge Replication support.

    I have done a couple of little projects in VB express and was pleased with the results. Now I have something bigger in mind and need to know if VB express version of SQL will support merge replication. If not will the full version support it Thanks Dave ...Show All

  • Visual Studio 2008 (Pre-release) .Net AJAX and WPF

    Does WPF support .Net AJAX implementation Please provide details. Did you check WPF/E initiative http://msdn2.microsoft.com/en-us/asp.net/bb187358.aspx "WPF/E” is the Microsoft solution for delivering rich, cross-platform, interactive experiences including animation, graphics, audio, and video for the Web and beyond. Utilizing a subset of XAML (eXtensible Application Markup Language)-based Windows Presentation Foundation technology, “WPF/E” will enable the creation of content and applications that run within multiple browsers and operating systems (Windows and Macintosh) using Web standards for programmability. Consistent with Web architecture, the XAML markup is programmable using JavaScript ...Show All

  • Visual Studio Express Editions Instant Messenger

    Im new to visual basic and have only had it for 3 days... I really enjoy the software and thing it is the best thing microsoft has made yet... I have been working with computers for 5 years now and know more that everyone in my neighborhood and most of my teachers (Im only 14 years old ). My point is though that while messing around i created My own website with my own internet explorer (website is working but my internet Explorer isn't compleatly done). Now i have decided that i would enjoy to create my own IM for my website but there is only one problem... i dont have any idea where i need to start and what i need to do to make this work... i really want to make my own IM For my website and would like some help... And another thing ...Show All

©2008 Software Development Network