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

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

Jiajia

Member List

Utkarsh Shigihalli
kull
IS dude
sherry326
gifuran
Bruce Baker
exal
lezi
jkushiner
Lars Andreas Ek
destroy1369
djedziniak
Lalitk
jd_ie
ClemensT
MooseNSquirrelz
douner001
rhd75
enric vives
Kapalic
Only Title

Jiajia's Q&A profile

  • Visual Basic Write data in VB.NET to Access using SQL

    Okay, I have an Administrator page that is able to create new users. I have a simple adduserform that has a TabControl added in it with a tab for General Info and User Info. Those have quite a few texboxes for input and outside of the TabControl are 3 buttons that are Save, Clear, and Exit. What I want to do is have the Save write the data to my small database that I have for users. If you want to see an example of my screen you can see it here.... http://redbearcustoms.no-ip.info/VB/adduserform.html Yes, I was wondering if there was any way that I could post a picture of my screens without having to link to another site. ...Show All

  • .NET Development Problem in Master/Detail Update

    Hi Guys i am new to vb.net and i am using visual studio 2003. I have created a master detail relationship between two tables. My problem is i am not able to update the changes. I am pasting the code please help me. Imports System.Data Imports System.Data.SqlClient Imports System.Configuration Public Class AsnEdit Inherits System.Windows.Forms.Form Dim cn As New SqlConnection(ConfigurationSettings.AppSettings("constring")) 'OleDbConnection i Dim cmd As New SqlCommand("Select * from asnhdr_sql", cn) Dim da As New SqlDataAdapter(cmd) Dim ds As New DataSet Private Sub AsnEdit_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) ...Show All

  • Visual C# Run without building out of date porject

    I have specifically chosen the option of "Prompt to build On Run, when projects are out of date". This used to work. Sometime ago, suddenlly IDE started to always run without prompting to build the out of date project. Does anyone have any clue Thanks. I've created an issue regarding this on Microsoft Connect: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=242954 . Readers, if you feel this issue is important to you, make sure you voice is heard and vote for this issue. If you suffer from or notice this problem too, please validate the issue. ...Show All

  • Audio and Video Development Focused Buttons and State not working.

    Code sample below. My buttons are acting kinda screwy. I can activate them by clicking, but they exhibit the focus and active states only when I click. Focus is not happening when I mouse over. Also the buttons quickly get out of sync or something. I wonder if I am not dealing with state properly. < xml version="1.0" > <root xml:lang="en" xmlns="http://www.dvdforum.org/2005/ihd" xmlns:style="http://www.dvdforum.org/2005/ihd#style" xmlns:state="http://www.dvdforum.org/2005/ihd#state"> <head> <styling> <style id="BTNSTYLE" style:position="absolute" style:backgroundFrame="0" style:width="137px" style:height=" ...Show All

  • Visual Studio 2008 (Pre-release) WWF & WCF

    Hi, I am new to WWF & WWF My requirement is like 1) I have windows application where I input values. 2)using WCF the input value has to sent my workflow and I need to process the same in work flow Let say addition, I am receving 10 & 5 from Windows application and adding these values inside workflow. 3) Later the result vaule has to sent my windows application using WCF. I have done same using windows application(client) and a host service. The sample given by microsoft Expense Reporting is bit difficult for me Appreciate the solution in simplest way. If any one can provide sample code also welcome. Please get in touch with me ASP umeshnath@hotmail.com Thanks & Regards Umeshnath ...Show All

  • Visual Basic Compiling C code functions to call from VB

    Hi I have a chip I need to reconfigure via a VB app. The company provides a C code API to do this (i.e. their software generates *.c, *.h files for us to call). I don't know C, but I want to compile it as a dll file to reference from my VB project. The files are plain C. Which wizard settings should I use, so that I can compile and link to it to access their functions from my VB code I have tried to do this, but keep getting an error message saying it could not add it as a reference: ...make sure file is accessible, and that it is a valid COM component. Thanks Thanks for the reply - I looked up PInvoke and found information relating to DLLImportAttribute, which looks like it will do the tr ...Show All

  • Visual C# Finally Fixed.

    I am trying to make it so when a button is clicked the text on that button will change to something else using a method from a different class. I can't quite get it. This is what I have so far: using System; using System.Windows.Forms; public class Form1 : Form { public Button button1; // Windows Form Designer generated code here... } private void button1_Click(object sender, EventArgs e) { // I want the method to be called here } And here is the class that I want the method in: using System; using System.Windows.Forms; public class Change { public void ChangeText() { // How would I be able to modify the button and its properties } } Can someone please help me with this Thanks. I ...Show All

  • SQL Server Problem in Multiple Publication on Single Table

    Hello Everybody, If any one have solution then please help me. Thanks in Advance. I do the following steps: I have created two publications on my SQL SERVER for merge replication Publication A – which returns all rows from the Table1 Publication B – which returns all rows from the Table1 where the field MANAGER =’ABC’ I have two clients who have MSDE Client 1 is subscribed to Publication A and Client 2 is subscribed to Publication B All works fine till now and I am able to make transfers from the two clients and get all the changed data However, now If I change the filter rules for Publication B and set that it should return all rows from the Table1 where the field MANAGER = ‘DEF’ , SQL Server tells me ...Show All

  • Visual Studio Express Editions textboxes and numerical input

    Alright, I've asked the question before, and I had a satisfactory answer. However, a new problem has run into the coding I implemented: Private Sub Textbox_KeyPress( ByVal sender As Object , ByVal e As KeyPressEventArgs) Handles Textbox.KeyPress If Char .IsDigit(e.KeyChar) = False And Char .IsControl(e.KeyChar) = False And Char .IsPunctuation(e.KeyChar) = False Then e.Handled = True End If End Sub what I want the code to do is to allow the person to put in both numbers and a decimal point, ".", however, I need a way to check what the person has put in to make sure they have not put in multiple decimals, like "5.2.7". I have even tried using IsNu ...Show All

  • Windows Forms Change second form's selected tabPage in tabControl

    Hello, Any advice or suggestions are appreciated! I'm trying to change the selected tabPage in a tabControl in a second form depending on an option chosen in the main form. So far, I have this in the main form (and tabControlDetail is on the frmDetail form): frmDetail myForm = new frmDetail (); myForm.SelectNextControl( TabPage ); ... I know--not much. The tabControl.tabPage property doesn't appear in anything I've tried so far. I'd like to do something like: myForm.tabControlDetail.SelectedTabPage(1) where 1 (or n) is the selected tabPage. Thanks for any advice, Tess Thanks very much! I modified your suggestion slightly to: this .tabControlDetail.SelectTab(sTab);   and it works g ...Show All

  • Visual Basic How to get a Combo Box to feed from another Combo Box

    Hope someone can help me!! I have a form with two combo boxes. One displays different Areas(e.g. Area1, Area2, Area3) and the other one displays different Regions(e.g. Region1, Region2, Region3). What I want to do is to populate the Region Combo Box depending on the Area selected in the Area Combo Box. For Example if the user selects Area1 have the Region Combo Box filter/display on those Regions that belong to Area1. I relly appreciate any feedback. Thanks alot!!! Well thats fine, you can call the method from anywhere within your application/class. The method will get whatever text is selected in comboBox1 and pass that to the PopulateCities method for it to add to the specified com ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed C++

    So I understand Managed C# is the primo langauge for Game Studio Express but would it be possible, either when it comes out or eventually, to use Managed C++ with it too It really bothers me I'd have use C# over C++ for the Game Studio... Personally I'd rather write in VB and I suspect there are a lot of amateurs out there that would prefer it just because of the simpler syntax. ...Show All

  • Visual Studio 2008 (Pre-release) Cider Release Strategy

    Is Cider (and all the .Net 3.0 project support) going to be released as an addin to VS 2005 or is it only going to be released in the next version of VS (Orcas) Steve Many thanks! I hope the next final release of VS Orcas will not break compatibility with the final CTP for VS 2005. Eriawan ...Show All

  • SQL Server Custom Data Extension - Designer Extension Could Not Be Loaded

    Hi All, I've managed (finally) to get a Custom Data Extension to work in Reporting Services 2005. The next problem I have is that whenever I click on the "data" tab when creating a report (from Visual Studio 2005) an error appears: "The designer extension <ext name> could not be loaded. Check the configuration file RsReportDesigner.config". Is there some way of getting rid of this error message Such as creating a designer, if so does anyone know how (I don't need the designer to do anything, just not crash) I can still modify the data for the report etc its just annoying that's all. Cheers, Dan. Make sure that you have your data extension registered in the RSReportDesi ...Show All

  • Visual C# Post to the web?

    What would be the best way to go about posting to the web For an example, Commenting someone on Myspace or PMing someone on a forum Any ideas Sorry about the short explanation, Let me try again with a bit more detail. I would like to be able to post topics on forums etc, without even visiting the forum. I believe this is possible by using webresponse part of Webclient Class. So instead of me coming here to write this message in the box, just load up my program and type what I would like and then post it to the web. You understand now ...Show All

©2008 Software Development Network