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

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

HelpMePl0x

Member List

Joran Omark
MoniDD
JBacker
Devin
tackett
Sweeps78
Komandur.Kannan
GRK
deeps_
Annihil8
longint
xluna
Whoisit
bluexx
F.Costa
the_kid
Daniel_laksjdhfg
el-chema
enric vives
Will Merydith
Only Title

HelpMePl0x's Q&A profile

  • Visual Studio Express Editions form not response in loop

    hi, i'm newly started programing in visual basic. my application is running but in running time my form is not response. For Example <block_from_source> Dim procInfo As New ProcessStartInfo With procInfo .FileName = "xcopy" .Arguments = " c:\testfolder /s /h d:\backup " .RedirectStandardOutput = True .RedirectStandardInput = True .UseShellExecute = False .CreateNoWindow = True End With Dim proc As Process = Process.Start(procInfo) Dim str As String = proc.StandardOutput.ReadToEnd proc.WaitForExit() </block_from_source> if my testfolder size is big (200 - 300 mb.) then my application is running but not response. i'm check BackgroundWorker but don ...Show All

  • Software Development for Windows Vista Where should I store Global Application data on Vista?

    I have some files which should be accessible for all users for read and write. Where should put this type of files on Vista In XP I would put it into Program Files\[MyApp] folder, but in Vista you need to have Administrator rights to write into Program Files. I thought about putting files into All Users folder, but not all users can write there. You can't be serious Under XP Environment.SpecialFolder.CommonApplicationData is: C:\Documents and Settings\All Users\Application Data Under Vista it is: C:\ProgramData\ but this location requires admin rights in order to be writeable so it seems since our application cannot write to: C:\ProgramData\<Company Name>\<App Name>\ Th ...Show All

  • Visual Basic Passing Optional Arrays to a Sub

    In Visual Basic 2005, I am trying to create a sub in a class that takes an optional string(). However, I am unable to figure out how to set the default value. I have already tried: Public Sub getData(Optional ByVal postData() as String = {"", ""}) However, I get an expression required error at the {. Also, I tried the New String(), but then I get the error saying it must be a constant. What am I missing Thanks. Optional Pararmeters require a constant and as a constant cannot be declared as an array you can't do this. Why not use an overloaded function - Private Sub GeData( ByVal postData As String ()) ' my work End Sub Private Sub GeData() ...Show All

  • SQL Server AdventureWorks Database - cannot access Database Diagrams

    Hi, When I try to access the database diagrams in AdventureWorks, I get the following message: TITLE: Microsoft SQL Server Management Studio Express ------------------------------ Database diagram support objects cannot be installed because this database does not have a valid owner. To continue, first use the Files page of the Database Properties dialog box or the ALTER AUTHORIZATION statement to set the database owner to a valid login, then add the database diagram support objects. ------------------------------ BUTTONS: OK ------------------------------ Why is this All advice / help apprecuated. Thanks hi, after "upgrading" a database from MSDE or install ...Show All

  • Smart Device Development Scroll Form in Smartphone

    Hi guys, is other than setting the property AutoScroll to true I need to implement other thing in order to scroll the form that contains controls I have a label on the form, I see the scroll bar, but even that the label size is exceeds the form borders I can scroll the form.. thanks for any suggestion, Oren. Hmm, I appear to have a more difficult problem. I have forms that are spaced out with several labels. Imagine a form with a screen of label, then a textbox, another screen of label, a second text box and another screen of label. Unlikely I know but feasible - and yes I have one. With the autoscrolling stuff in NetCFv2 it jumps from CanFocus control to CanFocus control, i ...Show All

  • Visual C++ C standard applications in Visual Studio 2005

    Hello. Is it possible to develop Ansi C applications in Visual Studio .Net 2005 using standard libraries like <stdio.h>, <conio.h> etc. If yes, how Thanks'. Technically, you should also specify /Za to disable the ANSI C++ language extensions. And avoid all the CRT functions whose names start with an underscore... ...Show All

  • Smart Device Development Maximum class / method / application size ?

    I am having a problem with my Compact Framework application which is very hard to track down.Specs are WM 5.0, CF 1.2, VS 2003. The situation is this: I have a form class which uses the OpennetCF Signature control. It works fine up to a certain threshold point. After that point, I add another control to the form. It does not matter what type of control I add; it causes the same symptoms. Once this control is added, the class (or whatever) seems to be too big. There are no compile-time errors. However, when the code comes to use the Signature control in any way, I get a Null Reference Exception as if I never instantiated it. The strange thing is that when I remove the offending control by deleting it off the form and bring the application ...Show All

  • Community Chat Kyro KidSafe Browser (alpha)

    Hello all, I am making a "KidSafe" browser for kids. Please download my program and post any noticed bugs,etc.  It takes only minutes to set up.  I am 10 years old, so who can make a browser for kids better than a kid Progress:  Final will be started in January Thanks you everyone for your contributions  and encouragement.  *Has 3 tabs for browsing. *Has a "My Websites" button with up to ten of your programmed websites in it. Beta Features: *Has 3 tabs for browsing. *Has a "My Websites" button with up to ten of your programmed websites in it. *Talking Help guide *A new install program Updates in final version: *Button text replaced with graphics. *A game room with games, and fun KidSafe software (suc ...Show All

  • Windows Live Developer Forums Let's play Chess game

    Hi, I've made a bot for the robotinvaders contest that plays some games. One of them was Chess (Let's play chess version) but now that application is not available. Does anyone know if it will be available soon Maybe I can host it if the game creator doesn't want to host it anymore. I'd like that application to be available so people can play chess against my bot. Thanks L Hi! I am the author of "Let's play Chess" game. I have just moved my site to another server and in the process of moving, I lost all the files of "let's Play Chess". Let me check up if my h ard drive has copies of the game and if so, I shall upload them into my new site. Else please ex ...Show All

  • SQL Server Trigger to insert multiple records into related table

    I'm very new to triggers (and stored procedures), I've done a bit of searching and can't seem to find the right direction. Any help would be greatly appreciated. Here is my situation: Thanks in advance! I have 2 tables: Cat_Control (parent), Det_Control (child). They are related via an auto-incrementing ID (Cat_Control_ID) When the user enters a new record into the Cat_Control table, I would like to automatically fill in several default records into the Det_Control table. These default records will be pre-defined based on the Cat_Control.Name field from the record that was just added to the Cat_Control table. I'm sure this is way off base but I hope it will help to clarify what I'm looking to do: 1) For Each Cat_Control rec ...Show All

  • Visual Studio HELP - Mapping Form Data to Crystal Report

    C# - Windows Applications (VS 2005) - OLEDB  ---------------- Hi, I have a form details from a database. After I key in the fields and update the database, I want to print the same details using crystal report. Is there a way I can mapped the fields into crystal report without creating a new crystal report and do the printing Anyone can advise I don't understand your problem completely. 1. Are you have already open report for current data, and after you change the data you want just to refresh data in CR. This is possible. Just execute the loading method for CR in CR viewer and will load new data. 2. You don't have a CR but you don't want to create a report at all and you want to cre ...Show All

  • SharePoint Products and Technologies Top Navigation Bar: Odd Behavior

    I create a new site collection using the Collaboration Portal template. As a result my initial top navigation bar had the following links: <Site Name>, Document Center, News (with two sub nodes), Search, and Sites. Now I wished to have a tab that would drop down and allow me to access sub-sites using the top navigation bar (rather than having to go through the sites links). To accomplish this I create a feature which upon activation would create the required SPNavigationNode(s) and then add them to the navigation bar. I've had previous issues with this and therefore included some debugging statements in the code to let me see what was going on in the background. When activated the feature my new node (and sub nodes) were created s ...Show All

  • Visual Studio Express Editions downloading help, needed. -new user- cant understand, why it is not working??__--

    HELP i have been trying to download visual C++, from http://msdn.microsoft.com/vstudio/express/visualc/download/ i download the setup, it takes me through the agreement, then asks what i wish to download,i choose the first [full] option. it the goes to a downloading screen, in bracets it reads, [connection attempt 1/5] After it has used up all 5 of the connection attempts, it moves to the ending screen,with the not. telling me that it was unable to download, and i get an error report, i have coppied it. and place it below. EventType : visualstudio8setup P1 : 10860 P2 : 8.0.50727.42_rtm_x86_ixpP3 : gen P4 : inst P5 : f P6 : dlmgr_bitserror P7 : -2145844845P8 : 0 P9 : runtofinish()_failed to retrie ...Show All

  • Visual Studio Express Editions Automatically enter Text from one Text box to another as you type.

    I would like to setup a Text Box that pulls the Textbox.text from 2 separte text boxes and then displays them in this textbox. For Example... TextBox1.Text = "Jimmy" TextBox2.Text = "Taylor" TextBox3.Text = "Jimmy Taylor" But the kicker is I want it to add the "J" in TextBox3 as I type it in TextBox1 ect. I tried a number of places but I am not sure how to describe this and I am not coming up with very good examples. Thanks in advance for any help. Yes, add a new class. You might take the name I used FormEventController. Add a member of that class to your form which creates the dynamic form like so: Private m_fec As FormEventController When you create your dynamic ...Show All

  • Software Development for Windows Vista Extract values from persisted workflow without instanciate it

    Hi there I'm trying to extract the initial parameters of a persisted workflow for comparison purposes, without the need to instantiate him. I'll try to explain it... I have a workflow that describes the life cycle of a customer inside a business home. When the customer arrive, they are admitted in the reception where a few personal information is gathered. A workflow is created for every one that is admitted. They pass through 3 different steps and talk to 3 different end users of the application until the workflow is finished. For every step I want the end user to have a display list of customers in list for that step by order they arrived. Throught SQLTrackingService I manage to track in what activity the workfl ...Show All

©2008 Software Development Network