Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: slowNsteady
  • Content: Threads
  • Order by date
  1. slowNsteady

    SaveFileDialog box VB.net

    Hi how to assign the current working directory to savefiledialog box. Say for example If i open a file Sample_Address.xls from path = C:\Temp_Folder\VB_Projects\Sample\Sample_Address.xls then if i hit SaveAs then it should open in the same folder i tried coding like below also...
  2. slowNsteady

    Highlighting item after we move up in listbox

    Hi friends I have a listbox in form2 and the items are populated to it from another form named form1. In form2 i have created a button named btnUP. When we click the btnUP then the highlighted selected item in the listbox moves one level up. this is working fine. But the problem is only the...
  3. slowNsteady

    Event handling for Dynamically created Controls

    Hi I have a problem in handling the events for dynamically created controls I am creating a combobox and a textbox dynamically when i click a Button1 for each combobox there is one corresponding textbox so the number of times i click Button1 i will get that many number of comboboxes and...
  4. slowNsteady

    Convert Code from C# to VB.net

    Hi Friends, Please Help me in converting this C# code to VB.net code private void CreateComponents(string[] questions) { for (int i=0;i<questions.Length;i++){ CheckBox chkBox = new CheckBox(); chkBox.Name = "chk"+i; chkBox.Text = questions[i]; chkBox.Click += new...
  5. slowNsteady

    date function in vb.net

    Hi, Is there any date function available in vb.net to display the dates as today , yesterday, lastweek, last month like Microsoft outlook when we arrange it by date. If there is no function available like that can anybody tell me how to do that. i searched through the net but no luck. Thanks...
  6. slowNsteady

    checkbox color not changing

    Hi In vb.net 2.0,i have created a checkbox programatically. now i am trying to change the color of it. It is not changing Here is the code: Dim chkDS1 As New CheckBox chkDS1.Location = New Point(200, 118) chkDS1.Text = "" chkDS1.CheckState = CheckState.Checked chkDS1.Visible = True...
  7. slowNsteady

    I find question mark is populated in the input array while debugging

    Hi iam trying to read a log file which has 2000 lines. Input array is my temp array. while debugging i can see the input array values are populated unitl input array(9,40) after that the array is populated full of "?" . I don know why it is happening Somebody help me ..... i am stucked here...
  8. slowNsteady

    Multiple Sendkeys in vb.net 2.0

    Hi I am a newbie to .net. I am using VB.net 2.0. I have to use multiple sendkeys in my project. if i use only one sendkeys.sendwait its working the problem is if i use more than one sendkeys.sendwait the one which worked previously is also not working. wat to do ? help me sri

Part and Inventory Search

Back
Top